@media (min-width: 576px) {
  .w10,
  .w20,
  .w30,
  .w40,
  .w50,
  .w60,
  .w70,
  .w80,
  .w90 {
    flex-basis: calc(50% - 5px);
  }
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Header */
  .header-top-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
            gap: 1rem;
  }
  /* Header -> Search form */
  .header-search-close {
    top: 2rem;
  }
  .search-box-content .block-title {
    display: block;
  }
  .breadcrumb-item span {
    margin: 0 10px;
  }
  /* Main */
  .main-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #main {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #sidebar-left {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  #sidebar-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  /* one sidebar + main */
  .sidebar-left #main,
  .sidebar-right #main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 70%;
            flex: 1 1 70%;
  }
  /* Both sidebar + main */
  .two-sidebar #main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  /* Sidebar
  --------------------------------*/
  #sidebar-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
  #sidebar-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
  /* Footer */
  .footer-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-bottom-blocks-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer-bottom-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-bottom-last {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .copyright {
    margin-bottom: 0;
  }
  /* shortcodes -> content width */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  /* shortcodes -> responsive column */
  .w10 {
    flex-basis: calc(10% - 10px);
  }
  .w20 {
    flex-basis: calc(20% - 10px);
  }
  .w30 {
    flex-basis: calc(30% - 10px);
  }
  .w40 {
    flex-basis: calc(40% - 10px);
  }
  .w50 {
    flex-basis: calc(50% - 10px);
  }
  .w60 {
    flex-basis: calc(60% - 10px);
  }
  .w70 {
    flex-basis: calc(70% - 10px);
  }
  .w80 {
    flex-basis: calc(80% - 10px);
  }
  .w90 {
    flex-basis: calc(90% - 10px);
  }
  /* Shortcodes -> responsive view */
  .view-in-mobile {
    display: none;
  }
  .view-in-desktop {
    display: block;
  }
}
@media (min-width: 992px) {
  th {
    padding: 10px;
  }
  td {
    padding: 5px 10px;
  }
  /* Header */
  .header-right {
    gap: 2rem;
  }
  .menu-wrap {
    position: relative;
    background-color: transparent;
    max-width: 100%;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .menu-wrap .menu {
    flex-direction: row;
  }
  .menu-wrap .menu-item a,
  .menu-wrap .menu-item > span {
    border-bottom: 0;
  }
  .menu-wrap .menu > li,
  .menu-wrap .collapsed,
  .menu-wrap .expanded,
  .menu-wrap .menu-item-has-children {
    display: inline-flex;
    align-items: center;
  }
  .menu-wrap .collapsed:hover,
  .menu-wrap .expanded:hover,
  .menu-wrap .menu-item-has-children:hover {
    background-color: var(--light);
  }
  .menu-wrap .collapsed::after,
  .menu-wrap .expanded::after,
  .menu-wrap .menu-item-has-children::after {
    content: '+';
  }
  .menu-wrap .submenu {
    position: absolute;
    display: none;
    background-color: var(--light);
    font-size: 0.9rem;
    top: 100%;
    min-width: 180px;
    max-width: 200px;
    opacity: 0;
  }
  .collapsed:hover > .submenu,
  .expanded:hover  > .submenu,
  .menu-item-has-children:hover  > .submenu {
    display: flex;
    -webkit-animation: slideUp 0.5s forwards;
    animation: slideUp 0.5s forwards;
  }
  .menu-wrap .submenu li {
    border-bottom: 1px solid var(--border);
  }
  .menu-wrap .submenu .submenu {
    top: 0;
    left: 100%;
  }
  .menu-wrap .submenu li > a,
  .menu-wrap .submenu li > span {
    padding: 0.5rem;
  }
  .menu-wrap .submenu .submenu .menu-item > a,
  .menu-wrap .submenu .submenu .menu-item > span {
    padding: 0.5rem;
  }
  .mobile-menu,
  .close-mobile-menu {
    display: none;
  }
}

@media (max-width: 1480px) {
.node-banner-img:before {
  top: -40px;
  right: -30px;
}
.node-banner-img {
  margin-right: 30px;
}
}
@media (max-width: 1200px) {
  .about-mric-container-desc {
    max-width: 650px;
  }
  .about-mric-container-img img {
    max-height: 100%;
  }
}
@media (max-width: 1024px) {
.about-section-item-first {
  grid-column: span 3;
  grid-row: span 1;

}
.about-section-item-third{
  grid-column: span 1;
}
.about-section-item-preim-sec {
  flex-direction: row;
  gap: 20px;
}
  .news-page-blocks {
    grid-template-columns: 1fr 1fr;
}
  .contact-block-foto{
    max-width: 550px !important;
  }
  .contact-block-backcall .fieldset-wrapper {
    gap: 0px;
    flex-direction: column;
}
.contact-block-backcall .js-form-item input{
  max-width: 100%;
  max-height: 55px;
}
.contact-block-backcall .js-form-item textarea {
  max-width: 100%;
  max-height: 150px;
}
.node-banner-content-title {
  max-width: 400px;
  font-size: 40px;
}
.steps-block-items {
  grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 1060px) {
.error-sec-title {
  flex-direction: column;
  gap: 0;
}
}
@media (max-width: 991px) {
  .error-sec-block-image img{
    max-width: 500px !important;
  }
  .backcall-block {
    padding: 40px;
    gap: 20px;
  }
  .news-block-content-tile {
    font-size: 30px;
  }
  .news-block-smal .news-block-content-tile {
    font-size: 20px;
  }
  .news-block-smal {
    max-width: 420px !important;
}
.news-block-content-link a {
  font-size: 18px;
}
.news-btn svg{
  width: 250px;
}
  .about-mric-container-desk-block:last-child {
    grid-column: span 1;
}
.about-mric-container-desc {
  max-width: 500px;
}
.about-mric-container-desk-blocks {
  grid-template-columns: auto;
}
.header_btn {
  padding: 10px 20px;
}
}
@media (max-width: 856px) {
.error-sec-block-image img {
  max-width: 400px !important;
}
}
@media (max-width: 768px) {
  .contact-block-map iframe {
    max-width: 100%;
}
  .contact-block {
    padding: 50px 0;
}
  .contact-block-call {
    padding: 20px 0;
    flex-direction: column-reverse;
  }
  .contact-block-foto {
    display: none;
}
  .backcall-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-blocks {
    grid-template-columns: auto;
  }
  .news-block-large {
    grid-row: span 1;
  }
  .news-block-smal {
    max-width: 100% !important;
}
.news-btn {
  margin-top: 0px;
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 100%;
}
.news-btn-link {
  min-width: 200px;
}
.news-btn svg {
  width: 100%;
}
  .about-mric-container-img img {
    max-height: 550px;
    object-fit: cover;
}
.about-mric-container-img {
  width: 100%;
  display: none;
}
.about-mric-container-desc {
  max-width: 100%;
}
.about-mric-container {
  flex-direction: column;
}
  .node-banner {
    flex-direction: column;
    gap: 50px;
    padding: 0px 0;
}
.node-banner-img {
  margin-right: 30px;
  display: flex;
  justify-content: center;
}
.node-banner-content-desc {
  max-width: 100%;}
  .node-banner-content {
    gap: 35px;
}
.cifr-about-block-preim {
  grid-template-columns: 1fr;
}
}
@media (max-width: 745px) {
  .error-sec-title {
    flex-direction: row;
    gap: 10px;
}
.error-sec {
  flex-direction: column;
}
.error-sec-block {
  padding: 20px 0;
  gap: 40px;
}
.error-sec-block-image img {
  max-width: 100% !important;
  float: right;
}
.error-sec-btn a {
  max-width: 350px;
}
}
@media (max-width: 700px) {
  .about-section-item-preim-sec {
    flex-direction: column;
}
  .steps-block-items {
  grid-template-columns: 1fr;
  }
    .news-page-blocks {
      grid-template-columns: 1fr ;
  }
}
@media (max-width: 600px) {
.about-section-item-second {
  grid-column: span 3;
}
.about-section-item-third {
  grid-column: span 2;
}
.about-section-item-third {
  grid-column: span 2;
}
.about-section-item-five {
  grid-column: span 3;
}
.about-section-item h1 {
  font-size: 50px;
}
}
@media (max-width: 550px) {
  .error-sec-btn a {
    padding: 14px 20px;
    font-size: 18px;
  }
  .page-title {
    font-size: 60px;
  }
.backcall-block {
  align-items: stretch;
}
.backcall-block-desc .title {
  font-size: 26px;
  line-height: 150%;
  flex-direction: column;
}
.backcall-block {
  padding: 20px;
}
.news_foto img {
  height: 350px;
}
.news-page .page_title span {
  font-size: 28px;
  line-height: 24px;
}
.news-page-desc {
  gap: 15px;
}
.news_date .node-submitted-details span {
  font-size: 18px;
  line-height: 20px;
}
.news-page {
  gap: 20px;
}
}
@media (max-width: 500px) {
.error-sec-title {
  flex-direction: column;
  gap: 0;
}
}