@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-webkit-input-placeholder {
  color: #777;
}

:-ms-input-placeholder {
  color: #777;
}

::-ms-input-placeholder {
  color: #777;
}

::placeholder {
  color: #777;
}

::-moz-selection {
  background-color: #F0C066;
  color: #fff;
}

::selection {
  background-color: #F0C066;
  color: #fff;
}

html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  min-width: 360px;
  position: relative;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  color: #222;
}

button{
outline: none;
decoration: none;
border: none;
}
button:active{
outline: none;
decoration: none;
border: none;
}

input, textarea {
  border: #eaeaea 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input:focus:required:invalid, textarea:focus:required:invalid {
  -webkit-box-shadow: inset 0 -3px 0px 0 #FF7979;
          box-shadow: inset 0 -3px 0px 0 #FF7979;
}

input:required:valid, textarea:required:valid {
  -webkit-box-shadow: inset 0 -3px 0px 0 #65c178;
          box-shadow: inset 0 -3px 0px 0 #65c178;
}

img,
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

img.img-width,
.img-responsive.img-width {
  width: 100%;
}

.ibg {
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

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

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

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

.text-grey {
  color: #777;
}

.relative {
  position: relative;
}

.uppercase {
  text-transform: uppercase;
}

b, strong {
  font-weight: 500;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
          clip-path: none;
  background-color: #eee;
  color: #444;
  display: block;
  font-size: 1rem;
  left: 5px;
  line-height: normal;
  padding: 15px 20px;
  text-decoration: none;
  top: 5px;
  z-index: 100000;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

a, button, input[type="submit"] {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #004680;
}

a:hover {
  color: #004680;
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

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

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

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

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

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

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

.h1-title {
  font-size: 2.5rem;
}

.h2-title {
  font-size: 1.5rem;
}

.h3-title {
  font-size: 1rem;
}

p {
  margin-top: 0;
}

.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.home .main-wrapper {
  background-color: transparent;
}

.main-wrapper {
  overflow-x: hidden;
  background-color: #EAF3FA;
}

.main-wrapper.page-bg {
  background-color: #EAF3FA;
}

.loader {
  background: #fff url("../img/icons/loader.svg") no-repeat center/80px 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 9999;
}

.to-top {
  border: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 0;
  cursor: pointer;
  z-index: 50;
  opacity: .7;
  color: #222;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
  background: #F0C066 url(../img/icons/icon-angle-up.png) no-repeat center/25px 25px;
}

.to-top.active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.to-top:hover {
  opacity: 1;
}

.page-header {
  position: relative;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  background-color: #fff;
  z-index: 100;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30%;
  background-color: #EAF3FA;
  z-index: -1;
}

.page-header.fixed {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header.fixed::before {
  display: none;
}

.page-header.fixed .header-inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-header.fixed .header-left {
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-header.fixed .header-logo {
  max-width: 160px;
}

.page-header.fixed .header-bottom {
  display: none;
}

.page-header.fixed .header-top {
  background-color: transparent;
}

.page-header.fixed .main-menu > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
}

.page-header.fixed.show {
  top: 0;
}

.page-header.fixed .control-panel {
  -webkit-border-radius: 0;
          border-radius: 0;
}

.header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header-left {
  padding-right: 30px;
  padding-top: 30px;
  width: 280px;
}

.header-right {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header-logo {
  max-width: 250px;
  display: block;
}

.header-logo-mobile {
  width: 200px;
  margin-left: 5px;
  display: none;
}

.header-logo-mobile img {
  max-width: 130px;
}

.header-top {
  padding: 8px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EAF3FA;
  -webkit-border-bottom-left-radius: 20px;
          border-bottom-left-radius: 20px;
  position: relative;
}

.header-top > .switch_blind {
  margin-left: auto;
}

.header-socials-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.socials {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.socials.alter li + li {
  margin-left: 10px;
}

.socials li + li {
  margin-left: 20px;
}

.socials a {
  display: block;
  width: 23px;
  height: 23px;
  line-height: 23px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: 23px 23px;
          background-size: 23px 23px;
}

.socials a:hover {
  opacity: 0.8;
}

.social-fb a {
  background-image: url(../img/icons/socials/icon-fb.svg);
}

.social-yt a {
  background-image: url(../img/icons/socials/icon-yt.svg);
}

.social-inst a {
  background-image: url(../img/icons/socials/icon-inst.svg);
}

.social-tg a {
  background-image: url(../img/icons/socials/icon-tg.svg);
}

.social-email a {
  background-image: url(../img/icons/socials/icon-email.svg);
}

.header-email {
  margin-left: 25px;
}

.header-email a {
  font-size: 0.875rem;
  color: #222;
}

.header-email a:hover {
  text-decoration: underline;
}

.alter-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.alter-options-toggle {
  display: block;
  width: 25px;
  height: 25px;
}

.alter-options-buttons {
  display: none;
  margin-left: 4px;
}

.alter-options-button {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 6px;
  border: 1px solid #222;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 16px;
  color: #000;
  text-align: center;
  font-weight: 500;
}

.alter-options-button:hover {
  background-color: #222;
  color: #fff;
}

.control-panel {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 0 0 20px 20px;
          border-radius: 0 0 20px 20px;
}

.control-panel.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.switch_blind a {
  display: block;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background-color: #fff;
}

.special-settings-inner {
  padding: 5px 15px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.special-settings-inner .switch_blind {
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.special-settings-inner .switch_blind a {
  background: #fafafa;
  background: -webkit-linear-gradient(#fafafa 0%, #cbcbcb 100%);
  background: -o-linear-gradient(#fafafa 0%, #cbcbcb 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#cbcbcb));
  background: linear-gradient(#fafafa 0%, #cbcbcb 100%);
  font-size: 30px;
  color: #000;
  text-align: center;
  line-height: 30px;
}

.special-settings-inner .switch_blind a:hover, .special-settings-inner .switch_blind a:focus {
  color: #222;
}

.special-settings-inner .switch_blind a + a {
  margin-left: 10px;
}

.special-settings-inner .control {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #fafafa;
  background: -webkit-linear-gradient(#fafafa 0%, #cbcbcb 100%);
  background: -o-linear-gradient(#fafafa 0%, #cbcbcb 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#cbcbcb));
  background: linear-gradient(#fafafa 0%, #cbcbcb 100%);
  color: #000;
  text-align: center;
  display: block;
  line-height: 30px;
}

.special-settings-inner .control + .control {
  margin-left: 10px;
}

.font_size_control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.font_size_control .control {
  font-weight: 700;
}

.font_size_control .control.active {
  background: #F0C066;
}

.font_size_control .small-size {
  font-size: 16px;
}

.font_size_control .lower-size {
  font-size: 20px;
}

.font_size_control .medium-size {
  font-size: 20px;
}

.font_size_control .upper-size {
  font-size: 20px;
}

.font_size_control .big-size {
  font-size: 24px;
}

.font_family_control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 25px;
}

.font_family_control .control {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.font_family_control .control.active {
  background: #F0C066;
}

.font_family_control .font-family-arial {
  font-family: 'Roboto', sans-serif;
}

.font_family_control .font-family-tnr {
  font-family: "Times New Roman", serif;
}

.color_control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 25px;
}

.color_control .control {
  font-size: 20px;
  font-weight: 700;
}

.color_control .black-on-white {
  background: #fafafa;
  background: -webkit-linear-gradient(#fafafa 0%, #cbcbcb 100%);
  background: -o-linear-gradient(#fafafa 0%, #cbcbcb 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#cbcbcb));
  background: linear-gradient(#fafafa 0%, #cbcbcb 100%);
  color: #000;
}

.color_control .yellow-on-blue {
  background: #3563b1;
  background: -webkit-linear-gradient(#3563b1 0%, #012b7f 100%);
  background: -o-linear-gradient(#3563b1 0%, #012b7f 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#3563b1), to(#012b7f));
  background: linear-gradient(#3563b1 0%, #012b7f 100%);
  color: #F0C066;
}

.color_control .white-on-black {
  background: #353535;
  background: -webkit-linear-gradient(#353535 0%, #060606 100%);
  background: -o-linear-gradient(#353535 0%, #060606 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#353535), to(#060606));
  background: linear-gradient(#353535 0%, #060606 100%);
  color: #fff;
}

.language-switcher {
  margin-left: 25px;
  position: relative;
  z-index: 1;
}

.language-switcher a {
  color: #222;
  font-size: 14px;
  text-transform: uppercase;
}

.language-switcher a.lang-current {
  font-weight: 700;
  text-decoration: underline;
}

.language-switcher a:hover {
  text-decoration: underline;
}

.header-bottom {
  padding: 20px 20px 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  -webkit-border-top-right-radius: 35px 30px;
          border-top-right-radius: 35px 30px;
  position: relative;
}

.header-bottom .btn {
  margin-left: 30px;
}

.input-text {
  width: 100%;
  border: 1px solid #eaeaea;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 9px 20px;
  font-size: 0.875rem;
  color: #222;
}

.input-text::-webkit-input-placeholder {
  color: #777;
  font-size: 0.875rem;
}

.input-text:-ms-input-placeholder {
  color: #777;
  font-size: 0.875rem;
}

.input-text::-ms-input-placeholder {
  color: #777;
  font-size: 0.875rem;
}

.input-text::placeholder {
  color: #777;
  font-size: 0.875rem;
}

.header-search {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

.header-search .input-text {
  /* padding-left: 50px; */
  border: 1px solid #eee;
  color: #777;
}

.header-search .input-text::-webkit-input-placeholder {
  color: #ccc;
}

.header-search .input-text:-ms-input-placeholder {
  color: #ccc;
}

.header-search .input-text::-ms-input-placeholder {
  color: #ccc;
}

.header-search .input-text::placeholder {
  color: #ccc;
}

.hb-search-submit {
  background-color: transparent;
  border: none;
  font-size: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 10px;
  background: url(../img/icons/icon-search.svg) no-repeat center/16px 16px;
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-block;
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 10px 20px;
  background-color: #ccc;
  color: #222;
  text-align: center;
  font-size: 0.875rem;
}

.btn:hover {
  color: #222;
  background-color: #d9d9d9;
  text-decoration: none;
}

.btn:active, .btn:focus {
  color: #222;
  background-color: #bfbfbf;
  text-decoration: none;
}

.btn-blue {
  background-color: #004680;
  color: #fff;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
}

.btn-blue:hover {
  color: #fff;
  background-color: #004F90;
}

.btn-blue:active, .btn-blue:focus {
  color: #fff;
  background-color: #003C6F;
}

.btn-accent {
  background-color: #F0C066;
  color: #6A4F1C;
  font-weight: 500;
  -webkit-box-shadow: 0px 5px 30px rgba(240, 192, 102, 0.3);
          box-shadow: 0px 5px 30px rgba(240, 192, 102, 0.3);
}

.btn-accent:hover {
  color: #6A4F1C;
  background-color: #FAD389;
}

.btn-accent:active, .btn-accent:focus {
  color: #6A4F1C;
  background-color: #F0C066;
}

.btn-module {
  min-width: 160px;
  padding: 7px 20px;
}

.btn-admin {
  font-size: 1rem;
}

.btn-admin span {
  display: block;
  font-size: 0.75rem;
}

.btn-wide {
  width: 100%;
}

.btn-animated {
  position: relative;
  overflow: hidden;
}

.btn-animated::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -5px;
  height: 120%;
  width: 15px;
  -webkit-transform: skew(-15deg, 0);
      -ms-transform: skew(-15deg, 0);
          transform: skew(-15deg, 0);
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-animation: blink 2.5s linear infinite;
          animation: blink 2.5s linear infinite;
}

@-webkit-keyframes blink {
  0% {
    left: -15%;
  }
  30% {
    left: -15%;
  }
  70% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}

@keyframes blink {
  0% {
    left: -15%;
  }
  30% {
    left: -15%;
  }
  70% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}

.header-menu-wrap {
  background-color: #004680;
  position: relative;
  z-index: 100;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  border: none;
  color: #000;
  width: 36px;
  height: 44px;
  padding: 0;
  font-size: 30px;
  background-color: transparent;
}

.close-menu-btn {
  display: none;
  cursor: pointer;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  padding: 0;
  font-size: 28px;
  background-color: transparent;
  top: 10px;
  right: 10px;
  position: absolute;
}

.main-nav {
  background-color: #004680;
}

.main-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.main-menu > li {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

.main-menu > li.current-menu-item > a::before, .main-menu > li.current-menu-parent > a::before {
  width: 100%;
}

.main-menu > li:hover > a {
  text-decoration: none;
}

.main-menu > li:hover > a::before {
  width: 100%;
}

.main-menu > li > a {
  display: block;
  padding: 18px 0;
  text-align: center;
  color: #fff;
  font-weight: 500;
  background-color: #004680;
  border-left: 1px solid #005195;
  border-right: 1px solid #003E72;
  position: relative;
}

.main-menu > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  height: 5px;
  width: 0;
  background-color: #F0C066;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main-menu .has-dropdown {
  position: relative;
}

.main-menu .has-dropdown a span {
  padding-right: 15px;
  position: relative;
}

.main-menu .has-dropdown a span::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.main-menu .has-dropdown:hover .submenu, .main-menu .has-dropdown:focus .submenu, .main-menu .has-dropdown:focus-within .submenu {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.submenu-toggle {
  position: absolute;
}

.submenu {
  margin: 0;
  padding: 0;
  width: 543px;
  list-style-type: none;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-border-radius: 0 0 5px 5px;
          border-radius: 0 0 5px 5px;
  position: absolute;
  min-width: 260px;
  top: 100%;
  left: 0;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  overflow: hidden;
}

.submenu a {
  display: block;
  padding: 11px 16px;
  color: #222;
  font-size: 0.875rem;
  background-color: #fff;
}

.submenu a:hover {
  background-color: #004680;
  text-decoration: none;
  color: #fff;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}

.section-news {
  padding: 50px 0 100px;
  background-color: #EAF3FA;
  position: relative;
  z-index: 0;
  left: 0;
  width: 100%;
}

.section-news::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 600px;
  background: url(../img/decor/home/news-balls.svg) no-repeat right -50px;
  -webkit-background-size: contain;
          background-size: contain;
  z-index: -1;
}

.section-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-berween;
  -webkit-justify-content: space-berween;
      -ms-flex-pack: space-berween;
          justify-content: space-berween;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  max-width: 60%;
  position: relative;
  padding-bottom: 10px;
}

.section-title.full-width {
  max-width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 65px;
  background-color: #F0C066;
}

.section-title.has-icon::after {
  display: none;
}

.section-title-link {
  text-align: center;
  display: inline-block;
  padding: 7px 20px;
  margin-left: auto;
  background-color: #fff;
  color: #004680;
  border: 1px solid #004680;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 0.5em;
}

.section-title-link:hover {
  color: #fff;
  background-color: #004680;
}

.slick-next, .slick-prev {
  z-index: 1;
}

.slick-next::before, .slick-prev::before {
  color: #004680;
}

.slick-dotted.slick-slider {
  margin-bottom: 40px;
}

.slick-dots {
  bottom: -35px;
}

.slick-dots li {
  margin-left: 2px;
  margin-right: 2px;
}

.slick-dots li button::before {
  content: "";
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #004680;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  top: 5px;
  left: 5px;
}

.slick-dots li.slick-active button::before {
  opacity: 1;
  background-color: #004680;
  border: 1px solid #004680;
}

.news-slider .slick-slide {
  margin: 0 15px;
}

.news-slider .slick-list {
  margin: 0 -15px;
}

.news-item {
  display: block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.news-item:hover .news-title {
  color: #004680;
}

.news-item .img-wrapper {
  overflow: hidden;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding-bottom: 57%;
  margin-bottom: 15px;
}

.news-item .img-wrapper img {
  width: 100%;
}

.news-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 5px;
}

.news-info-item {
  position: relative;
  font-size: 0.75rem;
  color: #777;
  padding-left: 25px;
  padding-right: 20px;
  margin-bottom: 5px;
}

.news-info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
}

.news-info-date::before {
  background: transparent url("../img/icons/icon-clock.svg") center/15px 15px no-repeat;
}

.news-info-views::before {
  background: transparent url("../img/icons/icon-eye.svg") center/15px 15px no-repeat;
}

.news-info-files::before {
  background: transparent url("../img/icons/icon-archive.svg") center/17px 15px no-repeat;
}

.news-info-download::before {
  background: transparent url("../img/icons/icon-download.svg") center/17px 15px no-repeat;
}

.news-info-author::before {
  background: transparent url("../img/icons/icon-user.svg") center/15px 15px no-repeat;
}

.news-title {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  font-size: 1rem;
}

.section-soon {
  background: url(../img/decor/home/soon-bg.svg) no-repeat center top/cover;
  padding: 70px 0 20px;
  position: relative;
  margin-top: -50px;
}

.section-soon::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fafafa;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.section-soon .news-item .img-wrapper {
  padding-bottom: 57%;
}

.programs-info {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.programs-info .news-info-views {
  margin-left: auto;
}

.programs-info-date {
  min-width: 180px;
  padding: 4px 7px 4px 20px;
  color: #fff;
  background-color: #004680;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  font-weight: 500;
  -webkit-transform: skew(-25deg, 0);
      -ms-transform: skew(-25deg, 0);
          transform: skew(-25deg, 0);
  text-align: center;
  font-size: 1rem;
  margin-bottom: 5px;
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

.programs-info-date.bage-accent {
  background-color: #F0C066;
}

.programs-info-date span {
  display: inline-block;
  -webkit-transform: skew(25deg, 0);
      -ms-transform: skew(25deg, 0);
          transform: skew(25deg, 0);
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

.section-study {
  position: relative;
}

.section-study::before {
  content: "";
  position: absolute;
  left: 0;
  top: -130px;
  width: 120px;
  height: 325px;
  background: transparent url(../img/decor/home/study-bg-left.png) center/cover no-repeat;
  z-index: 0;
}

.section-study::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background-image: url(../img/decor/home/white-dots.png);
  z-index: -1;
}

.section-study-title {
  font-size: 2.1rem;
  margin-bottom: 30px;
}

.marker {
  display: inline-block;
  padding: 3px 15px;
  margin-left: 5px;
  margin-right: 5px;
  color: #222;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-transform: skew(-25deg, 0);
      -ms-transform: skew(-25deg, 0);
          transform: skew(-25deg, 0);
  background-color: #F0C066;
  line-height: 1;
}

.marker.blue {
  color: #fff;
  background-color: #004680;
}

.marker-inner {
  display: inline-block;
  -webkit-transform: skew(25deg, 0);
      -ms-transform: skew(25deg, 0);
          transform: skew(25deg, 0);
}

.section-study-text {
  color: #777;
  margin-bottom: 35px;
}

.btn-study {
  width: 330px;
  padding: 18px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn-study::after {
  content: "";
  width: 67px;
  height: 60px;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  background: url(../img/icons/icon-study-hat.png) no-repeat center/cover;
}

.section-study-gallery {
  position: relative;
  height: 500px;
}

.section-study-gallery .img-wrapper {
  overflow: hidden;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  position: absolute;
}

.study-img-1 {
  top: 23%;
  right: 13%;
  width: 250px;
  height: 200px;
  z-index: 1;
}

.study-img-2 {
  top: 50%;
  right: 0;
  width: 150px;
  height: 120px;
  z-index: 2;
}

.study-img-3 {
  top: 55%;
  left: 22%;
  width: 240px;
  height: 155px;
  z-index: 3;
}

.study-img-4 {
  top: 35%;
  left: 0;
  width: 180px;
  height: 170px;
  z-index: 4;
}

.study-img-5 {
  top: 12%;
  left: 27%;
  width: 150px;
  height: 140px;
  z-index: 5;
}

.section-blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  position: relative;
}

.section-blog::before {
  content: "";
  position: absolute;
  left: 15%;
  top: -100px;
  width: 950px;
  height: 275px;
  background: transparent url(../img/decor/home/blog-bg-top.png) center/cover no-repeat;
  z-index: -2;
}

.section-blog::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: -100px;
  width: 950px;
  height: 275px;
  background: transparent url(../img/decor/home/blog-bg-bottom.png) center/cover no-repeat;
  z-index: -1;
}

.blog-section-header {
  margin-top: -20px;
  padding: 0 10% 5px 10%;
  position: relative;
}

.blog-section-header .section-title-link {
  background-color: #004680;
  border-color: #fff;
  color: #fff;
}

.blog-section-header .section-title-link:hover {
  background-color: #fff;
  color: #004680;
}

.section-blog-left {
  width: 35%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-slider-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #004680;
}

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

.blog-slider-wrapper.slick-dotted.slick-slider .slick-dots {
  bottom: 25px;
}

.blog-slider-wrapper.slick-dotted.slick-slider .slick-dots li button::before {
  border: 1px solid #fff;
}

.blog-slider-wrapper.slick-dotted.slick-slider .slick-dots li.slick-active button::before {
  background-color: #fff;
  border: 1px solid #fff;
}

.blog-slide-main {
  height: 100%;
}

.blog-slide-main-item {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.blog-slide-main-item .img-wrapper {
  height: 100%;
  position: relative;
}

.blog-slide-main-item .blog-slide-content {
  top: 0;
  background-color: rgba(0, 70, 128, 0.5);
}

.blog-slide-main-item .blog-slide-content .blog-slide-title {
  margin-bottom: 20px;
}

.blog-slide {
  height: 315px;
}

.blog-slide-item {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.blog-slide-item .img-wrapper {
  height: 100%;
  position: relative;
}

.blog-slide-item:hover .blog-slide-content, .blog-slide-item:focus .blog-slide-content {
  top: 0;
  background-color: rgba(0, 70, 128, 0.5);
}

.blog-slide-item:hover .blog-slide-title, .blog-slide-item:focus .blog-slide-title {
  margin-bottom: 20px;
}

.blog-slide-content {
  padding: 20px 20px;
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  color: #fff;
  background-color: rgba(0, 70, 128, 0.2);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-slide-content.focusable {
  top: 0;
  background-color: rgba(0, 70, 128, 0.5);
}

.blog-slide-content.focusable .blog-slide-title {
  margin-bottom: 20px;
}

.blog-slide-content .btn {
  margin-top: 30px;
}

.blog-slide-title {
  font-size: 1.875rem;
  color: #fff;
  text-align: center;
  margin-bottom: auto;
}

.blog-slide-excerpt {
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
}

.section-blog-right {
  -webkit-border-top-left-radius: 4px;
          border-top-left-radius: 4px;
  overflow: hidden;
  width: 65%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background-color: #004680;
}

.section-blog-right .blog-slide {
  width: 33.333%;
}

.section-library {
  padding-top: 50px;
  position: relative;
  margin-bottom: 30px;
}

.section-library::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/decor/home/white-dots.png);
  z-index: -2;
}

.library-name-decor {
  font-weight: 700;
  font-size: 200px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  color: #f5f5f5;
  letter-spacing: 0.1em;
  position: absolute;
  z-index: -1;
  left: -230px;
  top: 145px;
}

.library-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.library-slider .slick-slide {
  margin: 0 15px;
}

.library-slider .slick-list {
  margin: 0 -15px;
}

.library-slide {
  width: 14.5%;
}

.library-slide-item {
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.library-slide-item:hover .library-slide-title {
  color: #004680;
}

.library-slide-item .img-wrapper {
  padding-bottom: 125%;
  overflow: hidden;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 20px;
}

.library-slide-item .img-wrapper img {
  width: 100%;
}

.library-slide-title {
  font-weight: 400;
  color: #000;
  position: relative;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  font-size: 1rem;
  /* max-height: 100px;
  overflow: hidden; */
}

.library-slide-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  /* background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(#fff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2), #fff 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.2), #fff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), #fff 100%); */
}

.section-testimonials {
  padding: 30px 0 20px;
}

.testimonial-slider .slick-slide {
  margin: 0 15px;
  overflow: hidden;
}

.testimonial-slider .slick-list {
  margin: 0 -15px;
}

.testiomonial-slide {
  min-height: 300px;
  background-color: #EAF3FA;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 30px;
  position: relative;
}

.testiomonial-slide::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 24px;
  height: 22px;
  background: url(../img/icons/icon-quotes.svg) no-repeat center/cover;
}

.testimonial-slide-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 20px;
}

.testimonial-slide-header::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 90%;
  bottom: 0;
  left: 5%;
  background-color: #F5F5F5;
}

.testimonial-user {
  width: 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-user-avatar {
          -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
          flex-shrink: 0;
          width: 56px;
          height: 56px;
          -webkit-border-radius: 50%;
          border-radius: 50%;
          overflow: hidden;
          margin-right: 15px;
          -moz-border-radius: 50%;
          -ms-border-radius: 50%;
          -o-border-radius: 50%;
}

.testimonial-user-data {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.testimonial-user-name {
  font-weight: 500;
  font-size: 1rem;
}

.testimonial-user-position {
  font-size: 0.75rem;
  color: #777;
}

.testimonial-socials {
  width: 40%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.testimonial-socials li {
  margin-bottom: 10px;
}

.testimonial-socials li + li {
  margin-left: 15px;
}

.testimonial-text {
  padding-top: 20px;
  margin-bottom: 30px;
  color: #777;
  font-size: 0.875rem;
  word-break: break-word;
}

.section-partners {
  padding: 30px 0;
}

.partners-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.partners {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin-bottom: 15px;
}

.partners-title-wrapper {
  width: 20%;
  margin-bottom: 20px;
}

.partner-item {
  display: block;
  width: 28%;
  min-width: 160px;
  min-height: 145px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: 1px solid #eee;
  background-color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partner-item .img-wrapper {
  max-width: 90%;
  text-align: center;
  overflow: hidden;
}

.partner-item img {
  width: 100%;
}

.trenings {
  padding: 15px 0;
  background-color: #fbfbfb;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.trening-item {
  padding: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-right: 1px solid #eaeaea;
}

.trening-item:last-child {
  border: none;
}

.trening-item .img-wrapper {
  width: 60px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.trening-item .img-wrapper img {
  width: 100%;
}

.trening-item .content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 15px;
}

.trening-item .content .level {
  font-size: 0.875rem;
  color: #777;
  font-weight: 400;
  margin-bottom: 0;
}

.trening-item .content a {
  font-size: 1rem;
  font-weight: 700;
  color: #004680;
  text-decoration: underline;
}

.trening-item .content a:hover {
  text-decoration: none;
}

.footer-top {
  background: #eaf3fa url(../img/decor/home/footer-bg.png) no-repeat top center/cover;
  padding-top: 40px;
  position: relative;
}

.footer-top::before {
  content: "";
  position: absolute;
  top: 92px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #003C6D;
}

.home .footer-top {
  background: transparent url(../img/decor/home/footer-bg.png) no-repeat top center/cover;
}

.page:not(.home) .footer-top {
  background: #eaf3fa url(../img/decor/home/footer-bg.png) no-repeat top center/cover;
}

.archive .footer-top,
.single-volunteers .footer-top,
.blog .footer-top {
  background: #004680;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 350px;
}

.footer-menu > li + li {
  margin-left: 20px;
}

.footer-menu > li {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer-menu > li > a {
  display: block;
  padding: 10px 0px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}

.footer-menu > li > a:hover {
  text-decoration: underline;
}

.footer-menu .has-submenu {
  width: 16%;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.footer-menu .has-submenu.no-click {
  cursor: default;
}

.footer-menu .has-submenu.no-click > a {
  cursor: default;
}

.footer-menu .has-submenu.no-click > a:hover {
  text-decoration: none;
}

.footer-submenu {
  margin: 0;
  padding: 0 0 20px 0;
  list-style-type: none;
}

.footer-submenu > li > a {
  display: block;
  font-size: 0.75rem;
  color: #f5f5f5;
  padding: 5px 0;
}

.footer-submenu > li > a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-subscribe {
  width: 31%;
  height: 85%;
  padding: 30px;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer-subscribe h3 {
  margin-bottom: 15px;
}

.footer-subscribe p {
  font-size: 0.75rem;
  margin-bottom: 15px;
}

.footer-subscribe .email-wrapper,
.footer-subscribe .es-field-wrap {
  position: relative;
  margin-bottom: 20px;
}

.footer-subscribe .email-wrapper > label,
.footer-subscribe .es-field-wrap > label {
  width: 100%;
  margin-bottom: 0;
}

.footer-subscribe .email-wrapper::before,
.footer-subscribe .es-field-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -11px;
  left: 15px;
  width: 22px;
  height: 22px;
  background: url(../img/icons/icon-envelope.svg) no-repeat center/cover;
}

.footer-subscribe .email-wrapper input,
.footer-subscribe .es-field-wrap input {
  width: 100%;
  padding: 9px 15px 9px 50px;
  border: 1px solid #eaeaea;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 0.875rem;
}

.footer-subscribe .subscribe-submit {
  width: 100%;
  cursor: pointer;
}

.footer-subscribe .es_submit_button {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 10px 20px;
  background-color: #F0C066;
  color: #6A4F1C;
  font-weight: 500;
  -webkit-box-shadow: 0px 5px 30px rgba(240, 192, 102, 0.3);
          box-shadow: 0px 5px 30px rgba(240, 192, 102, 0.3);
  text-align: center;
  font-size: 0.875rem;
}

.footer-subscribe .es_submit_button:hover {
  color: #6A4F1C;
  background-color: #FAD389;
  text-decoration: none;
}

.footer-subscribe .es_submit_button:active, .footer-subscribe .es_submit_button:focus {
  color: #6A4F1C;
  background-color: #F0C066;
  text-decoration: none;
}

.footer-bottom {
  padding: 12px 0;
}

.footer-bottom-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}

.footer-copy {
  width: 40%;
  font-weight: 500;
  color: #333;
  padding: 0 15px;
  font-size: 0.875rem;
}

.footer-copy p {
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.footer-logo {
  width: 20%;
  text-align: center;
  padding: 0 15px;
}

.footer-logo a {
  display: inline-block;
  max-width: 170px;
}

.footer-logo a img {
  max-width: 170px;
}

.footer-socials {
  padding: 0 15px;
  width: 40%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer-socials li + li {
  margin-left: 0;
}

.footer-socials li {
  margin-right: 40px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-background-size: 30px 30px;
          background-size: 30px 30px;
}

.page-title-wrapper {
  padding: 30px;
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.page-title-wrapper.has-sorting .page-title {
  max-width: 50%;
}

.page-title-wrapper.has-search .page-title {
  max-width: 50%;
}

.page-title-wrapper.has-search .kama_breadcrumbs {
  max-width: 50%;
}

.kama_breadcrumbs {
  margin-bottom: 15px;
  font-size: 0.75rem;
}

.kama_breadcrumbs span {
  color: #004680;
}

.kama_breadcrumbs span a {
  color: #004680;
  font-weight: 400;
}

.kama_breadcrumbs span a:hover {
  color: #004680;
  text-decoration: underline;
}

.page-title {
  margin-bottom: 0;
}

.has-icon {
  padding-left: 50px;
  position: relative;
}

.has-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
}

.has-icon.about-program::before {
  background-image: url(../img/icons/headings/about-program.svg);
}

.has-icon.administration::before {
  background-image: url(../img/icons/headings/administration.svg);
}

.has-icon.administrator::before {
  background-image: url(../img/icons/headings/administrator.svg);
}

.has-icon.annual-reports::before {
  background-image: url(../img/icons/headings/annual-reports.svg);
}

.has-icon.best-practices::before {
  background-image: url(../img/icons/headings/best-practices.svg);
}

.has-icon.blog::before {
  background-image: url(../img/icons/headings/blog.svg);
}

.has-icon.bloggers::before {
  background-image: url(../img/icons/headings/bloggers.svg);
}

.has-icon.exchange-program::before {
  background-image: url(../img/icons/headings/exchange-program.svg);
}

.has-icon.find-volunteer::before {
  background-image: url(../img/icons/headings/find-volunteer.svg);
}

.has-icon.forum::before {
  background-image: url(../img/icons/headings/forum.svg);
}

.has-icon.library::before {
  background-image: url(../img/icons/headings/library.svg);
}

.has-icon.library-new::before {
  background-image: url(../img/icons/headings/library-new.svg);
}

.has-icon.member::before {
  background-image: url(../img/icons/headings/member.svg);
}

.has-icon.news::before {
  background-image: url(../img/icons/headings/news.svg);
}

.has-icon.news-policy::before {
  background-image: url(../img/icons/headings/news-policy.svg);
}

.has-icon.program-events::before {
  background-image: url(../img/icons/headings/program-events.svg);
}

.has-icon.testimonials::before {
  background-image: url(../img/icons/headings/testimonials.svg);
}

.has-icon.time::before {
  background-image: url(../img/icons/headings/time.svg);
}

.has-icon.trainers::before {
  background-image: url(../img/icons/headings/trainers.svg);
}

.has-icon.trainings::before {
  background-image: url(../img/icons/headings/trainings.svg);
}

.has-icon.training-schedule::before {
  background-image: url(../img/icons/headings/training-schedule.svg);
}

.has-icon.upcoming-events::before {
  background-image: url(../img/icons/headings/upcoming-events.svg);
}

.has-icon.volunteers::before {
  background-image: url(../img/icons/headings/volunteers.svg);
}

/* иконка для виджета ближайшие ивенты */
.widget_upcoming_events .widget-title {
  padding-left: 25px;
  position: relative;
}

.widget_upcoming_events .widget-title::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 26px;
  height: 26px;
  background: url(../img/icons/headings/program-events.svg) no-repeat center/cover;
}

/* иконка для виджета Новинки в библиотеке */
.widget_library_news .widget-title {
  padding-left: 25px;
  position: relative;
}

.widget_library_news .widget-title::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 26px;
  height: 26px;
  background: url(../img/icons/headings/library-new.svg) no-repeat center/cover;
}

.title-search-wrapper {
  padding-right: 30px;
  max-width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.title-search-wrapper .category-select {
  display: inline-block;
}

.search-wrapper {
  position: relative;
}

.search-wrapper .input-text {
  width: 320px;
  padding-right: 40px;
}

.title-search-submit {
  background-color: transparent;
  border: none;
  font-size: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 10px;
  background: url(../img/icons/icon-search.svg) no-repeat center/16px 16px;
  cursor: pointer;
}

.sorting-wrapper {
  max-width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #F0C066;
  z-index: 1;
  padding: 15px 25px 5px;
  -webkit-border-top-left-radius: 35px 40px;
          border-top-left-radius: 35px 40px;
}

.sorting-wrapper .select-wrapper select {
  border-color: #6A4F1C;
}

.sorting-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.back-to-archive-btn {
  display: inline-block;
  padding: 5px 10px 5px 50px;
  position: relative;
  margin-bottom: 10px;
  color: #6A4F1C;
  font-size: 1rem;
  font-weight: 500;
}

.back-to-archive-btn:hover {
  color: #000;
}

.back-to-archive-btn::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -4px;
  width: 36px;
  height: 8px;
  background: url(../img/icons/icon-arrow-left.svg) no-repeat center/cover;
}

.select-wrapper {
  position: relative;
  margin-bottom: 10px;
  padding: 0 5px;
}

.select-wrapper.transparent select {
  background-color: transparent;
}

.select-wrapper select {
  width: 100%;
  padding: 7px 25px 7px 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid #cacaca;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #fff;
}

.select-wrapper::before {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

.page-container {
  padding: 30px 0;
}

.archive-container {
  padding: 30px 0;
}

.article-container {
  padding-top: 30px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.article-container::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 26px;
  background: url(../img/decor/page-content-bottom.svg) no-repeat center/cover;
}

.article-container-wide {
  padding-top: 30px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.article-container-wide::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 29px;
  background: url(../img/decor/page-content-bottom-wide.svg) no-repeat center/cover;
}

.article-container-no-decor {
  padding-top: 30px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.page-content {
  background-color: #fff;
  position: relative;
  padding: 30px 30px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  color: #777;
}

.page-content h1 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

.page-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}

.page-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}

.page-content h4 {
  font-size: 1rem;
  margin-bottom: 0.875rem;
}

.page-content h5 {
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}

.page-content h6 {
  font-size: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-content p {
  color: #777;
  line-height: 1.875;
  margin-bottom: 2rem;
}

.page-content a {
  font-weight: 700;
  text-decoration: underline;
}

.page-content a:hover {
  text-decoration: none;
}

.page-content .btn {
  font-weight: 400;
  text-decoration: none;
}

.page-content .btn-accent {
  font-weight: 500;
}

.page-content .post-thumbnail {
  margin-bottom: 1.5rem;
}

.page-content figure {
  margin-bottom: 1.5rem;
}

.page-content figure.wide {
  margin-left: -30px;
  margin-right: -30px;
}

.page-content figcaption {
  padding: 10px 20px;
  color: #888;
  text-align: center;
  font-size: 0.875rem;
}

.page-content hr {
  margin: 30px -30px;
  border: 0;
  border-top: 1px solid #f5f5f5;
}

.page-content .partners {
  margin-left: -15px;
  margin-right: -15px;
  width: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-content .partner-item {
  width: 28%;
  min-width: 130px;
}

.page-content-single-wide {
  padding: 50px 15%;
  overflow: hidden;
}

.post-template-single-sidebar .page-content-single-wide {
  padding: 30px 30px;
  overflow: hidden;
}

.page-content-decor {
  position: relative;
}

.page-content-decor::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 40px;
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
  height: 20px;
  -webkit-border-radius: 4px 4px 0 0;
          border-radius: 4px 4px 0 0;
  background-color: rgba(255, 255, 255, 0.5);
}

.page-content-decor::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  height: 10px;
  -webkit-border-radius: 4px 4px 0 0;
          border-radius: 4px 4px 0 0;
  background-color: rgba(255, 255, 255, 0.5);
}

.page-content-decor-bottom {
  position: relative;
}

.page-content-decor-bottom::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
  height: 20px;
  -webkit-border-radius: 0 0 4px 4px;
          border-radius: 0 0 4px 4px;
  background-color: rgba(255, 255, 255, 0.5);
}

.page-content-decor-bottom::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  height: 10px;
  -webkit-border-radius: 0 0 4px 4px;
          border-radius: 0 0 4px 4px;
  background-color: rgba(255, 255, 255, 0.5);
}

.center-title-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.center-title-content {
  display: inline-block;
  background-color: #F0C066;
  -webkit-border-radius: 4px 4px 0 0;
          border-radius: 4px 4px 0 0;
  padding: 20px 40px;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 0;
  min-width: 300px;
}

.center-title-content.decor {
  position: relative;
}

.center-title-content.decor::before {
  content: "";
  position: absolute;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  left: -30px;
  bottom: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px 4px 0 0;
          border-radius: 4px 4px 0 0;
  z-index: -1;
}

.video-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  margin-bottom: 1.5rem;
}

.video-wrapper.wide {
  margin-left: -30px;
  margin-right: -30px;
}

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

.page-gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}

.page-gallery .img-wrapper {
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.page-gallery.items-2 .img-wrapper {
  width: 47%;
}

.page-gallery.items-3 .img-wrapper {
  width: 32%;
}

.page-gallery.items-4 .img-wrapper {
  width: 22%;
}

.gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gallery.gallery-columns-2 .gallery-item {
  width: 47%;
}

.gallery.gallery-columns-3 .gallery-item {
  width: 32%;
}

.gallery.gallery-columns-4 .gallery-item {
  width: 22%;
}

.gallery.gallery-columns-5 .gallery-item {
  width: 18%;
}

.content-list {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}

.content-list li {
  position: relative;
  padding: 15px 20px 15px 56px;
  border: 1px solid #EAEAEA;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  font-size: 0.875rem;
  margin-bottom: 15px;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #f5f5f5;
}

.content-list li::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #F0C066;
}

.content-list li:last-child {
  margin-bottom: 0;
}

.content-list.content-list-accent li {
  border-color: #F0C066;
  background-color: #F0C066;
  color: #fff;
  font-weight: 700;
}

.content-list.content-list-accent li::before {
  background-color: #fff;
}

.content-list.content-list-accent li::after {
  background-color: #F0C066;
}

.content-list.content-list-logo li::before {
  content: "";
  margin-top: -11px;
  height: 22px;
  -webkit-border-radius: 0;
          border-radius: 0;
  background: url(../img/icons/trening/content-list-logo.svg) no-repeat center/cover;
}

.content-list.content-list-logo li::after {
  display: none;
}

.bg-grey {
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #f5f5f5;
  padding: 15px;
  margin-bottom: 1.5rem;
}

.timer-wrapper {
  background-color: #fbfbfb;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  padding: 30px;
  margin-bottom: 1.5rem;
}

.content-bg-light {
  padding: 30px 30px 5px;
  background-color: #fbfbfb;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 20px;
}

.page-sidebar {
  padding-top: 30px;
}

.search-form .search-field {
  display: inline-block;
  border: 1px solid #eee;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 9px 20px;
  font-size: 0.875rem;
}

.search-form .search-field::-webkit-input-placeholder {
  color: #ccc;
  font-size: 0.875rem;
}

.search-form .search-field:-ms-input-placeholder {
  color: #ccc;
  font-size: 0.875rem;
}

.search-form .search-field::-ms-input-placeholder {
  color: #ccc;
  font-size: 0.875rem;
}

.search-form .search-field::placeholder {
  color: #ccc;
  font-size: 0.875rem;
}

.search-form .search-submit {
  display: inline-block;
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.875rem;
  background-color: #004680;
  color: #fff;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
}

.search-form .search-submit:hover {
  color: #fff;
  background-color: #004e8f;
}

.search-form .search-submit:active, .search-form .search-submit:focus {
  color: #fff;
  background-color: #003e71;
}

.widget {
  background-color: #FFF5CC;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 25px 25px 15px;
  margin-bottom: 30px;
}

.widget ul {
  margin: 0;
  padding: 10px 0;
  list-style-type: none;
}

.widget ul li {
  margin-left: -15px;
  margin-right: -15px;
}

.widget ul a {
  display: block;
  font-size: 0.75rem;
  color: #004680;
  font-weight: 500;
  padding: 10px 15px;
}

.widget ul a:hover {
  background-color: #F0C066;
  color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.widget .post-date {
  display: inline-block;
  padding: 0px 15px;
  font-size: 12px;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.widget.widget_library_news {
  background-color: #f4faff;
}

.widget.widget_library_news ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.widget.widget_library_news ul li {
  margin-left: -25px;
  margin-right: -25px;
}

.widget.widget_library_news ul a {
  padding: 20px 10px 20px 70px;
  position: relative;
}

.widget.widget_library_news ul a:hover {
  background-color: #EDF7FF;
  color: #004680;
}

.widget.widget_library_news ul a::before {
  content: "PDF";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #004680;
  color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  left: 20px;
  top: 50%;
  margin-top: -15px;
  font-size: 0.625rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 30px;
}

.widget-title {
  font-size: 1.125rem;
  position: relative;
  padding-bottom: 20px;
  margin: 0;
}

.widget-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -25px;
  right: -25px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}

.admins-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.admin-item {
  width: 20%;
  padding: 0 10px;
  margin-bottom: 20px;
  text-align: center;
}

.admin-item:hover img {
          -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
          transform: scale(1.2);
          -moz-transform: scale(1.2);
          -o-transform: scale(1.2);
}

.admin-item .img-wrapper {
  display: inline-block;
  width: 160px;
  height: 160px;
  overflow: hidden;
  -webkit-border-radius: 50%;
          border-radius: 50%;
          
  margin-bottom: 20px;
}

.admin-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  -o-transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
  -moz-transition: -webkit-transform 1.5s;
  -ms-transition: -webkit-transform 1.5s;
}

.admin-item .btn {
  width: 100%;
}

.admin-text {
    background-color: #F0C066;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    padding: 10px 15px;
    text-align: center;
    height: 90px;
    overflow: hidden;
    /* display: -webkit-box; */
    /* -webkit-box-orient: vertical; */
    /* -webkit-line-clamp: 1; */
    /* word-break: break-word; */
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; */
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */

}

.admin-name {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  word-break: break-word;
  line-height: 1.2em;
}

.admin-position {
  font-size: 0.75rem;
  font-weight: 500;
  color: #000;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-bottom: 5px;
}

.contact-form {
  max-width: 540px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group-wide {
  width: 100%;
}

.contact-form .input-text {
  padding: 20px 20px 7px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  display: block;
}

.contact-form .btn-submit {
  width: 100%;
}

.contact-form .select-wrapper {
  padding: 0;
}

.contact-form .select-wrapper select {
  padding-top: 14px;
  padding-bottom: 13px;
  border-color: #eaeaea;
  color: #777;
  font-size: 0.875rem;
}

.contact-form-page-profile {
  margin-top: 20px;
}

.form-group {
  position: relative;
}

.form-group .label-top {
  margin-bottom: 10px;
  font-size: 0.75rem;
  margin-left: 5px;
  color: #222;
}

.floating-input + label,
.floating-select + label {
  position: absolute;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  color: #777;
  left: 22px;
  font-size: 14px;
  top: 17px;
  cursor: text;
  pointer-events: none;
  margin-bottom: 0;
}

.floating-input:focus::-webkit-input-placeholder {
  opacity: 1;
}

.floating-input:focus:-ms-input-placeholder {
  opacity: 1;
}

.floating-input:focus::-ms-input-placeholder {
  opacity: 1;
}

.floating-input:focus::placeholder {
  opacity: 1;
}

.floating-input:focus + label {
  font-size: 10px;
  color: #004680;
  top: 7px;
  cursor: default;
}

.floating-input:not(:placeholder-shown) + label {
  font-size: 10px;
  color: #004680;
  top: 7px;
  cursor: default;
}

.floating-input::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.floating-input:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.floating-input::-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.floating-input::placeholder {
  opacity: 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.floating-select {
  width: 100%;
  padding: 18px 20px;
  background-color: #F6FFFA;
  border: 1px dotted #E6E6E6;
  -webkit-box-shadow: 1px 1px 4px rgba(224, 125, 249, 0.25);
          box-shadow: 1px 1px 4px rgba(224, 125, 249, 0.25);
  font-size: 18px;
  font-weight: 700;
  color: #46C77E;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.floating-select:focus {
  outline: none;
}

.floating-select:focus + label,
.floating-select:not([value=""]):valid + label {
  font-size: 12px;
  top: 4px;
  cursor: default;
}

.floating-select.empty + label {
  font-size: 18px;
  top: 20px;
  cursor: text;
}

.wpcf7 .contact-form .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 .contact-form .form-group > label {
  position: absolute;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  color: #777;
  left: 22px;
  font-size: 14px;
  top: 17px;
  cursor: text;
  pointer-events: none;
  margin-bottom: 0;
}

.wpcf7 .contact-form .form-group.active > label {
  font-size: 10px;
  color: #004680;
  top: 7px;
  cursor: default;
}

.wpcf7 .file-upload-custom {
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: 1px solid #eaeaea;
  padding: 8px;
}

.wpcf7 .file-upload-custom input[type="file"] {
  width: 100%;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: 1px solid #eaeaea;
}

.position-wrapper {
  padding: 20px;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 20px;
}

.checkbox-radio {
  border: 1px solid #eaeaea;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.checkbox-radio span.wpcf7-list-item {
  display: block;
  margin: 0;
}

.checkbox-radio label {
  margin-bottom: 0;
  display: block;
}

.checkbox-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox-radio input[type="radio"] + .label-text::before,
.checkbox-radio input[type="radio"] + .wpcf7-list-item-label::before {
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.checkbox-radio input[type="radio"] + .label-text::after,
.checkbox-radio input[type="radio"] + .wpcf7-list-item-label::after {
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.checkbox-radio input[type="checkbox"]:focus + .label-text::before,
.checkbox-radio input[type="checkbox"]:focus + .wpcf7-list-item-label::before,
.checkbox-radio input[type="radio"]:focus + .label-text::before {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.checkbox-radio input[type="checkbox"]:checked + .label-text::after,
.checkbox-radio input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
.checkbox-radio input[type="radio"]:checked + .label-text::after {
  opacity: 1;
}

.checkbox-radio .label-text,
.checkbox-radio .wpcf7-list-item-label {
  display: block;
  width: 100%;
  position: relative;
  padding: 9px 20px 9px 40px;
  cursor: pointer;
}

.checkbox-radio .label-text::before,
.checkbox-radio .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 15px;
  width: 14px;
  height: 14px;
  border: 1px solid #b9b9b9;
}

.checkbox-radio .label-text::after,
.checkbox-radio .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 18px;
  width: 8px;
  height: 8px;
  background: #F0C066;
  opacity: 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.form-tags-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.checkbox-tag {
  margin: 0px 5px 10px;
  display: block;
  text-align: center;
  cursor: pointer;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.checkbox-tag input {
  display: none;
}

.checkbox-tag input:checked + .checkbox-tag-text {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #004680;
  border-color: #004680;
}

.checkbox-tag .checkbox-tag-text {
  display: block;
  white-space: nowrap;
  padding: 8px 10px;
  color: #777;
  font-size: 0.625rem;
  text-align: center;
  border: 1px solid #eaeaea;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.agreement-checkbox .label-text,
.agreement-checkbox .wpcf7-list-item-label {
  min-height: 40px;
  padding: 5px 20px 5px 40px;
  font-size: 0.75rem;
  color: #222;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio-sep {
  margin: 15px 0;
  text-align: center;
  font-size: 0.875rem;
  color: #777;
}

.radio-sep span {
  display: inline-block;
  position: relative;
}

.radio-sep span::before, .radio-sep span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 20px;
  background-color: #f5f5f5;
  top: 49%;
}

.radio-sep span::before {
  left: -35px;
}

.radio-sep span::after {
  right: -35px;
}

.box__uploading,
.box__success,
.box__error {
  display: none;
}

.box__input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: 1px solid #eaeaea;
  padding: 13px 0;
}

.box__input img {
  width: 23px;
  height: 23px;
  margin-right: 20px;
}

.has-advanced-upload {
  border: 1px dashed #eaeaea;
}

.has-advanced-upload .box__dragndrop {
  display: inline;
}

.upload-label {
  display: block;
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0;
  font-weight: 500;
  color: #777;
}

.is-dragover .box__input {
  background-color: #e5edf1;
}

.is-uploading .box__input {
  visibility: none;
}

.is-uploading .box__uploading {
  display: block;
}

.trener-item {
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 30px;
  padding: 30px 30px 10px;
}

.trener-item-photo .img-wrapper {
  height: 300px;
  background-color: #c4c4c4;
  margin-bottom: 20px;
}

.trener-item-photo .btn {
  margin-bottom: 20px;
}

.trener-item-descr {
  font-size: 1rem;
  font-weight: 700;
  color: #777;
}

.trener-item-descr a {
  font-weight: 400;
  color: #004680;
  text-decoration: none;
}

.trener-city {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
  margin-bottom: 15px;
}

.trener-name {
  font-size: 1rem;
  font-weight: 700;
  color: #777;
  margin-bottom: 15px;
}

.trener-title {
  font-weight: 400;
  display: block;
}

.trener-trenings-count,
.trener-working-from {
  font-size: 1rem;
  font-weight: 700;
  color: #777;
  margin-bottom: 15px;
}

.trener-tags {
  max-height: 200px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 10px;
}

.trener-tags::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(#fff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2), #fff 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.2), #fff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), #fff 100%);
}

.profile-wrapper {
  max-width: 890px;
  margin: 0 auto;
  padding: 10px 0;
}

.profile-wrapper .profile-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #222;
}

.profile-wrapper .profile-tags a {
  display: inline-block;
  font-size: 0.625rem;
  padding: 7px 15px;
  border: 1px solid #eaeaea;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  color: #777;
  text-decoration: none;
  margin-right: 5px;
  margin-bottom: 10px;
  font-weight: 400;
}

.profile-wrapper .profile-tags a:hover {
  background-color: #777;
  border-color: #777;
  color: #fff;
}

.profile-wrapper .profile-contact-list a {
  text-decoration: none;
  font-weight: 400;
}

.profile-wrapper .profile-contact-list a:hover {
  text-decoration: underline;
}

.profile-photo {
  padding: 20px 15px;
}

.profile-photo .img-wrapper {
  height: 400px;
  overflow: hidden;
  max-width: 350px;
  margin: 0 auto 30px;
}

.profile-photo .btn {
  margin-bottom: 30px;
}

.single-volunteers .profile-photo .img-wrapper,
.single-trainers .profile-photo .img-wrapper {
  height: auto;
}

.single-volunteers .profile-photo .img-wrapper img,
.single-trainers .profile-photo .img-wrapper img {
  display: inline-block;
}

.profile-contact-list {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

.profile-contact-list li {
  margin-bottom: 10px;
}

.profile-contact-list li img {
  width: 23px;
  height: 23px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.profile-contact-list li span {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.profile-contact-list li a {
  display: inline-block;
  vertical-align: middle;
}

.profile-description-wrap {
  border-left: 1px solid #f5f5f5;
}

.profile-description {
  padding: 20px 15px;
}

.profile-description .profile-top-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 400;
  font-size: 1rem;
}

.profile-header {
  padding-bottom: 20px;
  font-size: 1rem;
  color: #777;
  font-weight: 700;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 30px;
}

.profile-footer {
  padding-top: 25px;
  border-top: 1px solid #f5f5f5;
  margin-top: 30px;
  text-align: center;
}

.profile-page-number {
  display: inline-block;
  position: relative;
  color: #777;
  resize: 1rem;
}

.profile-page-number::before, .profile-page-number::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 25px;
  background-color: #777;
  top: 49%;
}

.profile-page-number::before {
  left: -35px;
}

.profile-page-number::after {
  right: -35px;
}

.post-item-wrapper-link:hover .post-item {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-item {
  height: -webkit-calc(100% - 30px);
  height: calc(100% - 30px);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 30px;
  -webkit-transition: -webkit-box-shadow 0.25s;
  transition: -webkit-box-shadow 0.25s;
  -o-transition: box-shadow 0.25s;
  transition: box-shadow 0.25s;
  transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.post-item .img-wrapper {
  max-height: 300px;
  overflow: hidden;
}

.post-item .img-wrapper img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
}

.post-item.post-item-author {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.post-item.post-item-author .img-wrapper {
  max-height: none;
}

.post-item .news-info {
  margin-bottom: 10px;
}

.post-item .btn {
  min-width: 160px;
}

.author-photo {
  display: inline-block;
  border: 1px solid #eee;
  padding: 10px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 1rem;
}

.author-photo .img-wrapper {
  overflow: hidden;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.author-posts-count {
  font-size: 0.875rem;
  color: #777;
  font-weight: 500;
  margin-bottom: 10px;
}

.post-body {
  padding: 20px 20px;
  background-color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.post-body p {
  font-size: 0.875rem;
  color: #222;
}

.post-body .btn {
  margin-top: auto;
}

.post-title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}

.post-excerpt {
  font-size: 0.875rem;
  color: #222;
}

.pagination-wrapper {
  margin: 30px 0;
  text-align: center;
}

.pagination {
  display: inline-block;
}

.pagination .nav-links,
.pagination .page-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination .nav-links a, .pagination .nav-links span,
.pagination .page-links a,
.pagination .page-links span {
  min-width: 40px;
  height: 40px;
  padding: 0 5px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #fff;
  margin-left: 10px;
  font-size: 0.75rem;
  color: #222;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
}

.pagination .nav-links a:first-child, .pagination .nav-links span:first-child,
.pagination .page-links a:first-child,
.pagination .page-links span:first-child {
  margin-left: 0;
}

.pagination .nav-links a:hover,
.pagination .page-links a:hover {
  background-color: #004680;
  color: #fff;
}

.pagination .nav-links .current,
.pagination .page-links .current {
  background-color: #004680;
  color: #fff;
}

.pagination .nav-links span,
.pagination .page-links span {
  cursor: not-allowed;
}

.post-navigation {
  /* margin: 15px 0; */
  display: none;
}

.post-navigation .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  margin-bottom: 15px;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
  padding: 10px 15px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #004680;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  max-width: 250px;
}

.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  color: #fff;
}

.post-navigation .nav-links .nav-previous:hover,
.post-navigation .nav-links .nav-next:hover {
  background-color: #fff;
  color: #004680;
}

.post-navigation .nav-links .nav-previous:hover a,
.post-navigation .nav-links .nav-next:hover a {
  color: #004680;
}

.post-navigation .nav-links .nav-previous {
  margin-right: 5px;
}

.post-navigation .nav-links .nav-next {
  margin-left: auto;
}

.entry-footer {
  padding: 20px 15px;
  margin-top: -10px;
  background-color: #fff;
}

.single-info-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.single-info-share .news-info {
  margin-bottom: 20px;
}

.single-share {
  margin: 0 0 25px 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.single-share li + li {
  margin-left: 13px;
}

.single-share a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: 30px 30px;
          background-size: 30px 30px;
}

.single-share a:hover {
  opacity: 0.8;
}

.single-share-fb a {
  background-image: url(../img/icons/socials/icon-fb.svg);
}

.single-share-tw a {
  background-image: url(../img/icons/socials/icon-twitter.svg);
}

.single-share-viber a {
  background-image: url(../img/icons/socials/icon-viber.svg);
}

.single-share-tg a {
  background-image: url(../img/icons/socials/icon-tg.svg);
}

.widget_contacts {
  padding: 0;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #fff;
  margin-bottom: 30px;
}

.widget-contacts-item {
  border-bottom: 1px solid #f5f5f5;
  padding: 30px 15% 30px 90px;
  position: relative;
}

.widget-contacts-item:last-child {
  border-bottom: none;
}

.widget-contacts-item::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -15px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
}

.widget-contacts-item-email::before {
  background-image: url(../img/icons/icon-contacts-email.svg);
}

.widget-contacts-item-phone::before {
  background-image: url(../img/icons/icon-contacts-phone.svg);
}

.widget-contacts-item-address::before {
  background-image: url(../img/icons/icon-contacts-address.svg);
}

.widget-contacts-name {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 5px;
  color: #222;
}

.widget-contacts-value {
  display: block;
  font-size: 1rem;
  margin-bottom: 0;
  color: #222;
  font-weight: 700;
}

a.widget-contacts-value {
  text-decoration: none;
}

a.widget-contacts-value:hover {
  color: #004680;
  text-decoration: underline;
}

.error404 .main-wrapper {
  background-color: #F0C066;
}

.error404 .footer-top {
  background: #004680;
}

.page-404 .footer-top {
  background: #004680;
}

.wrapper-404 {
  background-color: #F0C066;
}

.content-404 {
  text-align: center;
  padding-top: 50px;
}

.title-404 {
  font-size: 200px;
  font-weight: 900;
  color: #222;
  line-height: 1;
}

.text-404 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 2rem;
}

.btn-404 {
  min-width: 255px;
  margin-bottom: 1rem;
}

.background-404 img {
  width: 100%;
}

.category-library-wrapper {
  background-color: #F0C066;
  padding: 30px 10%;
  margin-left: -30px;
  margin-right: -30px;
}

.category-library {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.category-library a.library-item {
  text-decoration: none;
  font-weight: 400;
}

.library-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  min-height: 50px;
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 20px;
  padding: 10px 20px 10px 70px;
  font-size: 0.875rem;
  color: #004680;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.library-item::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 25px;
  background: url(../img/icons/icon-books.svg) no-repeat center/cover;
}

.library-item-title {
  max-width: -webkit-calc(100% - 35px);
  max-width: calc(100% - 35px);
}

.library-item-count {
  margin-left: auto;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #f5f5f5;
  -webkit-columns: #222;
          columns: #222;
  font-size: 0.875rem;
  text-align: center;
}

.trenings-schedule-table-wrapper {
  overflow-x: auto;
  padding-bottom: 15px;
}

.trenings-schedule-title {
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #000;
}

.schedule-tabs-wrapper {
  padding-top: 20px;
}

.schedule-tab {
  font-weight: 500;
  margin-right: 15px;
  margin-bottom: 15px;
}

.trenings-schedule-table {
  min-width: 660px;
  font-size: 0.875rem;
}

.trenings-schedule-table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.trenings-schedule-table th {
  padding: 20px 15px;
  text-align: center;
}

.trenings-schedule-table th:first-child {
  padding-left: 0;
}

.trenings-schedule-table th:last-child {
  padding-right: 0;
}

.trenings-schedule-table td {
  padding: 15px;
  text-align: center;
  border-right: 1px solid #e6e6e6;
}

.trenings-schedule-table td a {
  text-decoration: none !important;
  font-weight: 400 !important;
}

.trenings-schedule-table td a:hover {
  text-decoration: underline !important;
}

.trenings-schedule-table td:first-child {
  -webkit-border-radius: 4px 0 0 4px;
          border-radius: 4px 0 0 4px;
}

.trenings-schedule-table td:last-child {
  -webkit-border-radius: 0 4px 4px 0;
          border-radius: 0 4px 4px 0;
  border-right: none;
}

.trenings-schedule-table td:last-child a {
  font-weight: 500 !important;
}

.trenings-schedule-table .col-1 {
  width: 15%;
}

.trenings-schedule-table .col-2 {
  width: 20%;
}

.trenings-schedule-table .col-3 {
  width: 15%;
}

.trenings-schedule-table .col-4 {
  width: 30%;
}

.trenings-schedule-table .col-5 {
  width: 20%;
}

.schedule-table-header {
  background-color: #F0C066;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  min-height: 80px;
  padding: 15px;
  color: #222;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.comments-area {
  padding: 30px;
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.comments-area a {
  color: #004680;
}

.comments-area a:hover {
  color: #000;
  text-decoration: underline;
}

.comment-content {
  padding: 10px 10px;
  border: 1px solid #eee;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.comments-title {
  font-size: 1.5rem;
}

.comment-reply-title {
  font-size: 1.125rem;
}

.comment-form label {
  display: block;
}

.comment-form .comment-form-cookies-consent label {
  display: inline-block;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  max-width: 500px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: 1px solid #eee;
  padding: 10px 20px;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form .form-submit .submit {
  display: inline-block;
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 10px 20px;
  background-color: #004680;
  color: #fff;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 0.875rem;
}

.comment-form .form-submit .submit:hover {
  color: #fff;
  background-color: #004F90;
}

.comment-form .form-submit .submit:active, .comment-form .form-submit .submit:focus {
  color: #fff;
  background-color: #003C6F;
}

.cpt-form .acf-field input[type="text"],
.cpt-form .acf-field input[type="password"],
.cpt-form .acf-field input[type="date"],
.cpt-form .acf-field input[type="datetime"],
.cpt-form .acf-field input[type="datetime-local"],
.cpt-form .acf-field input[type="email"],
.cpt-form .acf-field input[type="month"],
.cpt-form .acf-field input[type="number"],
.cpt-form .acf-field input[type="search"],
.cpt-form .acf-field input[type="tel"],
.cpt-form .acf-field input[type="time"],
.cpt-form .acf-field input[type="url"],
.cpt-form .acf-field input[type="week"],
.cpt-form .acf-field textarea,
.cpt-form .acf-field select {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.875rem;
}

.cpt-form .select2-container--default .select2-search--inline .select2-search__field {
  padding: 0;
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.cpt-form .select2-container.-acf .select2-selection {
  border-color: #ccc;
}

.cpt-form .acf-form-submit {
  padding: 10px 12px;
}

.add-profile {
  max-width: 730px;
  margin: 30px auto;
  background-color: #004680;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  padding: 30px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-profile h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
}

.add-profile p {
  font-size: 0.625rem;
  margin-bottom: 10px;
}

.btn-add-profile {
  min-width: 160px;
  margin-left: auto;
}

.search-category-wrapper .select-wrapper {
  display: inline-block;
  max-width: 320px;
  margin-bottom: 0;
  padding: 5px;
}

.search-category-wrapper .search-btn-wrapper {
  padding: 5px;
  display: inline-block;
}

.region-wrapper {
  padding: 20px 30px;
  margin-left: -30px;
  margin-right: -30px;
}

.region-wrapper.region-grey {
  background-color: #f5f5f5;
}

.region-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.region-list li {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 10px;
  margin-bottom: 10px;
}

.region-list li a.region-item {
  display: block;
  text-align: center;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 10px 15px;
  color: #777;
  font-weight: 400;
  font-size: 0.875em;
  text-decoration: none;
}

.region-list li a.region-item:hover {
  background-color: #777;
  color: #fff;
  text-decoration: none;
}

.region-list-wrapper {
  margin: 0;
  padding: 30px 0 0 0;
  list-style-type: none;
}

.region-list-wrapper > li.cat-item {
  padding: 20px 30px;
  margin-left: -30px;
  margin-right: -30px;
  background-color: #fff;
}

.region-list-wrapper > li.cat-item:nth-child(odd) {
  background-color: #f5f5f5;
}

.region-list-wrapper > li.cat-item > a {
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}

.region-list-wrapper > li.cat-item > a:hover {
  opacity: 0.8;
}

.region-list-wrapper ul.children {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.region-list-wrapper ul.children > li.cat-item {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

.region-list-wrapper ul.children > li.cat-item span {
  display: inline-block;
  position: absolute;
  top: -7px;
  right: -5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0.65rem;
  color: #222;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  text-align: center;
  background-color: #F0C066;
}

.region-list-wrapper ul.children > li.cat-item a {
  display: block;
  text-align: center;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 5px 10px;
  color: #777;
  font-weight: 400;
  font-size: 0.875em;
  text-decoration: none;
}

.region-list-wrapper ul.children > li.cat-item a:hover {
  background-color: #777;
  color: #fff;
  text-decoration: none;
}

.volunteer-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.volunteer-list-item {
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.volunteer-list-item .img-wrapper {
  width: 12%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 10px;
}

.volunteer-list-item .img-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}

.volunteer-list-item p {
  margin-bottom: 10px;
}

.vol-item-block {
  padding: 15px 10px;
  font-size: 0.875rem;
}

.volunteer-name {
  width: 15%;
  border-left: 1px solid #eaeaea;
  text-align: center;
}

.volunteer-name p {
  font-size: 1rem;
  font-weight: 500;
}

.volunteer-organisation {
  width: 20%;
  border-left: 1px solid #eaeaea;
}

.volunteer-experience {
  width: 15%;
  border-left: 1px solid #eaeaea;
}

.vol-title {
  font-weight: 500;
  margin-bottom: 10px;
}

.volunteer-tags {
  width: 25%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  border-left: 1px solid #eaeaea;
}

.volunteer-tags a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 0.75rem;
  color: #004680;
}

.volunteer-tags a:hover {
  color: #004680;
  text-decoration: underline;
}

.volunteer-link-wrapper {
  border-left: 1px solid #eaeaea;
  min-width: 140px;
  width: 13%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.volunteer-table-wrapper {
  margin: 50px 0;
  overflow-x: auto;
}

.volunteer-table {
  background-color: #fff;
  min-width: 2000px;
}

.volunteer-table a {
  color: #004680;
}

.volunteer-table a:hover {
  text-decoration: underline;
}

.volunteer-table th, .volunteer-table td {
  border: 1px solid #eaeaea;
  padding: 10px 10px;
  min-width: 120px;
  font-size: 0.875rem;
}

.volunteer-table td:first-child,
.volunteer-table th:first-child {
  min-width: 40px;
  text-align: center;
}

.volunteer-table td:nth-child(2) {
  max-width: 80px;
}

.volunteer-table td:nth-child(4),
.volunteer-table td:nth-child(5) {
  overflow: hidden;
  max-width: 150px;
}

.woocommerce-breadcrumb a:after {
  display: inline-block;
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

.cpt-form-new .acf-fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.cpt-form-new .acf-field {
  width: 100%;
}

.cpt-form-new .acf-field input[type="file"] {
  width: 100%;
}

.cpt-form-new .acf-tab-wrap {
  width: 100%;
}

.cpt-form-new .acf-tab-group {
  width: 100%;
}

.cpt-form-new .acf-custom-field-half {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cpt-form-new .acf-custom-field-half .acf-input {
  margin-top: auto;
}

.cpt-form-new .dummy_slug_custom_field {
  display: none;
}

@media only screen and (max-width: 991px) {
  .cpt-form-new .acf-fields {
    display: block;
  }
  .cpt-form-new .acf-field {
    width: auto;
  }
  .cpt-form-new .acf-custom-field-half {
    width: auto;
    display: block;
  }
}

.download-attachments {
  overflow-y: auto;
}

.download-attachments table {
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
  width: 100%;
  max-width: 100%;
}

.download-attachments table td, .download-attachments table th {
  padding: 5px;
  line-height: 1.6;
  vertical-align: top;
  border-top: 1px solid #ddd;
  text-align: left;
  font-size: 0.875rem;
}

.download-attachments table td .attachment-icon {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.download-attachments table td .attachment-link {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
  text-decoration: none;
}

.download-attachments table td .attachment-link:hover {
  text-decoration: underline;
}

.download-attachments table .attachment-title img {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.download-attachments table .attachment-title a {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
  text-decoration: none;
}

.download-attachments table .attachment-title a:hover {
  text-decoration: underline;
}

.dynatable-record-count {
  font-size: 0.875rem;
}

.dynatable-pagination-links {
  padding: 0;
  list-style-type: none;
}

.dynatable-pagination-links li {
  font-size: 0.875rem;
}

.da-attachments-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.da-attachments-list li {
  margin-bottom: 10px;
}

.da-attachments-list li img {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.da-attachments-list li a {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
  text-decoration: none;
}

.da-attachments-list li a:hover {
  text-decoration: underline;
}

.da-attachments-list li span {
  font-size: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

body.special_mode.font-family-tnr {
  font-family: "Times New Roman", serif;
}

body.special_mode.font-family-arial {
  font-family: "Roboto", sans-serif;
}

body.special_mode.white-on-black {
  color: #fff !important;
  background-color: #000 !important;
}

body.special_mode.yellow-on-blue {
  color: #FFD200 !important;
  background-color: #3563b1 !important;
}

body.special_mode.white-on-black .h1, body.special_mode.white-on-black .h2, body.special_mode.white-on-black .h3, body.special_mode.white-on-black .h4, body.special_mode.white-on-black .h5, body.special_mode.white-on-black .h6,
body.special_mode.white-on-black h1, body.special_mode.white-on-black h2, body.special_mode.white-on-black h3, body.special_mode.white-on-black h4, body.special_mode.white-on-black h5, body.special_mode.white-on-black h6 {
  color: #fff;
}

body.special_mode.white-on-black p {
  color: #fff;
}

body.special_mode.white-on-black .slick-dots li button::before {
  border-color: #fff;
}

body.special_mode.white-on-black .slick-dots li.slick-active button::before {
  background-color: #fff;
  border-color: #fff;
}

body.special_mode.white-on-black .control-panel {
  outline: 2px solid #fff;
  border-top: none;
}

body.special_mode.white-on-black .page-header {
  background-color: #000;
}

body.special_mode.white-on-black .page-header.fixed {
  background-color: #000;
}

body.special_mode.white-on-black .page-header::before {
  display: none;
}

body.special_mode.white-on-black .menu-toggle {
  color: #fff;
}

body.special_mode.white-on-black .header-top {
  background-color: #000;
}

body.special_mode.white-on-black .header-email a {
  color: #fff;
}

body.special_mode.white-on-black .language-switcher a {
  color: #fff;
}

body.special_mode.white-on-black .header-bottom {
  background-color: #000;
}

body.special_mode.white-on-black .section-news {
  background-color: #000;
}

body.special_mode.white-on-black .section-news::before {
  display: none;
}

body.special_mode.white-on-black .news-item:hover .news-title {
  color: #f5f5f5;
  text-decoration: underline;
}

body.special_mode.white-on-black .news-info-item {
  color: #fff;
}

body.special_mode.white-on-black .section-soon {
  background: #000;
  border-top: 1px solid #fafafa;
}

body.special_mode.white-on-black .section-study::before {
  display: none;
}

body.special_mode.white-on-black .section-study::after {
  display: none;
}

body.special_mode.white-on-black .section-study-text {
  color: #fff;
}

body.special_mode.white-on-black .section-blog {
  background-color: #000;
}

body.special_mode.white-on-black .section-blog::before {
  display: none;
}

body.special_mode.white-on-black .section-blog::after {
  display: none;
}

body.special_mode.white-on-black .section-library::before {
  display: none;
}

body.special_mode.white-on-black .library-name-decor {
  display: none;
}

body.special_mode.white-on-black .library-slide a:hover {
  color: #fff;
  text-decoration: underline;
}

body.special_mode.white-on-black .library-slide a:hover .library-slide-title {
  color: #fff;
}

body.special_mode.white-on-black .library-slide-title::before {
  display: none;
}

body.special_mode.white-on-black .section-testimonials {
  border-top: 1px solid #fafafa;
}

body.special_mode.white-on-black .testiomonial-slide {
  background-color: #000;
  border: 1px solid #fafafa;
}

body.special_mode.white-on-black .testiomonial-slide a {
  color: #fff;
  text-decoration: underline;
}

body.special_mode.white-on-black .testiomonial-slide a:hover {
  text-decoration: none;
}

body.special_mode.white-on-black .testimonial-user-position {
  color: #fff;
}

body.special_mode.white-on-black .footer-subscribe {
  background-color: #333;
}

body.special_mode.white-on-black .footer-top {
  background: #222;
}

body.special_mode.white-on-black .footer-top::before {
  background-color: #fff;
}

body.special_mode.white-on-black .main-wrapper {
  background-color: #000;
}

body.special_mode.white-on-black .page-title-wrapper {
  background-color: #222;
}

body.special_mode.white-on-black .kama_breadcrumbs span,
body.special_mode.white-on-black .kama_breadcrumbs a {
  color: #fff;
}

body.special_mode.white-on-black .page-content {
  color: #fff;
  background-color: #222;
}

body.special_mode.white-on-black .page-content a {
  color: #fff;
}

body.special_mode.white-on-black .page-content hr {
  border-color: rgba(255, 255, 255, 0.2);
}

body.special_mode.white-on-black .content-list li {
  color: #fff;
}

body.special_mode.white-on-black .article-container::before,
body.special_mode.white-on-black .article-container-wide::before {
  display: none;
}

body.special_mode.white-on-black .page-content-decor::before, body.special_mode.white-on-black .page-content-decor::after,
body.special_mode.white-on-black .page-content-decor-bottom::before,
body.special_mode.white-on-black .page-content-decor-bottom::after {
  display: none;
}

body.special_mode.white-on-black .content-bg-light {
  background-color: #333;
}

body.special_mode.white-on-black .entry-footer {
  background-color: #000;
}

body.special_mode.white-on-black .widget {
  background-color: #222;
}

body.special_mode.white-on-black .widget ul a {
  color: #fff;
}

body.special_mode.white-on-black .widget ul a:hover {
  color: #fff;
  text-decoration: underline;
  background-color: transparent;
}

body.special_mode.white-on-black .widget-contacts-item {
  border-color: rgba(255, 255, 255, 0.2);
}

body.special_mode.white-on-black .widget-contacts-value {
  color: #fff;
}

body.special_mode.white-on-black .trener-item {
  background-color: #222;
}

body.special_mode.white-on-black .trener-item-descr {
  color: #fff;
}

body.special_mode.white-on-black .trener-item-descr a {
  color: #fff;
}

body.special_mode.white-on-black .trener-item-descr a:hover {
  color: #fff;
  text-decoration: underline;
}

body.special_mode.white-on-black .trening-item .content a {
  color: #004680;
}

body.special_mode.white-on-black .position-wrapper {
  background-color: #333;
}

body.special_mode.white-on-black .agreement-checkbox .label-text,
body.special_mode.white-on-black .agreement-checkbox .wpcf7-list-item-label {
  color: #fafafa;
}

body.special_mode.white-on-black .timer-wrapper {
  background-color: #333;
}

body.special_mode.white-on-black .post-item,
body.special_mode.white-on-black .post-body {
  background-color: #222;
}

body.special_mode.white-on-black .library-item {
  background-color: #000;
}

body.special_mode.white-on-black .library-item-count {
  background-color: #333;
}

body.special_mode.white-on-black .trenings-schedule-table tbody tr:nth-child(odd) {
  background-color: #333;
}

body.special_mode.white-on-black .region-list-wrapper > li.cat-item:nth-child(odd) {
  background-color: #333;
}

body.special_mode.white-on-black .region-list-wrapper > li.cat-item:nth-child(even) {
  background-color: #222;
}

body.special_mode.white-on-black .volunteer-list-item {
  background-color: #222;
}

body.special_mode.white-on-black .volunteer-list-item .vol-item-block {
  border-color: rgba(255, 255, 255, 0.2);
}

body.special_mode.white-on-black .volunteer-tags a {
  color: #fff;
}

body.special_mode.white-on-black .comments-area {
  background-color: #222;
}

body.special_mode.white-on-black .comments-area a {
  color: #fff;
}

body.special_mode.white-on-black .author-profile-card a {
  color: #fff;
}

body.special_mode.white-on-black .profile-contact-list li span {
  color: #fff;
}

body.special_mode.white-on-black .acf-fields > .acf-tab-wrap {
  background-color: #333;
}

body.special_mode.white-on-black .acf-fields > .acf-tab-wrap .acf-tab-group li a {
  background-color: #222;
}

body.special_mode.white-on-black .acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
  background-color: #000;
}

body.special_mode.white-on-black .select2-results__option[aria-selected] {
  color: #222;
}

body.special_mode.white-on-black .select2-container.-acf .select2-selection--multiple .select2-selection__choice {
  color: #222;
}

body.special_mode.white-on-black .region-list-wrapper ul.children > li.cat-item a {
  color: #fff;
}

body.special_mode .special-mode-btn {
  background: #F0C066;
}

body.special_mode .special-mode-open {
  background: #F0C066;
}

.post-created-msg {
  margin: 0 12px;
  border: 3px solid #F0C066;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  padding: 5px 10px;
  font-weight: 500;
}

@media print {
  .page-header {
    display: none;
  }
  .main-wrapper {
    padding-top: 0 !important;
  }
  .kama_breadcrumbs {
    display: none;
  }
  .btn-print {
    display: none;
  }
  .post-navigation {
    display: none;
  }
  .page-footer {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .header-left {
    padding-right: 20px;
    max-width: 200px;
    width: auto;
  }
  .header-logo {
    max-width: 200px;
  }
  .header-bottom .btn {
    margin-left: 15px;
  }
  .submenu {
    width: 440px;
  }
  .section-blog::before {
    left: 10%;
  }
  .section-blog::after {
    right: 10%;
  }
  .section-blog-left {
    width: 30%;
  }
  .section-blog-right {
    width: 70%;
  }
  .blog-slide {
    height: 360px;
  }
  .footer-subscribe {
    width: 30%;
  }
  .trenings {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .trening-item {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    border: none;
    margin-bottom: 15px;
  }
  .admin-item {
    width: 25%;
  }
  .category-library-wrapper {
    padding: 30px 15px;
  }
  .widget-contacts-item {
    padding: 30px 10% 30px 70px;
  }
  .widget-contacts-item::before {
    left: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .header-logo {
    max-width: 220px;
  }
  .header-left {
    padding-top: 65px;
  }
  .header-bottom {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .header-bottom .btn {
    margin-left: 0;
  }
  .header-search {
    width: 100%;
    margin-bottom: 15px;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .header-email {
    display: none;
  }
  .main-menu > li > a {
    font-size: 0.875rem;
  }
  .submenu {
    width: 311px;
  }
  .section-study::before {
    display: none;
  }
  .section-study-inner {
    padding-bottom: 35px;
  }
  .study-img-1 {
    width: 175px;
    height: 140px;
  }
  .study-img-2 {
    width: 105px;
    height: 84px;
  }
  .study-img-3 {
    width: 168px;
    height: 108px;
  }
  .study-img-4 {
    width: 126px;
    height: 119px;
  }
  .study-img-5 {
    width: 105px;
    height: 98px;
  }
  .section-blog {
    padding-top: 0;
  }
  .section-blog::before {
    top: -75px;
    left: 5%;
  }
  .section-blog::after {
    bottom: -50px;
    right: -10%;
  }
  .blog-section-header {
    margin-top: 0;
  }
  .section-blog-left {
    width: 100%;
  }
  .section-blog-right {
    display: none;
  }
  .blog-slide-main {
    height: 360px;
  }
  .footer-socials li {
    margin-right: 0;
  }
  .footer-socials li + li {
    margin-left: 30px;
  }
  .footer-subscribe {
    position: relative;
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-menu {
    min-height: auto;
  }
  .footer-menu > li {
    display: none;
  }
  .footer-menu > li.has-submenu {
    display: block;
    width: 25%;
  }
  .page:not(.home) .footer-top {
    background: #004680;
  }
  .page .footer-top {
    background: #004680;
  }
  .footer-top {
    background: #004680;
  }
  .page-title-wrapper {
    padding: 20px 15px;
  }
  .page-content {
    padding: 20px 15px;
  }
  .page-content hr {
    margin: 25px -15px;
  }
  .page-content figure.wide {
    margin-left: -15px;
    margin-right: -15px;
  }
  .post-template-single-sidebar .page-content-single-wide {
    padding: 20px 15px;
    overflow: hidden;
  }
  .comments-area {
    padding: 20px 15px;
  }
  .article-container {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .article-container::before {
    display: none;
  }
  .article-container-wide::before {
    display: none;
  }
  .widget {
    padding: 20px 15px 10px;
  }
  .widget ul li {
    margin-left: -5px;
    margin-right: -5px;
  }
  .widget ul a {
    padding: 10px 10px;
  }
  .widget-title {
    padding-bottom: 15px;
  }
  .widget-title::before {
    left: -15px;
    right: -15px;
  }
  .widget.widget_library_news ul li {
    margin-left: -15px;
    margin-right: -15px;
  }
  .widget.widget_library_news ul a {
    padding: 17px 10px 17px 60px;
  }
  .widget.widget_library_news ul a::before {
    left: 15px;
  }
  .content-list li {
    padding: 10px 15px 10px 40px;
  }
  .content-list li::before {
    left: 13px;
  }
  .content-list li::after {
    left: 18px;
  }
  .content-bg-light {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .video-wrapper.wide {
    margin-left: -15px;
    margin-right: -15px;
  }
  .admin-item {
    width: 33.333%;
  }
  .profile-wrapper {
    padding: 0;
  }
  .profile-photo {
    padding: 10px 0;
  }
  .profile-photo .img-wrapper {
    height: 300px;
  }
  .profile-description {
    padding: 10px 0;
  }
  .sorting-inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .sorting-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sorting-wrapper .select-wrapper select {
    padding-top: 5px;
    padding-bottom: 4px;
  }
  .category-library-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .library-item {
    width: 100%;
  }
  .trenings-schedule-table {
    font-size: 0.75rem;
  }
  .trenings-schedule-table th {
    padding: 10px;
  }
  .trenings-schedule-table td {
    padding: 10px;
  }
  .schedule-table-header {
    padding: 10px;
  }
  .region-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .region-list-wrapper > li.cat-item {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .add-profile {
    padding: 15px 20px;
  }
  .volunteer-list-item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .volunteer-list-item .img-wrapper {
    width: 18%;
  }
  .volunteer-name {
    width: 18%;
  }
  .volunteer-experience {
    width: 18%;
  }
  .volunteer-link-wrapper {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eaeaea;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .special-settings-inner .control + .control {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .page-header.fixed .header-logo-mobile {
    margin-bottom: 0;
  }
  .page-header.fixed .header-top {
    padding: 4px 20px;
    border-bottom: 1px solid #f5f5f5;
    -webkit-border-radius: 0;
            border-radius: 0;
  }
  .page-header.fixed .header-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 5px;
    padding-bottom: 0;
  }
  .page-header.fixed .header-bottom .btn {
    display: none;
  }
  .page-header.fixed.show {
    top: 0;
  }
  .page-header.fixed .main-menu > li > a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .header-inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .header-left {
    display: none;
  }
  .header-bottom {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header-logo-mobile {
    display: block;
    margin-bottom: 5px;
  }
  .language-switcher {
    margin-left: 10px;
  }
  .header-search {
    width: 30px;
    height: 30px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
  }
  .header-search .input-search {
    position: absolute;
    padding-left: 20px;
    width: 230px;
    left: -245px;
    top: -5px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border: 2px solid #888;
  }
  .header-search .input-search.search-open {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .hb-search-submit {
    position: relative;
    top: 0;
    left: 0;
    -webkit-background-size: 26px 26px;
            background-size: 26px 26px;
  }
  .main-nav {
    padding-top: 55px;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    bottom: 0;
    overflow-y: auto;
    width: 360px;
    z-index: 150;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .main-nav.active {
    right: 0;
  }
  .close-menu-btn {
    display: block;
  }
  .menu-toggle {
    display: block;
    margin-left: 20px;
    margin-top: -6px;
  }
  .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-menu > li.current-menu-item > a::before, .main-menu > li.current-menu-parent > a::before {
    width: 0;
  }
  .main-menu > li:hover > a::before {
    width: 0;
  }
  .main-menu > li > a {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #005195;
    border-bottom: 1px solid #003E72;
    padding: 12px 60px 12px 20px;
    text-align: right;
  }
  .main-menu > li > a::before {
    bottom: -1px;
  }
  .main-menu > li > a.opened::before {
    width: 100%;
  }
  .main-menu .has-dropdown a span {
    padding-right: 0;
  }
  .main-menu .has-dropdown a span::before {
    right: -40px;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.25s;
    transition: -webkit-transform 0.25s;
    -o-transition: transform 0.25s;
    transition: transform 0.25s;
    transition: transform 0.25s, -webkit-transform 0.25s;
  }
  .main-menu .has-dropdown a.opened span::before {
    -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .submenu {
    display: none;
    width: auto;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    -webkit-border-radius: 0;
            border-radius: 0;
    opacity: 1;
    z-index: 1;
    visibility: visible;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .submenu a {
    padding: 13px 30px;
    text-align: right;
  }
  .submenu-toggle {
    cursor: pointer;
    top: 0;
    right: 0;
    height: 100%;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.08);
    z-index: 1;
  }
  .section-news {
    -webkit-transition: padding 0.25s;
    -o-transition: padding 0.25s;
    transition: padding 0.25s;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-news::before {
    display: none;
  }
  .section-soon {
    background: #fff;
    margin-top: 0;
    padding-top: 40px;
  }
  .section-study::after {
    width: 100%;
  }
  .section-study-title {
    font-size: 1.5rem;
  }
  .section-study-gallery {
    height: 445px;
  }
  .study-img-1 {
    width: 250px;
    height: 200px;
  }
  .study-img-2 {
    width: 150px;
    height: 120px;
  }
  .study-img-3 {
    width: 240px;
    height: 155px;
  }
  .study-img-4 {
    width: 180px;
    height: 170px;
  }
  .study-img-5 {
    width: 150px;
    height: 140px;
  }
  .section-blog::after {
    right: -25%;
  }
  .section-partners {
    padding-bottom: 10px;
  }
  .partners-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .partners-title-wrapper {
    width: 100%;
  }
  .partners {
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
  }
  .partner-item {
    min-width: 150px;
  }
  .footer-top::before {
    display: none;
  }
  .footer-menu {
    display: none;
  }
  .footer-subscribe {
    width: auto;
  }
  .footer-bottom {
    padding-top: 0;
    padding-bottom: 12px;
  }
  .footer-bottom-inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer-socials {
    padding: 20px 0;
    margin-bottom: 20px;
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-socials li + li {
    margin-left: 40px;
  }
  .footer-copy {
    width: 50%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    font-size: 0.625rem;
    text-align: center;
  }
  .footer-copy p {
    font-size: 0.625rem;
  }
  .footer-logo {
    width: 50%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
  .footer-logo a {
    display: inline-block;
    max-width: 135px;
  }
  .footer-logo a img {
    max-width: 135px;
  }
  .admin-item {
    width: 50%;
  }
  .trener-item {
    padding: 20px 20px 10px;
  }
  .center-title-content {
    padding: 15px 30px;
  }
  .center-title-content.decor::before {
    display: none;
  }
  .single-volunteers .profile-photo .img-wrapper,
  .single-trainers .profile-photo .img-wrapper {
    text-align: center;
  }
  .profile-description-wrap {
    border-left: none;
  }
  .contact-form-page-profile {
    margin-top: 0;
  }
  .title-404 {
    font-size: 100px;
  }
  .timer-wrapper {
    padding: 15px 10px;
  }
  .page-title-wrapper.has-search .page-title {
    max-width: none;
    margin-bottom: 15px;
  }
  .page-title-wrapper.has-search .kama_breadcrumbs {
    max-width: none;
  }
  .title-search-wrapper {
    max-width: none;
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding-right: 0;
  }
  .search-wrapper .input-text {
    width: 100%;
    padding-right: 40px;
  }
  .add-profile {
    padding: 15px 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .volunteer-list-item .img-wrapper {
    width: 50%;
  }
  .volunteer-list-item .img-wrapper img {
    max-height: 200px;
  }
  .volunteer-name {
    width: 50%;
  }
  .volunteer-organisation {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eaeaea;
  }
  .volunteer-tags {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eaeaea;
  }
  .volunteer-experience {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eaeaea;
  }
  .page-content h1 {
    font-size: 1.25rem;
  }
  .page-content h2 {
    font-size: 1.125rem;
  }
  .page-content h3 {
    font-size: 1rem;
  }
  .page-content h4 {
    font-size: 0.875rem;
  }
  .page-content h5 {
    font-size: 0.75rem;
  }
  .page-content h6 {
    font-size: 0.65rem;
  }
  .page-content p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .volunteers-search-wrapper {
    display: none;
  }
}

@media only screen and (max-width: 576px) {
  .has-icon {
    padding-left: 0;
    position: relative;
  }
  .has-icon::before {
    content: "";
    display: none;
  }
  .section-blog::before {
    left: 0;
  }
  .section-blog::after {
    right: -50%;
  }
  .footer-top {
    padding: 0;
    background: none;
    border-top: 1px solid #DDE9F2;
  }
  .footer-subscribe {
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 0;
  }
  .footer-subscribe-form .email-wrapper input {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .footer-subscribe-form .subscribe-submit {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .footer-socials {
    border-bottom: 1px solid #DDE9F2;
  }
  .page-gallery.items-2 .img-wrapper {
    width: 48%;
  }
  .page-gallery.items-3 .img-wrapper {
    width: 48%;
  }
  .page-gallery.items-4 .img-wrapper {
    width: 48%;
  }
  .admin-item {
    width: 100%;
  }
  .page-title-wrapper.has-sorting {
    padding-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-title-wrapper.has-sorting .page-title {
    max-width: none;
    margin-bottom: 10px;
  }
  .sorting-wrapper {
    max-width: none;
    padding: 10px 20px 0px;
    margin-right: -15px;
    margin-left: auto;
    position: relative;
  }
  .control-panel {
    position: fixed;
    height: auto;
    -webkit-border-radius: 0;
            border-radius: 0;
  }
  .special-settings-inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 55px;
    padding-bottom: 15px;
  }
  .special-settings-inner .switch_blind {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .special-settings-inner .control + .control {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .page-header::before {
    display: none;
  }
  .header-top {
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
    -webkit-border-radius: 0;
            border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
  .header-bottom {
    padding-right: 0;
  }
  .header-bottom .btn-blue::before {
    content: "";
    height: 1px;
    background-color: #f5f5f5;
    position: absolute;
    top: -10px;
    left: -15px;
    right: -15px;
  }
  .header-bottom .btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px 20px;
  }
  .socials li + li {
    margin-left: 15px;
  }
  .section-study-gallery {
    height: 300px;
  }
  .study-img-1 {
    width: 153px;
    height: 122px;
  }
  .study-img-2 {
    width: 92px;
    height: 73px;
  }
  .study-img-3 {
    width: 146px;
    height: 95px;
  }
  .study-img-4 {
    width: 110px;
    height: 104px;
  }
  .study-img-5 {
    width: 90px;
    height: 85px;
  }
  .testimonial-slider.slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .testimonial-slider .slick-slide {
    margin: 0;
  }
  .testimonial-slider .slick-dots {
    bottom: 25px;
  }
  .testiomonial-slide {
    -webkit-border-radius: 0;
            border-radius: 0;
    padding-bottom: 60px;
  }
  .testiomonial-slide::before {
    bottom: 60px;
  }
  .testimonial-slide-header::before {
    width: auto;
    left: -30px;
    right: -30px;
    background-color: #E0EBF4;
  }
  .partner-item {
    min-width: 135px;
  }
  .page-gallery.items-2 .img-wrapper {
    width: 100%;
  }
  .page-gallery.items-3 .img-wrapper {
    width: 100%;
  }
  .page-gallery.items-4 .img-wrapper {
    width: 100%;
  }
  .gallery.gallery-columns-2 .gallery-item {
    width: 100%;
  }
  .gallery.gallery-columns-3 .gallery-item {
    width: 100%;
  }
  .gallery.gallery-columns-4 .gallery-item {
    width: 100%;
  }
  .library-item {
    padding-left: 50px;
  }
  .library-item::before {
    left: 20px;
  }
  .special-settings-inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .font_size_control {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .font_family_control {
    margin-left: 0;
  }
}

/*==========  Mobile First  ========== */
@media only screen and (min-width: 1921px) {
  html {
    font-size: 24px;
  }
}

/* #slick-slide-control00 {
  line-height: 0 !important;
} */
.slick-dots li button {
  padding-top: 0 !important;
}

.attachment-link-btn {
    font-size: 100%;
    text-align: center;
    text-decoration: none;
    padding: .75em 1em;
    color: #fff;
    display: inline-block;
    font-size: 1.2em;
    line-height: 1.5em;
    background-color: #09c;
    background-image: -webkit-linear-gradient(#009fd4,#09c,#0086b2);
    background-image: -moz-linear-gradient(#009fd4,#09c,#0086b2);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-shadow: 0 -1px 0 rgba(0,0,0,.5);
    box-shadow: 0 2px 4px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.4);
    border: 1px solid #0086b2;
    cursor: pointer;
}