@charset "UTF-8";
/*
 sm     =   small   =   phone-small     = 576px     = 36em;
 md     =   medium  =   phone-large     = 768px     = 48em;
 lg     =   large   =   phone-tablet    = 992px     = 62em;
 xl     =   xlarge  =   desktop         = 1200px    = 75em;
 xxl    =   xxl     =   big desktop     = 1400px    = 87.5em;

 1em = 16px;
*/
/*
When using MAX and Desktop first approach the biggest screen size
shall be on top for right cascading of styles(smallest shall be last)
*/
/*
When using MIN and Mobile first approach the smalles screen size
shall be on top for right cascading of styles(bigest shall be last)
*/
:root {
  --primary: #17191e;
  --secondary: #555;
  --tertiary: #f0f0f0;
  --accent: #f39;
  --textColor: #17191e;
  --linkColor: #005284;
}

* {
  margin: 0;
  padding: 0;
}

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

*:focus:not(:focus-visible) {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

::-moz-selection {
  background-color: var(--accent);
  color: white;
}

::selection {
  background-color: var(--accent);
  color: white;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top, 100px);
}

@media screen and (min-width: 1600px) {
  html {
    font-size: clamp(1rem, calc(1rem + 0.08vw), 1.5rem);
  }
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'Simbal';
  src: url(../fonts/simbal/simbal-regular-webfont.woff2), url(../fonts/simbal/simbal-regular-webfont.woff), url(../fonts/simbal/simbal-regular-webfont.eot), url(../fonts/simbal/simbal-regular-webfont.ttf);
  font-weight: 400 500 700;
  font-variant: normal;
}

body {
  font-family: 'Simbal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: normal;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Simbal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1,
h2,
h3 {
  text-transform: uppercase;
  font-weight: 700;
}

a {
  display: inline-block;
  color: var(--linkColor);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--accent);
}

footer h3 {
  font-size: 0.8rem;
  line-height: 1.125rem;
  letter-spacing: 0.6px;
  word-break: normal;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.5;
  text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  padding-bottom: 0.625rem;
}

.section-title a {
  font-size: 1rem;
  text-transform: none;
  font-weight: 400;
  text-shadow: none;
}

.page-title {
  font-size: 1.7rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand:before {
  content: '';
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  width: 2.81rem;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.81rem;
          flex: 0 0 2.81rem;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background-image: url(../images/lion.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.brand:after {
  content: '';
  display: block;
  margin: 0 0.5rem;
  width: 5px;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5px;
          flex: 0 0 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), color-stop(33.33%, #f2f2f2), color-stop(33.33%, #009b75), color-stop(66.66%, #009b75), color-stop(66.66%, #d01c1f), to(#d01c1f));
  background-image: linear-gradient(#f2f2f2 0%, #f2f2f2 33.33%, #009b75 33.33%, #009b75 66.66%, #d01c1f 66.66%, #d01c1f 100%);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.brand div {
  padding: 0.5rem 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.brand span {
  display: block;
  font-weight: 500;
}

.brand:hover, .brand:focus {
  color: inherit;
}

@media screen and (min-width: 48em) {
  .brand {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
  }
  .brand div {
    padding: 1rem 0;
  }
  .brand:before {
    width: 3.437rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.437rem;
            flex: 0 0 3.437rem;
  }
}

@media screen and (min-width: md) {
  .brand {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
  }
  .brand div {
    padding: 1rem 0;
  }
  .brand:before {
    width: 3.437rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.437rem;
            flex: 0 0 3.437rem;
  }
}

.top-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}

.top-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.top-nav__list li {
  padding: 0 0.5rem;
}

.top-nav__list li:first-of-type {
  border-right: 1px solid var(--primary);
}

.top-nav__list a {
  font-size: 0.875rem;
  text-transform: uppercase;
}

.top-nav__list a.active {
  color: var(--primary);
}

.top-nav__search input {
  width: 155px;
  padding: 5px 5px;
  float: left;
  font-size: 12px;
  border: 0;
  background: #fff;
  border-radius: 3px 0 0 3px;
  border-left: solid 10px #000;
  margin-right: -3px;
}

.top-nav__search button {
  overflow: visible;
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 30px;
  width: 70px;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  background: #000;
  border-radius: 0 3px 3px 0;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.top-nav__search button:before {
  content: '';
  position: absolute;
  border-width: 8px 8px 8px 0;
  border-style: solid solid solid none;
  border-color: transparent #000 transparent;
  top: 7px;
  left: -6px;
}

.top-nav__search button:hover, .top-nav__search button:focus {
  background: #ccc;
  color: #000;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.top-nav__search button:hover:before, .top-nav__search button:focus:before {
  border-right-color: #ccc;
}

.main-nav {
  position: relative;
  background-color: #fff;
  width: 100%;
  display: inline-block;
  margin: 0.5rem 0;
  padding: 5px 0 0 0px;
  -webkit-box-shadow: 200px 0 0 #fff, -200px 0 0 #fff;
          box-shadow: 200px 0 0 #fff, -200px 0 0 #fff;
  text-align: left;
}

.main-nav__list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin: 0 auto;
}

.main-nav__list a {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000;
  display: inline-block;
  padding: 3px 9px;
  margin: 0 0 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main-nav__list a:hover, .main-nav__list a:focus, .main-nav__list a.active {
  color: var(--linkColor);
}

.main-nav__list li {
  padding: 0 0.9375rem 0 0.625rem;
}

.main-nav__sublist {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.main-nav__sublist a {
  color: var(--linkColor);
  padding-right: 2rem;
}

.main-nav__sublist a:hover, .main-nav__sublist a:focus, .main-nav__sublist a.active {
  color: var(--accent);
}

.navbar-toggler {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/mobile-menu.png);
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
}

@media screen and (min-width: 48em) {
  .main-nav {
    text-align: center;
  }
  .main-nav__list a {
    font-size: 1.2rem;
  }
  .main-nav__sublist {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    min-width: 40%;
    padding: 2rem 1.5rem 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1;
  }
  .main-nav__sublist li:not(:first-child) {
    border-left: 1px dotted #999;
  }
  .main-nav__sublist:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 20px;
    width: 100%;
    background: center top no-repeat url(../images/shadow_down.png);
    background-color: transparent;
    opacity: 0.8;
  }
  .main-nav__list li:hover > .main-nav__sublist, .main-nav__list li:focus > .main-nav__sublist, .main-nav__list li:focus-within > .main-nav__sublist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: md) {
  .main-nav {
    text-align: center;
  }
  .main-nav__list a {
    font-size: 1.2rem;
  }
  .main-nav__sublist {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    min-width: 40%;
    padding: 2rem 1.5rem 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1;
  }
  .main-nav__sublist li:not(:first-child) {
    border-left: 1px dotted #999;
  }
  .main-nav__sublist:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 20px;
    width: 100%;
    background: center top no-repeat url(../images/shadow_down.png);
    background-color: transparent;
    opacity: 0.8;
  }
  .main-nav__list li:hover > .main-nav__sublist, .main-nav__list li:focus > .main-nav__sublist, .main-nav__list li:focus-within > .main-nav__sublist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slider {
  margin: 0.5rem 0;
}

.slider .carousel {
  overflow: hidden;
}

.slider .carousel-item {
  height: 450px;
  overflow: hidden;
}

.slider .carousel-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider .carousel-caption {
  top: unset;
  right: 0;
  left: 0;
  bottom: 0;
  display: block !important;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: left;
}

.slider .carousel-caption h3 {
  font-size: 1.3rem;
}

.slider .carousel-caption h3 a {
  color: #19b7f1;
}

.slider .carousel-caption h3 a:hover, .slider .carousel-caption h3 a:focus {
  color: var(--accent);
}

.slider .carousel-caption p {
  font-size: 0.875rem;
}

@media screen and (min-width: 48em) {
  .slider .carousel-item {
    height: 700px;
  }
  .slider .carousel-caption {
    position: absolute;
    top: 0;
    right: 5%;
    left: unset;
    padding: 5rem 2rem;
  }
  .slider .carousel-caption h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: md) {
  .slider .carousel-item {
    height: 700px;
  }
  .slider .carousel-caption {
    position: absolute;
    top: 0;
    right: 5%;
    left: unset;
    padding: 5rem 2rem;
  }
  .slider .carousel-caption h3 {
    font-size: 2rem;
  }
}

.breadcrumb {
  border-bottom: 1px dotted #999;
}

.breadcrumb ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 0.3125rem;
  padding-bottom: 0.625rem;
}

.breadcrumb ul a {
  display: inline-block;
  font-size: 0.875rem;
  padding-top: 0.625rem;
  text-transform: uppercase;
}

.breadcrumb ul li:not(:last-of-type):after {
  content: ' / ';
  padding-top: 0.625rem;
  margin-left: 0.3125rem;
}

.news-item,
.category-item {
  border-top: 1px dotted #999;
  padding: 1rem 0;
  clear: both;
}

.news-item__title,
.category-item__title {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: none;
}
.news-item__title > a { display: inline; }

.news-item__meta,
.category-item__meta {
  display: block;
  margin: 0.5rem 0;
  margin-left: -5px;
  padding-left: 5px;
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1;
  -webkit-box-shadow: -25px 0px 0px #ebebeb;
          box-shadow: -25px 0px 0px #ebebeb;
}

.news-item__thumb,
.category-item__thumb {
  display: inline-block;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  float: left;
  width: 150px;
}

.news-item__listing,
.category-item__listing {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.news-item__listing .news-item__title,
.category-item__listing .news-item__title {
  text-transform: uppercase;
}

.news-single p {
  text-indent: 3rem;
}

.news-related {
  margin: 1rem 0;
}

.news-related .news-item {
  border-top: none;
}

.news-related .news-item img {
  display: block;
  padding: 0;
  margin-bottom: 1rem;
  width: 100%;
  float: unset;
}

.category-item {
  position: relative;
  padding-left: 1.5rem;
}

.category-item:before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 0;
  display: block;
  width: 5px;
  height: calc(100% - 2rem);
  background-color: var(--tertiary);
}

.category-item__title {
  text-transform: uppercase;
}

.category-description__toggle.show-more {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.category-description__toggle.show-more:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 150px;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, white), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(0deg, white 10%, rgba(255, 255, 255, 0));
}

.show-btn {
  display: none;
}

.show-btn[aria-expanded='false'] {
  background-color: var(--tertiary);
}

.show-btn[aria-expanded='true'] {
  background-color: var(--tertiary);
}

html[lang*='bg'] .category-description > .show-btn[aria-expanded='false']:before {
  content: 'Покажи повече';
}

html[lang*='bg'] .category-description > .show-btn[aria-expanded='true']:before {
  content: 'Покажи по-малко';
}

html[lang*='en'] .category-description > .show-btn[aria-expanded='false']:before {
  content: 'Show more';
}

html[lang*='en'] .category-description > .show-btn[aria-expanded='true']:before {
  content: 'Show less';
}

.partner {
  display: block;
  background-color: white;
  -webkit-box-shadow: 0px 0px 5px #ebebeb;
          box-shadow: 0px 0px 5px #ebebeb;
  padding: 5px;
  margin: 1rem 0;
  width: 100%;
  aspect-ratio: 1/1;
}

.partner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.social-link {
  display: block;
  width: 32px;
  height: 32px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}

.social-link--facebook {
  background-image: url(../images/facebook.svg);
}

.social-link--youtube {
  background-image: url(../images/youtube.svg);
}

.social-link--twitter {
  background-image: url(../images/twitter.svg);
}

.social-link--issuu {
  background-image: url(../images/issuu.png);
  background-size: cover;
  background-position: -5px -5px;
  width: 42px;
  height: 42px;
}

.social-link:hover, .social-link:focus {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.social-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 1rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.social-link__list li {
  padding: 0.25rem;
}

.pagination .page-link {
  margin: 0.25rem;
  color: var(--linkColor);
  font-size: 0.875rem;
  border-color: transparent;
  background-color: var(--tertiary);
}

.pagination .page-link.active, .pagination .page-link:hover, .pagination .page-link:focus {
  color: var(--accent);
}

.media-container {
  margin-bottom: 2rem;
}

.media-container__listing {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.media-container__item {
  width: 12.5%;
  min-width: 110px;
  padding: 5px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 5px #ebebeb;
          box-shadow: 0px 0px 5px #ebebeb;
}

.media-container__item a {
  display: inline-block;
}

.media-container__item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-container__item:first-of-type {
  width: 100%;
}

.media-container__item:first-of-type img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.gallery-item {
  cursor: pointer;
  color: var(--linkColor);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-item__title {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.gallery-item__title span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-transform: none;
  line-height: 1.1;
}

.gallery-item__listing {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.framebox-image {
  border-radius: 0 !important;
  border: 5px solid white;
}

.gallery-search {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 0.5rem;
  background: rgba(100, 100, 100, 0.1);
}

.gallery-search button {
  height: 100%;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  background-color: var(--linkColor);
}

.document-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.document-item span {
  display: inline-block;
  padding-left: 0.625rem;
  font-size: 0.65rem;
  font-weight: 700;
}

.document-item:before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.625rem;
  background-image: url(../images/document.svg);
  background-size: contain;
}

.document-item--pdf::before {
  background-image: url(../images/adobe.svg);
}

.document-item--word::before {
  background-image: url(../images/word.svg);
}

.document-item__list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.document-item__list li {
  padding: 0.2rem 0;
}

body {
  background-image: url(../images/back_5px.gif);
}

header {
  border-top: 10px solid var(--primary);
}

@media screen and (min-width: 48em) {
  .navbar {
    display: block;
  }
}

@media screen and (min-width: md) {
  .navbar {
    display: block;
  }
}

.section {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.65);
}

.shadow-bottom {
  position: relative;
}

.shadow-bottom:after {
  content: '';
  position: absolute;
  bottom: -1.3rem;
  left: 0;
  display: block;
  height: 20px;
  width: 100%;
  background: center top no-repeat url(../images/shadow_down.png);
  opacity: 0.2;
}

.shadow-top {
  position: relative;
}

.shadow-top:before {
  content: '';
  top: -20px;
  position: absolute;
  left: 0;
  display: block;
  height: 20px;
  width: 100%;
  background: center top no-repeat url(../images/shadow_top.png);
  opacity: 0.2;
}

.border-top {
  border-top: 10px solid var(--primary) !important;
}

.border-bottom-dotted {
  border-bottom: 1px dotted #999;
}

.header-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background-image: url(../images/background/000.jpg);
  background-image: var(--bckgrndImgUrl);
}

.copyrights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.copyrights a,
.copyrights p {
  display: block;
  margin-bottom: 0;
}

.copyrights::before {
  content: '©';
  font-size: 1.5rem;
  font-weight: 800;
  height: 100%;
  margin-right: 10px;
}

.sidebar .news-item__thumb {
  width: 100%;
  max-height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  float: unset;
}
/*# sourceMappingURL=main.css.map */