@font-face {
  font-family: Cutest;
  src: url(../fonts/cutest-light.woff2) format("woff2"),
    url(../fonts/cutest-light.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cutest;
  src: url(../fonts/cutest-regular.woff2) format("woff2"),
    url(../fonts/cutest-regular.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cutest;
  src: url(../fonts/cutest-semibold.woff2) format("woff2"),
    url(../fonts/cutest-semibold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* BASIC */
:root {
  --bg: #f9f9f9;
  --bg2: #fff;
  --text: #000;
  --text1: #fff;
  --color1: #057a91;
  --color2: #5e56bc;
  --light: rgb(255 255 255 / 10%);
  --light2: rgb(255 255 255 / 30%);
  --dark: rgb(0 0 0 / 30%);
  --radius: 15px;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: normal;
  font-family: "Cutest", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
}
/* HEADER */
header {
  position: relative;
  background: #057a91;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  z-index: 7;
  box-shadow: 1px 1px 15px #c0c0c0d5;
  transition-duration: 0.5s;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.header-logo-span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  color: #d3d3d3;
}

@media (max-width: 460px) {
  .header-logo {
    font-size: 24px;
  }
}
@media (max-width: 390px) {
  .header-logo {
    font-size: 20px;
  }
  .header-logo-span {
    font-size: 10px;
  }
}
.header-user {
  margin-right: 15px;
  margin-left: auto;
}
.header-menu {
  display: flex;
  align-items: center;

  margin-left: auto;
}

@media (max-width: 1100px) {
  .header-menu {
    display: none;
  }
}

.header-menu > a,
.header-menu_sub > a {
  display: inline-block;
  padding: 15px 12px;
}

.menu-link:after {
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  background-color: #fdcf41;
  transition: width 0.4s ease-in-out;
}
.menu-link {
  position: relative;
}
.menu-link:hover:after,
.menu-link:focus:after {
  width: 100%;
}
.product-title {
  position: relative;
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 1;
}
.product-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 53px;
  height: 3px;
  background: #057a91;
  z-index: -1;
}
.per-product-title {
  position: relative;
}
.per-product-title::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 15px;
  width: 53px;
  height: 3px;
  background: #fff;
  z-index: 1;
}
/* HEADER MENU SUB 0.3 */
.header-menu_sub {
  position: relative;
}

.header-menu_sub div a {
  display: inline-block;
  padding: 10px 15px;
  width: 100%;
}

.header-menu_sub div a:hover {
  background: var(--light);
}

.header-menu_sub > a i {
  float: right;
  margin: 2px 8px;
}

.header-menu_sub > div {
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  column-count: 2;
  background: var(--bg2);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  padding: 20px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 8;
}

@media (min-width: 860px) {
  .header-menu div:hover.header-menu_sub div {
    visibility: visible;
    opacity: 1;
  }
}

.header-menu_sub > div:before {
  content: "";
  position: absolute;
  background: var(--bg2);
  top: -5px;
  left: 10%;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  z-index: -1;
}

/* MOB MENU 0.3 */
.mobmenu-btn {
  display: none;
}

@media (max-width: 1100px) {
  .mobmenu-btn {
    display: inline-block;
    background: var(--bg2);
    color: var(--color2);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    margin-left: 10px;
  }

  .mobmenu-btn.active:before {
    content: "\f00d";
  }

  .mobmenu-btn.active {
    z-index: 9;
  }

  .mobmenu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    top: 0;
    left: -300px;
    width: 240px;
    height: 100%;
    margin-left: 0;
    background: var(--bg);
    transition: 0.3s;
    overflow-y: auto;
    z-index: 9;
  }

  .mobmenu.active {
    display: flex;
    align-items: flex-start;
    left: 0;
    padding: 20px;
    box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
    border-radius: 0;
  }

  .mobmenu a + div,
  .mobmenu a {
    display: block;
    width: 100%;
    color: #222;
  }

  .mobmenu div > div {
    display: none;
    width: 100%;
    top: 0;
    column-count: 1;
  }

  .mobmenu div > a.active + div {
    position: relative;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* HEADER SEARCH */
.header-search {
  display: flex;
  align-items: center;
  background: var(--bg);
  border-radius: 5px;
  transition: 0.3s;
  z-index: 8;
}

@media (max-width: 860px) {
  .header-search {
    margin-left: auto;
    margin-right: 10px;
  }

  .header-search.active {
    position: fixed;
    background: var(--bg2);
    padding: 10px;
    border-radius: 0;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
  }
}

.header-search_icon,
.header-search_voice {
  display: inline-block;
  color: #afafaf;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
}

.header-search_voice {
  background: var(--color1);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  color: var(--text1);
  border-radius: 5px;
  opacity: 1;
}

@media (max-width: 860px) {
  .header-search_voice {
    display: none;
  }
}

.header-search input {
  background: inherit;
  color: var(--text);
  padding: 0;
  border-radius: 0;
  width: auto;
  height: inherit;
  line-height: inherit;
  font-weight: 400;
}

@media (max-width: 860px) {
  .header-search input {
    display: none;
  }
}

.header-search input::placeholder {
  color: var(--dark);
}

.header-search.active input,
.header-search.active .header-search_close {
  display: inline-block;
}

.header-search_close {
  display: none;
}

@media (max-width: 860px) {
  .header-search_close {
    display: none;
    position: absolute;
    opacity: 0.6;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 25px;
    text-align: center;
  }
}

/* HEADER USER */
.header-user {
}

.header-user > img {
  display: inline-block;
  border: 1px solid var(--light);
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
}

.header-user > a .fa-user {
  display: inline-block;
  background: var(--color1);
  color: var(--text1);
  backdrop-filter: blur(50px);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: var(--radius);
  cursor: pointer;
}

.header-user > a i:last-child {
  margin-left: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.header-user.active > a i:last-child {
  transform: rotate(180deg);
}

.header-user > div {
  position: absolute;
  background: var(--bg2);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  border-radius: var(--radius);
  width: 220px;
  top: 50px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  overflow: hidden;
  z-index: 5;
  color: #094b79;
}

.header-user.active > div {
  visibility: visible;
  opacity: 1;
  transform: translateY(10px);
}

.header-user_av {
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid var(--dark);
}

.header-user_av > img {
  border: 1px solid var(--dark);
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.header-user_av > span {
  flex: 1 1 0%;
  max-width: 100%;
  min-width: 50px;
  margin-left: 10px;
  font-weight: bold;
}

.header-user_av > span span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
}

.header-user_menu a {
  display: block;
  padding: 8px 15px;
}

.header-user_menu a:hover {
  background: var(--color1);
  color: var(--text1);
}

.header-user_menu a i {
  margin-right: 10px;
  opacity: 0.8;
}

/* MODAL LOGIN */
.modal-login > a {
  display: inline-block;
  background: var(--light);
  /* padding: 10px 20px; */
  border-radius: var(--radius);
  cursor: pointer;
}

.modal-login > a i {
  margin-right: 10px;
  margin-top: 1px;
  float: left;
}
.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group {
  position: relative;
  line-height: 3;
  z-index: 4 !important;
  white-space: nowrap;
}
.modal-login form {
  margin: auto;
  display: none;
  position: fixed;
  min-width: 500px;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 0 0 5000px var(--color1);
  padding: 40px 80px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 9;
}

@media (max-width: 860px) {
  .modal-login form {
    min-width: 100%;
    padding: 30px;
    border-radius: 0;
  }
}

.modal-login form > i {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color1);
  color: var(--text1);
  border-radius: var(--radius);
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
}

.modal-login form > i:hover {
  background: var(--color2);
}

.modal-login_lost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4e4e4e;
  margin-bottom: 20px;
}

.modal-login_lost a:hover {
  color: var(--color1);
}

.modal-login_btn a {
  background: #130d4e;
  margin-left: 20px;
}

/* MAIN, ASIDE */
main {
  flex: 1 1 0%;
  max-width: 100%;
  min-width: 50px;
}

aside {
  display: block;
  width: 350px;
  margin-left: 40px;
}

@media (max-width: 860px) {
  aside {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

/* BREAK NEWS */
.breaknews {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  top: 0;
  height: unset;
  background: var(--color1);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  padding: 10px;
  font-weight: 600;
  transition: 0.3s;
  z-index: 5;
}

.breaknews.fixed {
  visibility: visible;
  opacity: 1;
  height: 50px;
}

@media (max-width: 860px) {
  .breaknews.fixed {
    height: auto;
  }
}

.breaknews-item span {
  position: relative;
  display: inline-block;
  background: var(--light);
  color: var(--text1);
  padding: 5px 15px;
  border-radius: 10px;
  margin-right: 20px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .breaknews-item span {
    margin-right: 10px;
    font-size: 12px;
  }
}

.breaknews-item span:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #f43;
  animation: pulse 1.25s infinite;
  will-change: transform, box-shadow;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 68, 51, 0.6);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px transparent;
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 transparent;
  }
}

.breaknews-item a {
  color: var(--text1);
  font-size: 14px;
}

@media (max-width: 860px) {
  .breaknews-item a {
    font-size: 14px;
  }
}

.breaknews-item a:hover {
  border-bottom: 1px dotted #fff;
}

/* POPULAR BLOCK */
.per-popular {
  margin-top: 30px;
}

.per-popular > .per-popular_item:before {
  content: "";
  position: absolute;
  background: linear-gradient(360deg, rgb(34 32 32 / 90%) 5%, transparent 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.per-popular > .per-popular_item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.per-popular > .per-popular_item:hover.per-popular_item > img {
  transform: scale(1.05);
}

.per-popular > .per-popular_item .per-popular_content {
  position: absolute;
  bottom: 0;
  padding: 40px;
  color: var(--text1);
  z-index: 2;
  transition: 0.3s;
}

@media (max-width: 860px) {
  .per-popular > .per-popular_item .per-popular_content {
    padding: 30px;
  }
}

.per-popular > .per-popular_item:hover.per-popular_item .per-popular_content {
  transform: translateY(-2%);
}

.per-popular > .per-popular_item .per-popular_content > a {
  color: var(--text1);
}

.per-popular_item {
  position: relative;
  background: var(--bg2);
  border-radius: 20px;
  overflow: hidden;
}

.per-popular_item:nth-child(1):not(.per-popular > div) {
  display: none;
}

.per-popular_item:nth-child(1):not(.per-popular_three .per-popular_item) {
  height: 520px;
}

@media (max-width: 860px) {
  .per-popular_item:nth-child(1):not(.per-popular_three .per-popular_item) {
    height: 350px;
  }
}

.per-popular_item + .per-popular_item:not(.per-popular_item:nth-child(2)) {
  margin-top: 20px;
}

.per-popular_item > img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}

@media (max-width: 860px) {
  .per-popular_item > img {
    width: 100%;
    height: 250px;
  }
}

.per-popular_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
}

.per-popular_content h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.per-popular_content > a:hover {
  color: var(--color1);
}

.per-popular_content p {
  font-size: 14px;
  line-height: 1.5;
}

.per-popular_meta {
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.per-popular_meta a {
  display: inline-block;
  background: rgb(41 194 158 / 15%);
  color: #29c29e;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
}

.per-popular_meta a:first-child {
  background: rgb(255 241 242);
  color: #f03c3c;
  margin-right: 10px;
}

.per-popular_meta a i {
  margin-right: 10px;
}

.per-popular_user {
  align-items: center;
  font-weight: 500;
  margin-left: auto;
}

.per-popular_user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

/* LENTA NOVOSTI */
.per-lenta_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  padding: 20px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .per-lenta_item {
    min-width: 250px !important;
  }
}

aside .per-lenta_item + .per-lenta_item {
  margin-top: 10px;
}

.per-lenta_item:before {
  content: "";
  position: absolute;
  background: linear-gradient(360deg, rgb(34 32 32 / 90%) 5%, transparent 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.per-lenta_user {
  align-items: center;
  font-weight: 500;
  margin-bottom: auto;
}

.per-lenta_user img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.per-lenta_user span {
  font-size: 14px;
  font-weight: bold;
}

.per-lenta_item h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.3s;
  margin-bottom: 0;
}

.per-lenta_item:hover.per-lenta_item h4 {
  transform: translateY(-2%);
}

.per-lenta_item > span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
}

.per-lenta_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: 0.3s;
}

.per-lenta_item:hover .per-lenta_bg {
  transform: scale(1.05);
}

/* TOP FIVE */
.per-top5 {
  background: var(--color1);

  overflow: hidden;
}

.per-top5 h2 {
  padding: 20px 30px;
  margin-bottom: 0;
  color: var(--text1);
}

.per-top5_items {
  background: var(--bg2);
  padding: 20px 30px;
  border-radius: 0px 15px 0 0;
}

.per-top5_item {
}

.per-top5_item + div {
  margin-top: 20px;
}

.per-top5_item img {
  width: 100px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 20px;
}

.per-top5_item a {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.per-top5_item a:hover {
  color: var(--color1);
}

.per-top5_item span {
  display: block;
  opacity: 0.6;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
}

/* PER SHORT */
.per-short_item {
  position: relative;
  background: var(--bg2);
  border-radius: 10px 20px 20px 10px;
  margin-bottom: 30px;
}

@media (max-width: 860px) {
  .page-blok-left {
    padding: 0px !important;
  }
}

.per-short_item > img {
  width: 300px;
  height: 282px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 860px) {
  .per-short_item > img {
    width: 100%;
    height: 250px;
  }
}

.per-short_content {
  padding: 20px;
}

.per-short_content h3 {
  margin-bottom: 10px;
}

.per-short_content > a:hover {
  color: var(--color1);
}

.per-short_meta {
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.per-short_meta a {
  display: inline-block;
  background: rgb(41 194 158 / 15%);
  color: #057a91;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
}
.per-short_meta a:hover {
  background: #057a91;
  color: #fff;
}

.per-short_date {
  margin-left: 20px;
}

@media (max-width: 860px) {
  .per-short_date {
    display: none;
  }
}

.per-short_meta a > i,
.per-short_date > i {
  margin-right: 5px;
}

/* PER FULL */
.per-full {
  background: var(--bg2);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .per-full {
    width: 100vw;
    margin-left: -5vw;
    border-radius: 0;
  }
}

.per-full > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.per-full_title {
  border-bottom: 2px solid var(--bg);
  padding: 20px 30px;
}

.per-full_meta {
  align-items: center;
  justify-content: space-between;
}

.per-full_meta .per-popular_user {
  margin-left: 20px;
  margin-right: auto;
}

@media (max-width: 860px) {
  .per-full_meta .per-popular_user {
    display: none;
  }
}

.per-full_meta .fa-heart,
.per-full_meta .fa-comment {
  display: inline-block;
  background: rgb(41 194 158 / 15%);
  color: #29c29e;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
}

.per-full_meta .fa-heart {
  background: rgb(255 241 242);
  color: #f03c3c;
  margin-left: auto;
  margin-right: 10px;
}

.per-full_meta .fa-heart span,
.per-full_meta .fa-comment span {
  margin-left: 10px;
}

.per-full_content {
  padding: 20px 30px;
}

.per-full_tags {
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--bg);
  padding: 20px 30px;
}

.per-full_tags .per-popular_user {
  margin-left: 0;
}

.per-full_tags > span {
  color: #444;
  margin-left: 20px;
}

.per-full_tags > span i {
  margin-right: 10px;
}

.per-full_tags .ya-share2 {
  margin-left: auto;
}

@media (max-width: 860px) {
  .per-full_tags .ya-share2 {
    margin-left: auto;
    margin-top: 20px;
  }
}

/* PER COMM */
.per-full_comm [type="submit"] {
  margin: 20px 0;
}

/* PRIVILEGIA */
.priv-verf {
  font-size: 12px;
  margin-top: 4px;
  margin-left: 5px;
  color: #0074ff;
}

/* BAGDES */
.badge {
  display: inline-block;
  background-color: #f5f8fa;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.badge-red {
  color: #ef3d3d;
}

.badge-green {
  color: #008b8b;
}

.badge-blue {
  color: #3d55ef;
}
.between_news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -20px 0 20px;
}
.prev_link {
  background: #9aadc6
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDc5Mi4wODIgNzkyLjA4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGc+PHBhdGggZD0ibTMxNy44OTYgMzk2LjAyNCAzMDQuNzQ5LTI3Ni40NjdjMjcuMzYtMjcuMzYgMjcuMzYtNzEuNjc3IDAtOTkuMDM3cy03MS42NzctMjcuMzYtOTkuMDM2IDBMMTY5LjExIDM0Mi4xNjFjLTE0Ljc4MyAxNC43ODMtMjEuMzAyIDM0LjUzOC0yMC4wODQgNTMuODk3LTEuMjE4IDE5LjM1OSA1LjMwMSAzOS4xMTQgMjAuMDg0IDUzLjg5N2wzNTQuNTMxIDMyMS42MDZjMjcuMzYgMjcuMzYgNzEuNjc3IDI3LjM2IDk5LjAzNyAwczI3LjM2LTcxLjY3NyAwLTk5LjAzNkwzMTcuODk2IDM5Ni4wMjR6IiBmaWxsPSIjZmZmZmZmIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIj48L3BhdGg+PC9nPjwvc3ZnPg==")
    no-repeat center center;
  background-size: 20px;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 4px;
}
.next_link {
  background: #9aadc6
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDc5Mi4wODIgNzkyLjA4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGcgdHJhbnNmb3JtPSJtYXRyaXgoLTEsMCwwLDEsNzkyLjA4MDQ0NDMzNTkzNzUsMCkiPjxwYXRoIGQ9Im0zMTcuODk2IDM5Ni4wMjQgMzA0Ljc0OS0yNzYuNDY3YzI3LjM2LTI3LjM2IDI3LjM2LTcxLjY3NyAwLTk5LjAzN3MtNzEuNjc3LTI3LjM2LTk5LjAzNiAwTDE2OS4xMSAzNDIuMTYxYy0xNC43ODMgMTQuNzgzLTIxLjMwMiAzNC41MzgtMjAuMDg0IDUzLjg5Ny0xLjIxOCAxOS4zNTkgNS4zMDEgMzkuMTE0IDIwLjA4NCA1My44OTdsMzU0LjUzMSAzMjEuNjA2YzI3LjM2IDI3LjM2IDcxLjY3NyAyNy4zNiA5OS4wMzcgMHMyNy4zNi03MS42NzcgMC05OS4wMzZMMzE3Ljg5NiAzOTYuMDI0eiIgZmlsbD0iI2ZmZmZmZiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9IiI+PC9wYXRoPjwvZz48L3N2Zz4=")
    no-repeat center center;
  background-size: 20px;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 4px;
}
.next_link:hover,
.prev_link:hover {
  background-color: var(--color1);
}

/* FOOTER */
footer {
  position: relative;
  background: #057a91;
  padding: 30px 0;
  color: #c4c2c2;
}
.hr-footer {
  border: none;
  border-top: 1px #c2c2d4 solid;
  display: block;
  margin: 20px auto;
  width: 80%;
}
.footer-support {
  font-size: 12px;
}
footer > img {
  position: absolute;
  top: 0;
  left: 0;
}

footer .container {
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.footer-logo {
  color: var(--text);
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .footer-logo {
    display: none;
  }
}

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

.footer-menu + .footer-menu {
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
  opacity: 0.5;
}

.footer-menu a {
  font-weight: 500;
}

.footer-menu a:hover {
  color: var(--color1);
}

.footer-menu a + a {
  margin-left: 30px;
}

.footer-support span:first-child {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
  opacity: 0.5;
  margin-bottom: 5px;
}

@media (max-width: 860px) {
  .footer-support span:first-child {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
  }
}
.logo-prof {
  margin-left: 10px;
  width: 90px;
  position: relative;
  top: 4px;
}

article.page a img {
  margin-right: 30px;
}
.page {
  background-color: #fff;
  padding: 30px 20px;
}

.page-kontakt-title {
  font-size: 16px;

  margin-bottom: 30px;
  margin-top: 30px;
}
.page-kontakt {
  border-bottom: 1px solid #d2dde38a;
}
.page-kontakt-tel {
  display: flex;
  margin-bottom: 20px;
}
.page-kontakt-name {
  font-weight: 600;

  margin-right: auto;
  color: #057a91;
}

.page-pro span {
  display: block;
  font-size: 13px;
  text-align: center;
}

.page h1 {
  font-weight: 600;
  margin-bottom: 30px;
}
.page-h1 h1 {
  text-align: center;
  font-size: 18px;
}

.hr {
  border: none;
  border-top: 3px #c2c2d4 solid;
  display: block;
  margin: 10px auto;
  width: 80%;
}
.page-pro-text li {
  list-style: none;
  margin-bottom: 5px;
}
.page-pro-text-b {
  font-weight: 600;
}
#celena_content p:not(:last-child) {
  margin-bottom: 15px !important;
}
.page-pro-text {
  text-indent: 1.5em;
}
.page-adress {
  margin-top: 30px;
}
@media (max-width: 560px) {
  .page-kontakt-name {
    margin-right: auto !important;
  }
}
.page-blok-left {
  width: 650px;
  padding: 20px;
  border-radius: 5px;
}
.page-blok {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-blok-graf {
  width: 450px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
}
.page-blok-graf span {
  display: block;
  font-size: 18px;
}
.page-blok-graf-item {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.blok-graf-title {
  font-weight: 600;

  color: #057a91;
}
span.blok-graf-f {
  font-size: 16px;
  margin-bottom: 15px;
}
.copirate {
  margin: auto;
}
a.footer-link:hover {
  color: beige;
}

.politika {
  padding: 20px 30px;
  text-indent: 1.5em;
}
img.img-pdf {
  width: 100px;
  height: 100px;
}
.per-short_item:hover {
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%);
  text-decoration: none;
}
.h2-text {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.per-full_content {
  text-indent: 1.5em;
}
i.fa-regular.fa-calendar {
  margin-right: 10px;
}
.text_bottom {
  margin-top: 30px;
}
.header-bg {
  position: relative;
  height: 200px;
  background: url(../images/bg2.jpg) top center no-repeat fixed;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repear;
  background-size: cover;
}
.slide {
  width: 100%;
  height: 100vh;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repear;
  background-size: cover;
}
.header-bg:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #21212185;
}
.slide:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #21212185;
}
.slide-blok {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;

  color: #fff;
  padding-top: 100px;
}

.main-bg {
  position: relative;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  height: 100vh;
  background: url(../images/bg2.jpg) top center no-repeat fixed;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repear;
  background-size: cover;
}
.intro:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #21212185;
}
.intro-title {
  text-align: center;
  margin: 0 0 30px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}
.intro-iner {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}
.intro-sub-title {
  font-size: 22px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.banner-q {
  margin: 18px auto 10px auto;
  width: 38px;
  height: 58px;
}
.title_r h1 {
    font-size: 22px;
}
.banner-q span {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: rotate(45deg);
  margin: -16px 0;
  animation: banner-q 2s infinite;
}
.banner-q span:nth-child(2) {
  animation-delay: -0.2s;
}
.banner-q span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes banner-q {
  0% {
    opacity: 0;
    transform: translate(0, -20px) rotate(45deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, 20px) rotate(45deg);
  }
}
