@charset "UTF-8";
:root {
  /* colors */
  --color-bg: #f8f8f8;
  --color-svetla: #EDF2F6;
  --color-modra: #0066CC;
  --color-oranzova: #FF9800;
  --color-accent: #24a2e8;
  --color-dark: #101126;
  --color-linka: #d6deec;
  --color-zelena: #2B9348;
  /* sizes */
  --radius: 10px;
  --width-desktop: 1400px;
  --width-notebook: 90%;
  --width-tablet: 94%;
  --width-mobile: 94%;
  --width-admin: 840px;
  --gap: 40px;
}

/* sizes */
/* breakpoints */
/* colors */
/* mixins */
/* layouts */
.layout-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 40px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .layout-1 {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .layout-1 {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .layout-1 {
    width: 94%;
  }
}

.layout-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 80px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .layout-1-1 {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .layout-1-1 {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .layout-1-1 {
    grid-template-columns: 1fr;
    width: 94%;
  }
}

.layout-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 80px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .layout-2-1 {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .layout-2-1 {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .layout-2-1 {
    grid-template-columns: 1fr;
    width: 94%;
  }
}

.layout-top {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-column-gap: 80px;
  width: 1400px;
  margin: 0 auto;
}

.layout-side {
  display: grid;
  grid-template-columns: 1fr 250px;
  grid-column-gap: 100px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .layout-side {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .layout-side {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .layout-side {
    width: 94%;
    grid-template-columns: 1fr;
  }
}

.layout-side-left {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-column-gap: 100px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .layout-side-left {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .layout-side-left {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .layout-side-left {
    width: 94%;
    grid-template-columns: 1fr;
  }
}

/* ALERT BAR */
.alert-bar {
  background: #FF9800;
  text-align: center;
}
.alert-bar a {
  color: white;
  text-decoration: underline;
}
.alert-bar a:hover {
  color: #101126;
}
.alert-bar p {
  margin: 0;
}
.alert-bar .text {
  color: white;
  padding: 10px 0;
  margin: 0;
  display: inline-block;
}

/*  HEADER  */
header {
  width: 100%;
  z-index: 9999;
  border-bottom: 0px solid silver;
  background: white;
  position: relative;
}
header .header-layout {
  width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  height: 120px;
  position: relative;
  z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1349px) {
  header .header-layout {
    width: var(--width-notebook);
    height: 120px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  header .header-layout {
    width: var(--width-tablet);
    grid-template-columns: 1fr 50px;
    gap: 20px;
    height: 80px;
  }
}
@media (max-width: 899px) {
  header .header-layout {
    width: var(--width-mobile);
    grid-template-columns: 1fr 50px;
    gap: 10px;
    height: 80px;
  }
}
header .header-logo {
  opacity: 1;
  transition: 0.3s;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}
header .header-logo a {
  color: #0066CC;
  text-decoration: none;
  display: inline-flex;
}
header .header-logo img {
  width: 250px;
  height: auto;
}
@media (max-width: 899px) {
  header .menu-separator {
    display: none !important;
  }
}
header .header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 40px;
}
header .header-nav ul li {
  position: relative;
  display: flex;
  align-items: center;
}
header .header-nav ul li a {
  color: #101126;
  padding: 0px;
  font-size: 17px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}
header .header-nav ul li a:hover {
  text-decoration: underline;
}
header .header-nav ul .btn-cta {
  background: #FF9800;
  padding: 7px 15px;
  border-radius: 10px;
}
header .header-nav ul .btn-cta a {
  color: white !important;
}
@media (min-width: 900px) and (max-width: 1199px) {
  header .header-nav {
    display: none;
  }
}
@media (max-width: 899px) {
  header .header-nav {
    display: none;
  }
}
header .menu-main_menu-container {
  width: 100%;
}

.offset {
  height: 0;
  display: block;
}

.header-mobile-nav {
  display: none;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 899px) {
  .header-mobile-nav {
    display: flex;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .header-mobile-nav {
    display: flex;
  }
}

.header-col-menu {
  height: 80px;
  justify-content: flex-end;
  display: none;
}

.header-mobile-nav__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-mobile-nav__btn .mobil-btn__text {
  color: gray;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.header-mobile-nav__btn .mobil-btn__icon svg {
  width: 42px;
  height: auto;
  color: black;
}
.header-mobile-nav__btn:hover {
  cursor: pointer;
}
.header-mobile-nav__btn:hover .mobil-btn__text {
  color: #FF9800;
}
.header-mobile-nav__btn:hover .mobil-btn__icon svg {
  color: #FF9800;
}
@media (max-width: 899px) {
  .header-mobile-nav__btn {
    display: flex;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .header-mobile-nav__btn {
    display: flex;
  }
}

.mob-nav__container {
  background: #0066CC;
  padding: 20px;
}

.mob-nav {
  position: absolute;
  background: black;
  width: 100%;
  z-index: 0;
  display: none;
  top: 80px;
  height: auto;
}
.mob-nav ul {
  padding: 0;
  display: block;
}
.mob-nav ul li {
  list-style: none;
  padding: 0;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 44px;
  margin: 0;
  border-bottom: 0px solid #4e4e4e;
}
.mob-nav ul li.highlight {
  background: #383f42;
}
.mob-nav ul.menu {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
}
.mob-nav ul.menu li a {
  display: block;
  padding: 10px 30px !important;
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.mob-nav .contact_btn a {
  color: #101126 !important;
}
.mob-nav ul.menu .main-item {
  margin: 0 0 10px 0;
  border-radius: 15px;
  overflow: hidden;
}
.mob-nav ul.menu .main-item a {
  color: white;
}
.mob-nav .menu-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 50px;
  background: url("/wp-content/themes/ndc/img/chevron-down.svg") center center no-repeat;
  background-size: 24px;
  filter: invert(1);
  transition: 0.5s;
}
.mob-nav .menu-arrow__up {
  transform: rotate(180deg);
  transition: 0.5s;
}
.mob-nav .level1 {
  display: inline-block;
  width: 100%;
  position: relative;
}
.mob-nav .zobrazit {
  background: #1d2327 !important;
  display: inline-block !important;
  width: 100%;
  height: auto;
}
.mob-nav .mob-nav-apps__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 20px 30px 20px;
}
.mob-nav .mob-nav-apps__items .app-item {
  background: white;
  width: 100%;
  text-align: center;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-nav .mob-nav-apps__items .app-item img {
  width: 50px;
}
.mob-nav .sub-menu {
  width: 100%;
  display: none;
}
.mob-nav .sub-menu li a {
  color: #101126 !important;
}

.mob-nav--second {
  padding: 0 20px 20px 20px;
}
.mob-nav--second .ul.menu {
  border-radius: 15px;
  overflow: hidden;
}

@media (max-width: 899px) {
  .mobilni {
    display: block;
  }
  .nav {
    display: none;
  }
  .mob-nav-btn {
    display: block;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .mobilni {
    display: block;
  }
  .nav {
    display: none;
  }
  .mob-nav-btn {
    display: block;
  }
}
/* HP */
.hp-top {
  background: silver url("/wp-content/themes/ndc/img/top.webp") center center;
  background-size: cover;
  width: 100%;
  z-index: 0;
  display: inline-block;
  position: relative;
}
.hp-top .hp-top-color {
  background: #000000;
  background: linear-gradient(0deg, #0066CC 0%, rgba(60, 98, 202, 0.3));
  height: 100%;
}
.hp-top .hp-top__vlayout {
  display: flex;
  align-items: flex-end;
  height: 650px;
  padding: 0 0 100px 0;
}
@media (max-width: 899px) {
  .hp-top .hp-top__vlayout {
    flex-direction: column;
  }
}
.hp-top .hp-top__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  width: 100%;
  align-items: flex-end;
}
@media (max-width: 899px) {
  .hp-top .hp-top__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.hp-top .search-form {
  display: flex;
  margin: 0 0 20px 0;
}
.hp-top .phone-headline {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 150%;
}
.hp-top .phone-conditions {
  margin: 10px 0 0 0;
}
.hp-top .phone-conditions p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 130%;
}
.hp-top .hp-top__form p {
  color: white;
}
.hp-top .hp-top__form input {
  padding: 10px;
  font-size: 18px;
  color: gray;
  border: none;
  width: 300px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.hp-top #suggestions {
  width: 300px;
  list-style: none;
  height: auto;
  max-height: 100% !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.hp-top #map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.hp-top #map-modal.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hp-top .modal-wrap {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
  text-align: center;
  color: black;
}
.hp-top .modal-wrap p {
  color: black;
}
.hp-top .modal-wrap #map {
  cursor: crosshair;
}
.hp-top .modal-wrap #map:hover {
  cursor: crosshair;
}
.hp-top .modal-wrap #location-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-top .modal-wrap #location-info button {
  background: #FF9800;
  color: white;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}
.hp-top .modal-wrap #location-info button svg {
  color: white;
  width: 30px;
  height: auto;
}
.hp-top .modal-wrap #location-info button:hover {
  background: #0066CC;
  cursor: pointer;
}
.hp-top #close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}
.hp-top .loc-form input {
  padding: 15px 20px;
  font-size: 18px;
  color: gray;
  border: none;
  width: 360px;
  border-radius: 10px;
}
@media (max-width: 899px) {
  .hp-top .loc-form input {
    width: calc(100% - 40px);
  }
}
.hp-top .loc-form #open-modal {
  color: white;
  margin: 30px 0 0 0;
  display: inline-block;
  text-decoration: underline;
}
.hp-top .loc-form #open-modal:hover {
  color: #FF9800;
  text-decoration: underline;
  cursor: pointer;
}
.hp-top .hp-top__headline h1 {
  color: white;
  font-size: 50px;
  text-align: left;
  font-weight: 700;
  line-height: 140%;
}
.hp-top .hp-top__contacts {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hp-top .hp-top__contacts h2 {
  color: white;
  margin: 0 0 20px 0;
}
.hp-top .hp-top__contacts .top-contact__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  margin: 0 0 20px 0;
  align-items: center;
}
.hp-top .hp-top__contacts .top-contact__item .contact-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #FF9800;
}
.hp-top .hp-top__contacts .top-contact__item .contact-item__icon svg {
  color: white;
  width: 20px;
  height: auto;
}
.hp-top .hp-top__contacts .top-contact__item .contact-item__text {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.hp-headline {
  text-align: center;
  margin: 0 0 30px 0;
}
.hp-headline h2 {
  margin: 0;
  padding: 25px 80px;
  font-size: 28px;
  font-weight: 600;
  color: #0066CC;
  display: inline-block;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (max-width: 899px) {
  .hp-headline h2 {
    font-size: 26px;
  }
}

.hp-slider .slider {
  background: silver url("/wp-content/themes/bosonohy/img/hptop.webp");
  width: 100%;
  height: 500px;
}

.hp-crossroads__items {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 60px 0 80px 0;
  justify-content: center;
}
@media (max-width: 899px) {
  .hp-crossroads__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.crossroad-item {
  background: #FF9800;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  width: 440px;
}
.crossroad-item .crossroad-item__pic {
  display: flex;
  justify-content: center;
  color: white;
  padding: 0px 0 0 0;
}
.crossroad-item .crossroad-item__pic img {
  width: 70px;
  height: auto;
  color: white;
}
.crossroad-item .crossroad-item__text {
  color: white;
  padding: 0;
  text-align: center;
  display: block;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}
.crossroad-item:hover {
  background: #0066CC;
}

.hp-news {
  padding: 50px 0;
  background: #CCE0F5;
}
.hp-news .hp-news__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
}
@media (max-width: 899px) {
  .hp-news .hp-news__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hp-references {
  padding: 80px 0;
}

.hp-reference__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 899px) {
  .hp-reference__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hp-info__more {
  text-align: center;
  padding: 40px 0;
}
.hp-info__more a {
  color: #0066CC;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hp-info__more a .more-text {
  display: flex;
}
.hp-info__more a .more-icon {
  display: flex;
}
.hp-info__more a .more-icon svg {
  width: 14px;
  height: auto;
}
.hp-info__more a:hover {
  text-decoration: underline;
}

/* PAGE */
.page {
  margin: 0 0 80px 0;
}

.page-top {
  position: relative;
  margin: 0 0 50px 0;
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 80px 0 30px 0;
}
.page-top .page-top__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0066CC;
  opacity: 1;
  z-index: 1;
}
.page-top .page-top__overlay .page-top__pic {
  opacity: 0.1;
  width: 100%;
  height: auto;
}
.page-top .page-top__overlay .page-top__pic img {
  width: 100%;
  height: auto;
}
.page-top .page-top__text {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}
.page-top .page-top__bc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.page-top .page-top__bc a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.page-top .page-top__bc a:hover {
  text-decoration: underline;
}
.page-top .page-top__title h1 {
  font-size: 50px;
  color: white;
  margin: 0;
  padding: 0;
}
@media (max-width: 899px) {
  .page-top .page-top__title h1 {
    font-size: 10vw;
  }
}
.page-top .page-top__subtitle h2 {
  font-size: 26px;
  color: white;
  font-weight: 400;
}
@media (max-width: 899px) {
  .page-top .page-top__subtitle h2 {
    font-size: 7vw;
  }
}

.page-content blockquote {
  max-width: var(--width-admin);
}
.page-content .wp-block[data-align=full] {
  max-width: 100%;
}
.page-content .wp-block-columns, .page-content p.wp-block {
  max-width: var(--width-admin);
}
.page-content a {
  color: #0066CC;
}
.page-content a:hover {
  color: #101126;
}
.page-content h2 {
  color: #0066CC;
  font-size: 30px;
  padding: 15px 0 10px;
  margin: 0 0 15px;
  font-weight: 700;
}
.page-content h3 {
  color: #101126;
  font-size: 26px;
  padding: 15px 0 10px;
  margin: 0;
  font-weight: 700;
}
.page-content h4 {
  color: #101126;
  font-size: 22px;
  padding: 15px 0 10px;
  margin: 0;
  font-weight: 600;
}
.page-content p {
  font-size: 16px;
  color: #101126;
  line-height: 160%;
  padding: 0 0 15px;
  margin: 0;
}
.page-content li {
  font-size: 17px;
  color: #101126;
}
.page-content td, .page-content th {
  border: 1px solid #d6deec;
}
.page-content td {
  padding: 10px;
}
.page-content thead {
  border-bottom: 2px solid #d6deec;
  text-align: left;
  background: #EDF2F6;
}
.page-content .wp-block-image img {
  border-radius: 15px;
}
.page-content .pic-orange-shadow figure img {
  box-shadow: -100px 45px 0 -45px #FF5E14;
}
@media (max-width: 899px) {
  .page-content .pic-orange-shadow figure {
    text-align: center;
  }
  .page-content .pic-orange-shadow figure img {
    width: 70% !important;
  }
}
.page-content .page-wrap .wp-block-columns {
  max-width: 1400px !important;
}
.page-content .strip-dark {
  background: url("/wp-content/themes/ndc/img/support-strip.webp") center/cover;
  padding: 50px 0 !important;
  color: #fff;
}
.page-content .strip-dark h2, .page-content .strip-dark h3, .page-content .strip-dark p {
  color: #fff;
}
.page-content .strip-silver {
  background: #F9F9F9;
  padding: 50px 0;
}
.page-content .is-style-btn-square-fill .wp-block-button__link {
  background: #FF9800;
  border-radius: 0;
}
.page-content .is-style-btn-square-fill .wp-block-button__link:hover {
  background: #101126;
}
.page-content .is-style-quote-blue-light {
  background: #EDF2F6;
  border-radius: 10px;
  padding: 30px 0;
}
.page-content .is-style-quote-blue-light p {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-style: italic;
}
.page-content .wp-block-list {
  list-style: none;
  padding: 0 0 0 8px;
}
.page-content .wp-block-list li {
  padding: 3px 0 3px 20px;
  line-height: 160%;
  font-size: 16px;
  position: relative;
}
.page-content .wp-block-list li::before {
  content: "■";
  color: #0066CC;
  font-weight: 700;
  position: absolute;
  width: 25px;
  margin-left: -25px;
}
.page-content ol {
  list-style: none;
  counter-reset: my-counter;
  padding: 0 5px 0 0;
  margin: 10px 0 20px;
}
.page-content ol li {
  counter-increment: my-counter;
  padding: 3px 0 3px 30px;
  line-height: 160%;
  font-size: 16px;
  position: relative;
}
.page-content ol li::before {
  content: counter(my-counter) ".";
  position: absolute;
  left: 0;
  width: 20px;
  text-align: right;
  font-weight: 700;
  color: #0066CC;
}
.page-content .wp-block-list.is-style-list-document {
  list-style: none;
  padding: 0 0 0 8px;
}
.page-content .wp-block-list.is-style-list-document li {
  padding: 4px 0 4px 20px;
  line-height: 170%;
  font-size: 16px;
}
.page-content .wp-block-list.is-style-list-document li a {
  color: #101126;
  text-decoration: underline;
}
.page-content .wp-block-list.is-style-list-document li a:hover {
  color: #FF9800;
}
.page-content .wp-block-list.is-style-list-document li::before {
  content: "";
  background: url("/wp-content/themes/ndc/img/icon_file.svg") center/cover no-repeat;
  opacity: 0.5;
  position: absolute;
  width: 25px;
  height: 25px;
  margin-left: -35px;
}
.page-content .wp-block-list.is-style-list-none {
  list-style: none;
  padding: 0 !important;
}
.page-content .wp-block-list.is-style-list-none li {
  padding: 4px 0 !important;
}
.page-content .wp-block-list.is-style-list-none li::before {
  content: "" !important;
  color: #0066CC;
  font-weight: 700;
  position: absolute;
  width: 0px !important;
  margin-left: 0px !important;
}
@media (max-width: 899px) {
  .page-content .alignfull {
    padding: 0;
  }
}

.references__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.contact__map {
  background: #EDF2F6;
  border-radius: 10px;
  display: inline-block;
  overflow: hidden;
}
.contact__map .contact__map__text {
  padding: 15px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-weight: 700;
  color: #101126;
}
.contact__map .contact__map__arrow {
  background: #0066CC;
  color: white;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__map:hover .contact__map__text {
  text-decoration: underline;
}

/* REGIONY */
.region-text {
  line-height: 150%;
  padding: 0 200px;
}

/* archive */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  margin: 0 auto;
  width: 1400px;
  padding: 0 0 80px 0;
}
@media (min-width: 900px) and (max-width: 1199px) {
  .archive-layout {
    grid-template-columns: 1fr;
    width: var(--width-mobile);
  }
}
@media (max-width: 899px) {
  .archive-layout {
    grid-template-columns: 1fr;
    width: var(--width-mobile);
  }
}

.articles__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
  margin: 0 0 80px 0;
}
@media (min-width: 900px) and (max-width: 1199px) {
  .articles__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 899px) {
  .articles__items {
    grid-template-columns: 1fr;
  }
}

/* článek - karta */
.article-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 30px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 899px) {
  .article-card {
    grid-template-columns: 1fr;
  }
}
.article-card .article-item__pic img {
  border-radius: 20px;
}
.article-card .article-item__text {
  margin: 0 0 20px 0;
}
.article-card .article-item__text .article-item__text-name {
  padding: 0;
}
.article-card .article-item__text .article-item__text-name h3 {
  text-decoration: none;
  line-height: 120%;
  margin: 0 0 10px 0;
  padding: 0;
}
.article-card .article-item__text .article-item__text-name h3 a {
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
  line-height: 120%;
}
.article-card .article-item__text .article-item__text-name h3 a:hover {
  text-decoration: underline;
  color: #101126;
}
@media (max-width: 899px) {
  .article-card .article-item__text .article-item__text-name h3 a {
    font-size: 20px;
  }
}
.article-card .article-item__text .article-item__text-perex {
  padding: 0;
  line-height: 150%;
  color: black;
  margin: 20px 0 10px 0;
}
.article-card .article-item__text .article-item__text-link {
  margin: 20px 0 0 0;
}
.article-card .article-item__text .article-item__text-link a {
  color: white;
  background: #FF9800;
  padding: 7px 15px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
}
.article-card .article-item__text .article-item__text-link a:hover {
  text-decoration: underline;
  background: #101126;
}
.article-card .article-item__text .article-item__text-date {
  color: gray;
  font-size: 16px;
}
.article-card a {
  color: #0066CC;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  margin-bottom: 25px;
}
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* článek */
.article-single {
  padding: 0 0 80px 0;
}
.article-single .article-top {
  padding: 50px 0;
  background: #0066CC;
  margin: 0 0 50px 0;
}
.article-single .article-top h1 {
  color: white;
  font-size: 40px;
  padding: 0;
  margin: 0 0 20px 0;
}
.article-single .article-top .article-claim {
  font-size: 22px;
  color: gray;
  margin: 20px 0 30px;
}
.article-single .article-top .article-date {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 899px) {
  .article-single .article-top {
    padding: 10px 0 0 0;
  }
  .article-single .article-top h1 {
    font-size: 36px;
  }
}
.article-single .article-content blockquote {
  max-width: var(--width-admin);
}
.article-single .article-content .wp-block[data-align=full] {
  max-width: 100%;
}
.article-single .article-content .wp-block-columns, .article-single .article-content p.wp-block {
  max-width: var(--width-admin);
}
.article-single .article-content a {
  color: #0066CC;
}
.article-single .article-content a:hover {
  color: #101126;
}
.article-single .article-content h2 {
  color: #0066CC;
  font-size: 30px;
  padding: 15px 0 10px;
  margin: 0 0 15px;
  font-weight: 700;
}
.article-single .article-content h3 {
  color: #101126;
  font-size: 26px;
  padding: 15px 0 10px;
  margin: 0;
  font-weight: 700;
}
.article-single .article-content h4 {
  color: #101126;
  font-size: 22px;
  padding: 15px 0 10px;
  margin: 0;
  font-weight: 600;
}
.article-single .article-content p {
  font-size: 16px;
  color: #101126;
  line-height: 160%;
  padding: 0 0 15px;
  margin: 0;
}
.article-single .article-content li {
  font-size: 17px;
  color: #101126;
}
.article-single .article-content td, .article-single .article-content th {
  border: 1px solid #d6deec;
}
.article-single .article-content td {
  padding: 10px;
}
.article-single .article-content thead {
  border-bottom: 2px solid #d6deec;
  text-align: left;
  background: #EDF2F6;
}
.article-single .article-content .wp-block-image img {
  border-radius: 15px;
}
.article-single .article-content .pic-orange-shadow figure img {
  box-shadow: -100px 45px 0 -45px #FF5E14;
}
@media (max-width: 899px) {
  .article-single .article-content .pic-orange-shadow figure {
    text-align: center;
  }
  .article-single .article-content .pic-orange-shadow figure img {
    width: 70% !important;
  }
}
.article-single .article-content .page-wrap .wp-block-columns {
  max-width: 1400px !important;
}
.article-single .article-content .strip-dark {
  background: url("/wp-content/themes/ndc/img/support-strip.webp") center/cover;
  padding: 50px 0 !important;
  color: #fff;
}
.article-single .article-content .strip-dark h2, .article-single .article-content .strip-dark h3, .article-single .article-content .strip-dark p {
  color: #fff;
}
.article-single .article-content .strip-silver {
  background: #F9F9F9;
  padding: 50px 0;
}
.article-single .article-content .is-style-btn-square-fill .wp-block-button__link {
  background: #FF9800;
  border-radius: 0;
}
.article-single .article-content .is-style-btn-square-fill .wp-block-button__link:hover {
  background: #101126;
}
.article-single .article-content .is-style-quote-blue-light {
  background: #EDF2F6;
  border-radius: 10px;
  padding: 30px 0;
}
.article-single .article-content .is-style-quote-blue-light p {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-style: italic;
}
.article-single .article-content .wp-block-list {
  list-style: none;
  padding: 0 0 0 8px;
}
.article-single .article-content .wp-block-list li {
  padding: 3px 0 3px 20px;
  line-height: 160%;
  font-size: 16px;
  position: relative;
}
.article-single .article-content .wp-block-list li::before {
  content: "■";
  color: #0066CC;
  font-weight: 700;
  position: absolute;
  width: 25px;
  margin-left: -25px;
}
.article-single .article-content ol {
  list-style: none;
  counter-reset: my-counter;
  padding: 0 5px 0 0;
  margin: 10px 0 20px;
}
.article-single .article-content ol li {
  counter-increment: my-counter;
  padding: 3px 0 3px 30px;
  line-height: 160%;
  font-size: 16px;
  position: relative;
}
.article-single .article-content ol li::before {
  content: counter(my-counter) ".";
  position: absolute;
  left: 0;
  width: 20px;
  text-align: right;
  font-weight: 700;
  color: #0066CC;
}
.article-single .article-content .wp-block-list.is-style-list-document {
  list-style: none;
  padding: 0 0 0 8px;
}
.article-single .article-content .wp-block-list.is-style-list-document li {
  padding: 4px 0 4px 20px;
  line-height: 170%;
  font-size: 16px;
}
.article-single .article-content .wp-block-list.is-style-list-document li a {
  color: #101126;
  text-decoration: underline;
}
.article-single .article-content .wp-block-list.is-style-list-document li a:hover {
  color: #FF9800;
}
.article-single .article-content .wp-block-list.is-style-list-document li::before {
  content: "";
  background: url("/wp-content/themes/ndc/img/icon_file.svg") center/cover no-repeat;
  opacity: 0.5;
  position: absolute;
  width: 25px;
  height: 25px;
  margin-left: -35px;
}
.article-single .article-content .wp-block-list.is-style-list-none {
  list-style: none;
  padding: 0 !important;
}
.article-single .article-content .wp-block-list.is-style-list-none li {
  padding: 4px 0 !important;
}
.article-single .article-content .wp-block-list.is-style-list-none li::before {
  content: "" !important;
  color: #0066CC;
  font-weight: 700;
  position: absolute;
  width: 0px !important;
  margin-left: 0px !important;
}
@media (max-width: 899px) {
  .article-single .article-content h2 {
    font-size: 30px;
  }
}

.archive-top {
  padding: 40px 0;
}

/* kategorie */
.kategorie .kat-top {
  padding: 70px 0 130px 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.kategorie .kat-top .kat-top__bc {
  color: white;
  display: none;
}
.kategorie .kat-top .kat-top__title {
  padding: 40px 0 20px 0;
}
.kategorie .kat-top .kat-top__title h1 {
  font-size: 50px;
  color: white;
}
.kategorie .kat-top .kat-top__perex {
  color: white;
  font-size: 26px;
  line-height: 150%;
}

.kat-content-top {
  padding: 60px 0 0 0;
}

.kat-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 60px 0 80px 0;
}
@media (max-width: 899px) {
  .kat-products {
    grid-template-columns: 1fr;
  }
}

.kat-content {
  background: #EDF2F6;
  padding: 80px 0;
}
.kat-content p {
  line-height: 150%;
}
.kat-content ul li {
  line-height: 150%;
}
.kat-content .kat-content__logo {
  text-align: right;
}
.kat-content .kat-content__logo img {
  width: auto;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 899px) {
  .kat-content .kat-content__logo {
    text-align: left;
  }
}
.kat-content .kat-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin: 40px 0 0 0;
}
.kat-content .kat-gallery img {
  border-radius: 10px;
}

/* side */
.side {
  position: relative;
}

.sticky {
  position: sticky;
  top: 30px;
}

.side-menu {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d6deec;
}
.side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-menu ul li a {
  display: block;
  color: gray;
  text-decoration: none;
  padding: 7px 0;
}
.side-menu ul li a:hover {
  color: red;
  text-decoration: underline;
}

.side-contact {
  background: gray;
  position: relative;
  margin: 0 0 40px 0;
  padding: 40px;
}
.side-contact .side-contact__overlay {
  opacity: 0.85;
  background: #28323b;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.side-contact .side-contact__content {
  position: relative;
}
.side-contact .side-contact__text {
  color: white;
}
.side-contact .side-contact__text h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.side-contact .side-contact__text p {
  margin: 0 0 20px 0;
}
.side-contact .side-contact__item {
  color: white;
  display: grid;
  grid-template-columns: 30px 1fr;
  margin: 0 0 20px 0;
}
.side-contact .side-contact__item .icon svg {
  color: #FF9800;
}

.side-newsletter {
  padding: 40px;
  background: #101126;
}
.side-newsletter h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: white;
}
.side-newsletter p {
  margin: 0 0 20px 0;
  color: white;
  font-size: 14px;
  line-height: 140%;
}

/* OFFER */
.offer-items {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0 0 80px 0;
}

/* PRICELIST */
.pricelist-item {
  border: 0px solid #d6deec;
  border-radius: 10px;
  text-align: center;
  width: 280px;
  padding: 30px 0;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: #101126;
}
.pricelist-item .pricelist-title {
  font-size: 26px;
  font-weight: 700;
  padding: 30px 0;
}
.pricelist-item .pricelist-price {
  font-size: 26px;
  font-weight: 600;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}
.pricelist-item .pricelist-price__small {
  color: gray;
  font-size: 14px;
}
.pricelist-item .btn-pricelist {
  background: #FF9800;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 7px;
  display: inline-block;
  text-decoration: none;
}
.pricelist-item .pricelist-more {
  padding: 10px 0 30px 0;
}
.pricelist-item .pricelist-more a {
  color: gray;
  font-size: 14px;
}
.pricelist-item:hover {
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.5);
}
.pricelist-item:hover .btn-pricelist {
  background: #0066CC;
}

/* ORDER */
.order-tarif__item {
  border: 1px solid #d6deec;
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 30px 0;
  width: 600px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 600px;
  margin: 0 0 100px 0;
}

.form-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
}
.form-row .form-row__label {
  padding: 10px 0 0 0;
}
.form-row .form-row__input input {
  padding: 10px;
  border-radius: 7px;
  border: 1px solid #d6deec;
  font-size: 16px;
  width: calc(100% - 20px);
}
.form-row .form-row__input button {
  background: #FF9800;
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
  display: inline-block;
  font-size: 17px;
}
.form-row .form-row__input button:hover {
  background: #0066CC;
  cursor: pointer;
}

/* OFFER */
.offer-top {
  position: relative;
  margin: 0 0 80px 0;
  display: flex;
  align-items: center;
}

.offer-top__text {
  position: absolute;
  z-index: 999;
  width: 100%;
  color: white;
}
.offer-top__text .offer-top__place {
  width: 50%;
}
.offer-top__text .offer-top__headline {
  font-size: 22px;
  margin: 0 0 10px 0;
}
.offer-top__text .offer-top__address {
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.offer-top__text .offer-top__coords {
  font-size: 30px;
  font-weight: 700;
}

.map-top {
  width: 100%;
  height: 300px;
}

.offer-top__bg {
  width: 100%;
  height: 300px;
  display: block;
  position: relative;
}

.offer-top__gradient {
  background: #0066CC;
  background: linear-gradient(90deg, rgb(0, 102, 204) 10%, rgb(0, 102, 204) 50%, rgba(0, 102, 204, 0) 100%);
  opacity: 0.9;
  width: 100%;
  height: 300px;
  position: absolute;
  z-index: 99;
}

.offer-cta {
  background: #0066CC;
  border-radius: 10px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
  margin: 0 0 80px 0;
}
.offer-cta .offer-cta__headline {
  font-size: 28px;
  font-weight: 700;
}
.offer-cta .offer-cta__form {
  margin: 0 0 30px 0;
}
.offer-cta .offer-cta__form .offer-cta__conditions {
  margin: 20px 0 0 0;
}
.offer-cta .offer-cta__form .offer-cta__conditions p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.offer-cta .offer-cta__contacts {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.offer-cta .offer-cta__contacts .offer-cta__item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.offer-cta .offer-cta__contacts .offer-cta__item img {
  width: 24px;
  padding: 10px;
  border-radius: 7px;
  background: #FF9800;
  color: white;
}
.offer-cta .offer-cta__contacts .offer-cta__item a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.offer-text {
  padding: 0 200px;
}

/* others */
/* Form */
.wp-block-contact-form-7-contact-form-selector input[type=text], .wp-block-contact-form-7-contact-form-selector input[type=email], .wp-block-contact-form-7-contact-form-selector input[type=tel] {
  background: whitesmoke;
  padding: 15px;
  width: 100%;
  border: none;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  border-radius: 10px;
}
.wp-block-contact-form-7-contact-form-selector input[type=submit] {
  background: #2B9348;
  padding: 10px 20px;
  width: auto;
  border: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 10px;
  color: white;
}
.wp-block-contact-form-7-contact-form-selector input[type=submit]:hover {
  cursor: pointer;
  background: black;
  color: white;
}
.wp-block-contact-form-7-contact-form-selector textarea {
  background: whitesmoke;
  width: 100%;
  border: none;
  padding: 15px;
  font-size: 16px;
  box-sizing: border-box;
}
.wp-block-contact-form-7-contact-form-selector label {
  width: 100%;
  font-size: 16px;
  display: block;
}
.wp-block-contact-form-7-contact-form-selector .wpcf7-list-item {
  margin: 0 0 20px 0;
}
.wp-block-contact-form-7-contact-form-selector .wpcf7-list-item a {
  color: black;
  text-decoration: underline;
}
.wp-block-contact-form-7-contact-form-selector .pole {
  width: 100%;
}
.wp-block-contact-form-7-contact-form-selector .radek-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
}
.wp-block-contact-form-7-contact-form-selector .radek-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.wp-block-contact-form-7-contact-form-selector .radek-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 30px;
}

.form__phone-number {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 0;
}
.form__phone-number input {
  height: 44px;
  padding: 0 20px;
  border: none;
  width: calc(100% - 100px);
  font-size: 18px;
  background: white;
  margin: 0;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.form__phone-number button {
  background: #FF9800;
  height: 44px;
  width: 44px;
  border: none;
  margin: 0;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.form__phone-number button svg {
  color: white;
  font-size: 20px;
}
.form__phone-number button:hover {
  background: #0066CC;
  cursor: pointer;
}

.form-error {
  display: none;
  color: red;
  margin-top: 5px;
  font-size: 14px;
  padding: 5px;
  border-radius: 5px;
  font-weight: 600;
}

.form-error.show {
  display: block;
}

.is-invalid {
  border-color: red !important;
}

/* reference */
.reference-item .reference-item__bubble {
  background: white;
  padding: 30px 50px;
  border-radius: 10px;
  line-height: 150%;
  position: relative;
  border: 1px solid #F0F0F0;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.reference-item .reference-item__bubble .arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid white;
  position: absolute;
  bottom: -24px;
  right: 50px;
}
.reference-item .reference-item__bubble .arrow-down::after {
  content: "";
  position: absolute;
  left: -21px;
  top: -25px;
  width: 0;
  height: 0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-top: 26px solid #F0F0F0;
  z-index: -1;
}
.reference-item .reference-item__bubble .arrow-down::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -30px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid white;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  z-index: -2;
}
.reference-item .reference-item__name {
  font-weight: 700;
}
.reference-item .reference-item__desc {
  font-size: 15px;
}
.reference-item .reference-item__bottom {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 30px;
  margin: 30px 0;
}

.lokality_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.lokality_items .region-item {
  background: whitesmoke;
  padding: 7px 14px;
  border-radius: 10px;
}
.lokality_items a {
  color: #0066CC;
  padding: 7px 0;
  display: inline-block;
  text-decoration: none;
}
.lokality_items a:hover {
  color: #101126;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  padding: 50px 0;
  background: whitesmoke;
}
.footer .footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 40px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .footer .footer-layout {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .footer .footer-layout {
    grid-template-columns: 1fr 1fr 1fr;
    width: 94%;
  }
}
@media (max-width: 899px) {
  .footer .footer-layout {
    grid-template-columns: 1fr;
    width: 94%;
  }
}
.footer .footer-col .footer-headline h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
  color: #0066CC;
}
.footer .footer-col .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-col .footer-menu ul li {
  padding: 5px 0;
}
.footer .footer-col .footer-menu ul li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
}
.footer .footer-col .footer-menu ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 899px) {
  .footer .footer-col {
    margin: 0 0 30px 0;
  }
  .footer .footer-col p {
    font-size: 15px;
  }
}
.footer .footer-contacts {
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer .footer-contact_item--title {
  font-weight: 700;
}
.footer .footer-contact_item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer-contact_item a {
  color: black;
  text-decoration: none;
}
.footer .footer-contact_item a:hover {
  text-decoration: underline;
}
.footer .footer-contact_item .icon {
  width: 30px;
}
.footer .footer-contact_item .icon svg {
  color: #FF9800;
  width: 30px;
}
.footer .footer-contact_item .link {
  font-size: 18px;
}
.footer .footer-contact_item .link a {
  font-size: 18px;
  color: white;
  text-decoration: none;
}
.footer .footer-contact_item .link a:hover {
  color: #FF9800;
  text-decoration: underline;
}
@media (max-width: 899px) {
  .footer .footer-contact_item .link {
    font-size: 15px;
  }
}
.footer .footer-social {
  margin: 0 0 30px 0;
  text-align: right;
}
.footer .footer-social a {
  width: 50px;
  display: inline-block;
}
.footer .footer-social a img {
  width: 36px;
  height: 36px;
  color: red;
}
.footer .footer-social a img:hover {
  color: white;
  opacity: 0.5;
}
.footer .widget-footer {
  margin: 10px 0 0 0;
}
.footer .widget-footer p {
  font-size: 14px;
}

.tiraz {
  padding: 20px 0;
  font-size: 14px;
}
.tiraz p {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.tiraz .firma .tiraz-logo {
  width: 140px;
  height: auto;
}
@media (max-width: 899px) {
  .tiraz .firma {
    text-align: center;
    margin: 0 0 10px 0;
  }
}
.tiraz .tiraz-author {
  text-align: right;
}
.tiraz .tiraz-author .tiraz-author__logo {
  width: 80px;
  display: inline-block;
  opacity: 0.3;
  filter: invert(0);
}
.tiraz .tiraz-author .tiraz-author__logo:hover {
  opacity: 1;
}
@media (max-width: 899px) {
  .tiraz .tiraz-author {
    text-align: center;
  }
}

.icontext-block.bordered {
  border: 1px solid #d6deec;
  padding: 15px;
}

.icontext-block {
  border-radius: 10px;
}
.icontext-block .icontext-block__layout {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  width: 100%;
  align-items: center;
}
.icontext-block .icontext-block__text {
  font-size: 17px;
  line-height: 150%;
}
.icontext-block .icontext-block__layout.layout-left {
  width: auto;
}
.icontext-block .icontext-block__layout.layout-right {
  width: auto;
}
.icontext-block .icontext-block__layout.layout-top {
  grid-template-columns: 1fr;
  gap: 10px;
}
.icontext-block .icontext-block__layout.layout-top .icontext-block__pic img {
  width: 40px;
  height: auto;
}
.icontext-block .icontext-block__pic img {
  border-radius: 5px;
}

.item-timeline {
  border: 0px solid silver;
  padding: 0px;
  margin: 0 0 50px 0;
  position: relative;
}
.item-timeline .timeline-axe {
  position: absolute;
  width: 3px;
  background: #EDF2F6;
  height: 100%;
  left: 50%;
  z-index: -1;
}
@media (max-width: 899px) {
  .item-timeline .timeline-axe {
    left: 30px;
  }
}
.item-timeline .timeline-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  width: 100%;
  gap: 20px;
  margin: 0 0 50px 0;
}
.item-timeline .timeline-row .timeline-row__time {
  border: 2px solid #0066CC;
  background: white;
  color: #0066CC;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-timeline .timeline-row .timeline-row__text {
  padding: 15px;
  background: #EDF2F6;
  border-radius: 10px;
}
@media (max-width: 899px) {
  .item-timeline .timeline-row {
    grid-template-columns: 60px 1fr;
  }
  .item-timeline .timeline-row .timeline-row__none {
    order: 3;
    display: none;
  }
  .item-timeline .timeline-row .timeline-row__time {
    order: 1;
  }
  .item-timeline .timeline-row .timeline-row__text {
    order: 2;
    text-align: center;
  }
}
.item-timeline .timeline-row:nth-child(odd) .timeline-row__none {
  order: 3;
}
.item-timeline .timeline-row:nth-child(odd) .timeline-row__time {
  order: 2;
}
.item-timeline .timeline-row:nth-child(odd) .timeline-row__text {
  order: 1;
  text-align: right;
}
@media (max-width: 899px) {
  .item-timeline .timeline-row:nth-child(odd) {
    grid-template-columns: 60px 1fr;
  }
  .item-timeline .timeline-row:nth-child(odd) .timeline-row__none {
    order: 3;
    display: none;
  }
  .item-timeline .timeline-row:nth-child(odd) .timeline-row__time {
    order: 1;
  }
  .item-timeline .timeline-row:nth-child(odd) .timeline-row__text {
    order: 2;
    text-align: center;
  }
}
.crossroad-block {
  background: #FF9800;
  border-radius: 10px;
  overflow: hidden;
}
.crossroad-block .crossroad-block__text {
  padding: 20px;
}
.crossroad-block .crossroad-block__text .textpic-block__headline {
  margin: 0 0 20px 0;
}
.crossroad-block .crossroad-block__text .textpic-block__headline a {
  color: white;
  text-decoration: none;
}
.crossroad-block .crossroad-block__text .textpic-block__headline a h2 {
  font-size: 22px;
  color: white;
  margin: 0;
  padding: 0;
}
.crossroad-block .crossroad-block__text .textpic-block__desc {
  line-height: 150%;
  color: white;
  font-weight: 500;
}

.kontakt-page p, .contact-page p {
  padding: 0;
  margin: 0;
}
.kontakt-page h2, .contact-page h2 {
  padding: 20px 0 30px 0 !important;
}

.contact-item-block-photo {
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.contact-item-block {
  display: grid;
  background: #EDF2F6;
  height: 100%;
  border-radius: 10px;
}
.contact-item-block .contact-item-block__photo {
  padding: 15px 0 0 15px;
}
.contact-item-block .contact-item-block__photo img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.contact-item-block .contact-item-block__data {
  padding: 15px;
}
.contact-item-block .contact-item-block__data .contact-item-block__data_item {
  padding: 0 0 7px 0;
}
.contact-item-block .contact-item-block__data a {
  color: #0066CC;
  text-decoration: none;
}
.contact-item-block .contact-item-block__data a:hover {
  text-decoration: underline;
}
.contact-item-block .contact-item-block__data .name {
  font-weight: 700;
}
.contact-item-block .contact-item-block__data .position {
  font-style: italic;
}

.dwnl-block {
  margin: 0 0 20px 0;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  background: #EDF2F6;
  gap: 10px;
  text-decoration: none;
  color: black;
  font-size: 17px;
}
.dwnl-block .dwnl-block__icon {
  width: 30px;
}
.dwnl-block .dwnl-block__icon svg {
  width: 26px;
  height: 26px;
  color: #0066CC;
}
.dwnl-block .dwnl-block__text {
  color: black;
  text-decoration: none;
}
.dwnl-block:hover {
  background: #101126;
}
.dwnl-block:hover .dwnl-block__icon svg {
  color: white;
}
.dwnl-block:hover .dwnl-block__text {
  color: white;
}

.block-accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.block-accordion .collapsible-accordion {
  margin: 10px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid silver;
}
.block-accordion .collapsible-item-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  cursor: pointer;
  background: white;
  color: black;
  font-size: 17px;
  font-weight: 600;
}
.block-accordion .collapsible-item-label::after {
  content: "";
  background-image: url("/wp-content/themes/ndc/img/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  text-align: center;
  transition: all 0.35s;
}
.block-accordion .collapsible-item-content {
  max-height: 0;
  padding: 0 1em;
  background: white;
  transition: all 0.35s;
  display: none;
}
.block-accordion input:checked + .collapsible-item-label {
  color: black;
}
.block-accordion input:checked + .collapsible-item-label::after {
  transform: rotate(90deg);
}
.block-accordion input:checked ~ .collapsible-item-content {
  max-height: max-content;
  padding: 1em;
  display: block;
}

.container {
  margin: 0 auto !important;
}
@media (min-width: 1350px) {
  .container {
    width: 1400px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .container {
    width: 1000px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .container {
    width: 90%;
  }
}

.wp-block-group__inner-container, .wp-block-cover__inner-container {
  margin: 0 auto !important;
}
@media (min-width: 1350px) {
  .wp-block-group__inner-container, .wp-block-cover__inner-container {
    width: 1400px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1349px) {
  .wp-block-group__inner-container, .wp-block-cover__inner-container {
    width: 1000px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .wp-block-group__inner-container, .wp-block-cover__inner-container {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .wp-block-group__inner-container, .wp-block-cover__inner-container {
    width: 90%;
  }
}

html {
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  font-optical-sizing: auto;
}

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

@media (min-width: 1350px) {
  .nomobile {
    display: inline-block;
  }
}
@media (max-width: 899px) {
  .nomobile {
    display: none;
  }
}

.editor-content > *:not(.alignfull) {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) and (max-width: 1199px) {
  .editor-content > *:not(.alignfull) {
    width: var(--width-tablet);
  }
}
@media (max-width: 899px) {
  .editor-content > *:not(.alignfull) {
    width: var(--width-mobile);
  }
}

.editor-content > *:not(.alignfull).alignwide {
  max-width: 1400px;
}

.wp-block-nk-awb {
  height: calc(100vh - 100px);
  padding: 0;
}

/* video */
.background-video {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: -5;
  top: -13vw;
  left: 0;
  filter: brightness(0.4);
}
@media (min-width: 900px) and (max-width: 1199px) {
  .background-video {
    top: 0;
    height: 100%;
  }
}
@media (max-width: 899px) {
  .background-video {
    height: 100%;
    width: auto;
    top: 0;
    left: calc(50% - 600px);
  }
}

/* Blog */
.blog_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 899px) {
  .blog_items {
    grid-template-columns: 1fr;
  }
}

.bod-block-popup-wrap .bod-block-popup.size-m {
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.wp-block-countdown-block-countdown {
  width: 80%;
}
@media (max-width: 899px) {
  .wp-block-countdown-block-countdown {
    width: 100%;
  }
}

.page-404 {
  padding: 100px 0;
}
.page-404 h1 {
  text-align: center;
}
.page-404 p {
  text-align: center;
}
.page-404 .error {
  color: gray;
}

/*# sourceMappingURL=style.css.map */
