/* ----------------------------------------------------------
  Colors
------------------------------------------------------------*/
:root {
  --color-txt: rgb(231, 231, 240);

  --color-header-bg: rgb(61, 90, 172);
  --color-header-bg-tr: rgba(0,0,0,0.6);
  --color-header-txt: var(--color-txt);
  --color-header-border: rgb(75, 74, 82);

  --color-menu-bg: var(--color-header-bg);
  --color-menu-bg-tr: var(--color-header-bg-tr);
  --color-menu-txt: var(--color-header-txt);
  --color-menu-bg-active: rgb(98, 181, 230);
  --color-menu-bg-active-tr: rgb(24, 89, 209);
  --color-menu-bg-hover: rgb(168, 190, 212);
  --color-menu-bg-hover-tr: rgb(168, 190, 212);

  --color-banner-txt: rgb(238, 234, 238);

  --color-footer-bg: var(--color-header-bg);
  --color-footer-txt: var(--color-header-txt);

  --color-main-section-bg-odd: rgb(255,255,255);
  --color-main-section-bg-even: rgb(230, 243, 253);

  --color-multi-column-border: rgb(76, 170, 77);

  --color-carousel-prev-next-text: rgb(224, 224, 224);
  --color-carousel-prev-next-bg: rgba(64, 64, 64, 0.6);
  --color-carousel-nav: rgb(160, 160, 160);
  --color-carousel-nav-active: rgb(64, 64, 64);
  --color-carousel-nav-hover: rgb(64, 64, 64);
  --color-carousel-img-caption: rgb(255, 255, 255);

  --color-table-bg-odd: rgb(207, 238, 207);
  --color-table-bg-even: rgb(255, 255, 255);

}

/* ----------------------------------------------------------
  General and body style
------------------------------------------------------------*/
* {
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  margin: 0px;
}

.vertical {
  flex-direction: column;
}

.multi-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* ----------------------------------------------------------
  Header style
------------------------------------------------------------*/
header {
  width: 100%;
}

header.on-banner {
  position: absolute;
  z-index: 999;  
  background: var(--color-header-bg-tr);
}

.header-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: var(--color-header-bg);
  font-size: 1em;
  color: var(--color-header-txt);
  padding: 10px;
  border-bottom: 1px solid var(--color-header-border);
}

header.on-banner .header-top {
  background: var(--color-header-bg-tr);
}

header .header-top a {
  color: var(--color-header-txt);
  font-size: 17px;
  text-decoration: none;
  padding-right: 30px;
}

header .header-top a.social {
  padding-right: 0px;
}

header .header-top a i {
  color: var(--color-header-txt);
  font-size: 20px;
  padding-right: 10px;
}

@media screen and (max-width: 600px) {
  .header-top-mid { display: none; }
  .header-top-right { display: none; }
  header.on-banner {
    background: var(--color-header-bg);
  }
}

/* ----------------------------------------------------------
  Banner
------------------------------------------------------------*/
.layout-banner {
  --banner-darkness: 0.0;
  position: relative;
  top: 0px;
  z-index: 2;
  padding: 213px 0 80px;
  background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/katatorna/img/banner61.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 145px;
  
}

.layout-banner.banner-02 {
  --banner-darkness: 0.5;
  background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/katatorna/img/banner02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-content {
  color: var(--color-banner-txt);
  text-align: center;
  vertical-align: middle;
  font-size: 2em;
  font-weight: bold;
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .layout-banner {
    background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/katatorna/img/banner61mobil.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100px;
    padding: 213px 0 0px;
  }
  .banner-content {
    font-size: 2em;
  }
}
/* ----------------------------------------------------------
  Footer style
------------------------------------------------------------*/
footer {
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--color-footer-txt);
  background: var(--color-footer-bg);
  padding: 10px;
}

footer > div {
  font-size: 1em;
}

footer a {
  color: var(--color-header-txt);
  font-size: 15px;
  text-decoration: none;
  padding-right: 30px;
}

footer a.social {
  padding-right: 0px;
}

footer a i {
  color: var(--color-header-txt);
  font-size: 15px;
  padding-right: 10px;
}

@media screen and (max-width: 600px) {
  .footer-mid { display: none; }
  .footer-right { display: none; }
}

/* ----------------------------------------------------------
  Menu style
------------------------------------------------------------*/
.top-menu {
  background-color: var(--color-menu-bg);
}

header.on-banner .top-menu {
  background-color: var(--color-menu-bg-tr);
}

.top-menu.sticky.fixed {
  position: fixed;
  top: 0px;
  width: 100%;
}

.top-menu.sticky:not(.fixed) {
  position: sticky;
  top: 0px;
  width: 100%;
}

.top-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.top-menu li {
  float: left;
}

.top-menu li a {
  display: block;
  color: var(--color-menu-txt);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.2em;
}

.top-menu li a:hover:not(.active) {
  background-color: var(--color-menu-bg-hover);
  color: var(--color-menu-txt);
}

header.on-banner .top-menu li a:hover:not(.active) {
  background-color: var(--color-menu-bg-hover-tr);
  color: var(--color-menu-txt);
}

.top-menu li a.active {
  color: var(--color-menu-txt);
  background-color: var(--color-menu-bg-active);
}

header.on-banner .top-menu li a.active {
  color: var(--color-menu-txt);
  background-color: var(--color-menu-bg-active-tr);
}

.top-menu li.vertical-menu-icon {
  float: right;
  display: none;
}

@media screen and (max-width: 600px) {
  .top-menu li:not(.active) {display: none;}
  .top-menu li.vertical-menu-icon {
    float: right;
    display: block;
  }
  .top-menu.vertical { 
    position: relative;
  }
  .top-menu.vertical.sticky.fixed { 
    position: fixed;
    top: 0px;
  }
  .top-menu.vertical.sticky:not(.fixed) { 
    position: sticky;
    top: 0px;
  }
  .top-menu.vertical li.vertical-menu-icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .top-menu.vertical li {
    float: none;
    display: block;
  }
  .top-menu.vertical li a {
    text-align: left;
  }
  .top-menu li a {
    padding: 7px 8px;
    font-size: 1.0em;
  }  
}

@media screen and (max-width: 900px) {
  .top-menu li a {
    padding: 7px 8px;
    font-size: 1.1em;
  }  
}
/* ----------------------------------------------------------
  Main
------------------------------------------------------------*/
main {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  max-width: 1400px;
  margin: auto;
}

main section {
  display: flex;
  padding: 10px 20px 10px 20px;
  max-width: 100%;
}

main section:nth-child(odd) {
  background-color: var(--color-main-section-bg-odd);
}

main section:nth-child(even) {
  background-color: var(--color-main-section-bg-even);
}

/* ----------------------------------------------------------
  Map
------------------------------------------------------------*/
.map > iframe {
  max-width: 100%;
  /*max-height: 450px;*/
  border: 1px solid var(--color-multi-column-border);
}

/* ----------------------------------------------------------
  Map
------------------------------------------------------------*/
/* ----------------------------------------------------------
  Section layouts
------------------------------------------------------------*/

/* ----------------------------------------------------------- */
.layout-simple {
  padding: 10px;
  font-size: 17px;
}

/* ----------------------------------------------------------- */
.layout-right-img {
  flex-direction: row-reverse;
}

.layout-right-img.float {
  display: block;
}

.layout-right-img .img img {
  display: block;
  max-width: 250px;
  margin: auto;
  padding: 10px;
  box-shadow: 10px 10px 5px rgb(175, 174, 174);
}

.layout-right-img.float .img img {
  float: right;
  margin-right: 10px;
}

.layout-right-img .text {
  text-align: justify;
  margin: 10px;
  font-size: 17px;
}

.layout-right-img .text h2 {
  text-align: left;
  margin-block-start: 0px;
}

@media screen and (max-width: 600px) {
  .layout-right-img {
    flex-direction: column;
  }
  .layout-right-img .img img {
    display: block;
    max-width: 100%;
    margin: auto;
  }
  .layout-right-img:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-right-img .text p {
    margin-left: 0px;
  }
  .layout-right-img .text h2 {
    margin-block-start: 0.83em;
  }  
  .layout-right-img.float .img img {
    max-width: 100%;
    margin: auto;
    float: none;
  }
}

/* ----------------------------------------------------------- */
.layout-left-img {
  flex-direction: row;
}

.layout-left-img.float {
  display: block;
}

.layout-left-img .img img {
  display: block;
  max-width: 250px;
  margin: 30px;
  padding: 10px;
  box-shadow: 10px 10px 5px rgb(175, 174, 174);
}

.layout-left-img.float .img img {
  float: left;
  margin-right: 10px;
}

.layout-left-img .text {
  text-align: justify;
  margin: 10px;
  font-size: 17px;
}

.layout-left-img .text h2 {
  text-align: left;
  margin-block-start: 0px;
}

@media screen and (max-width: 600px) {
  .layout-left-img {
    flex-direction: column;
  }
  .layout-left-img .img img {
    display: block;
    max-width: 100%;
    margin: auto;
  }
  .layout-left-img:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-left-img .text h2 {
    margin-block-start: 25px;
  }
    .layout-left-img .text p {
    margin-left: 0px;
  }
  .layout-left-img.float .img img {
    max-width: 100%;
    margin: auto;
    float: none;
  }
}

/* ----------------------------------------------------------- */
.layout-left-img-title {
  flex-direction: column;
}

.layout-left-img-title:not(.float) > div {
  display: flex;
  flex-direction: row;
}

.layout-left-img-title .img img {
  display: block;
  max-width: 150px;
  margin: auto;
  padding: 10px;
}

.layout-left-img-title.float .img img {
  float: left;
  margin-right: 10px;
}

.layout-left-img-title .title {
  margin-left: 10px;
  margin-right: 10px;
}

.layout-left-img-title .text {
  text-align: justify;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 600px) {
  .layout-left-img-title {
    flex-direction: column;
  }
  .layout-left-img-title:not(.float) > div {
    flex-direction: column;
  }
  .layout-left-img-title .img img {
    display: block;
    max-width: 100%;
    margin: auto;
  }
  .layout-left-img-title:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-left-img-title .text p {
    margin-left: 0px;
  }
  .layout-left-img-title.float .img img {
    max-width: 100%;
    margin: auto;
    float: none;
  }
}

/* ----------------------------------------------------------- */
.layout-right-img-title {
  flex-direction: column;
}

.layout-right-img-title:not(.float) > div {
  display: flex;
  flex-direction: row-reverse;
}

.layout-right-img-title .img img {
  display: block;
  max-width: 150px;
  margin: auto;
  padding: 10px;
}

.layout-right-img-title.float .img img {
  float: right;
  margin-right: 10px;
}

.layout-right-img-title .title {
  margin-left: 10px;
  margin-right: 10px;
}

.layout-right-img-title .text {
  text-align: justify;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 600px) {
  .layout-right-img-title {
    flex-direction: column;
  }
  .layout-right-img-title:not(.float) > div {
    flex-direction: column;
  }
  .layout-right-img-title .img img {
    display: block;
    max-width: 100%;
    margin: auto;
  }
  .layout-right-img-title:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-right-img-title .text p {
    margin-left: 0px;
  }
  .layout-right-img-title.float .img img {
    max-width: 100%;
    margin: auto;
    float: none;
  }
}

/* ----------------------------------------------------------- */
.layout-multicolumn-img-text-common-title {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 17px;
}

/* ----------------------------------------------------------- */
.layout-multicolumn-boxes-common-title {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 17px;
}

/* ----------------------------------------------------------- */
:root {
  --carousel-inner-width: 400;
}

.mt-carousel {
  display: block;
  width: 100%;
  margin: auto;
  position: relative;
  height: auto;
  touch-action: pan-y;
  box-sizing: border-box;
}

.mt-carousel.mt-outside-ctrl {
  padding: 10px 30px 0px 30px;
}

.mt-carousel-inner {
  overflow: hidden;
  position: relative;
  width: calc(var(--carousel-inner-width) * 1px);
}

.mt-carousel-items {
  width: 10000px;
  position: relative;
  top: 0px;
  left: calc((-1) * var(--carousel-inner-width) * 1px);
}

.mt-carousel-items.shifting {
  transition: left .2s ease-out;
}

.mt-carousel-item {
  float: left;
  width: calc(var(--carousel-inner-width) * 1px);
  display: flex;
  user-select: none;
}

.mt-carousel-item div {
  text-align: center;
  margin: auto;
  font-size: 5em;
}

.mt-carousel-indicator {
  text-align: center;
  height: 25px;
  position: relative;
}

.mt-carousel-inner .mt-carousel-indicator {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
}
.mt-carousel-indicator span {
  height: 5px;
  width: 50px;
  margin: 10px;
  background-color: white;
  display: inline-block;
  cursor: pointer;
}

.mt-carousel-indicator span.active {
  background-color: black;
}

.mt-carousel-indicator span:hover {
  background-color: gray;
}

.mt-carousel-control-prev, .mt-carousel-control-next {
  display: block;
  cursor: pointer;
  color: white;
  padding: 5px;
  font-size: 20px;
  position: absolute;
  top: calc(50% - 5px - 10px); /* padding and font-size/2 will be subtracted to position to the middle */
  width: auto;
}

.mt-carousel-control-prev {
  left: 0px;
}
.mt-carousel-control-next {
  right: 0px;
}

.mt-carousel-control-prev:hover, .mt-carousel-control-next:hover {
  background-color: gray;
}

/* ----------------------------------------------------------
  ...
------------------------------------------------------------*/
section .multi-column-3 {
  margin: 10px;
  max-width: 33%;
  min-width: 150px;
}

section .multi-column-3 img {
  max-width: 100%;
}

section .multi-column-3 p {
  max-width: 100%;
  text-align: justify;
}

section .multi-column.border div {
  border: 1px solid var(--color-multi-column-border);
  padding: 10px;
}

@media screen and (max-width: 800px) {
  .multi-column {
    flex-direction: column;
  }  
  section .multi-column-3 {
    max-width: 100%;
    min-width: 150px;
  }  
}

table.prices {
  max-width: 100%;
  /*max-height: 450px;*/
  /*border: 1px solid var(--color-multi-column-border);*/
  border-collapse: collapse;
}

table.prices td {
  text-align: left;
  padding: 10px;
  /*max-height: 450px;*/
  border: 1px solid var(--color-multi-column-border);
}

table.prices tr:nth-child(odd) {
  background-color: rgba(106, 172, 246, 0.5) 
}

table.prices tr:nth-child(even) {
  background-color: var(--color-table-bg-even);
}

.layout-recommend {
  flex-direction: column;
}

.mt-recommend {
  display: flex;
  padding-left: 10px;
  background-color: white;
}

.mt-recommend img {
  width: 33%;
  max-width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mt-recommend .text{
  padding: 20px;
}

.mt-recommend .title {
  font-size: 15px;
  font-weight: bold;
}

.mt-recommend .text p {
  font-size: 15px;
  text-align: left;
  font-style: italic;
}

.mt-recommend .text p.profile {
  font-size: 15px;
  text-align: center;
  font-style: normal;
}

section.contacts {
  justify-content: flex-start;
}

#contact-img img {
  max-width: 300px;
}

p.contact-subtitle {
font-size: 20px;
font-style: initial
}
#contacts a {
  font-size: 20px;
  margin: 20px;
}

#contacts p {
  font-size: 25px;
  margin: 20px;
}
#contacts a i {
  font-size: 45px;
  margin: 20px;
}
.mt-recommend .text p {
  font-size: 16px;
  text-align: justify;  
}
.mt-recommend .title {
  font-size: 20px;
}

#carousel-recommend.img-container {
  justify-content: center;
}

#carousel-recommend.img-item {
  width: 100%;
  /*min-width: 350px;*/
  padding: 10px 30px 10px 30px;
  margin: 0px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#carousel-recommend {
  width: 100%;
  border: 1px solid gray;
  background: white;
}

#carousel-recommend .mt-carousel-item {
  background: white;
}
#carousel-recommend .mt-carousel-item img {
  width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.3)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}
#carousel-recommend .mt-carousel-item div {
  padding-top: 10px;
  font-size: 14px;
  color: black;
}
#carousel-recommend .mt-carousel-indicator span {
  background-color: lightgray;
}
#carousel-recommend .mt-carousel-indicator span.active {
  background-color: black;
}
#carousel-recommend .mt-carousel-indicator span:hover {
  background-color: none;
}
#carousel-recommend .mt-carousel-control-prev, #carousel-recommend .mt-carousel-control-next {
  color: gray;
}
#carousel-recommend .mt-carousel-control-prev:hover, #carousel-recommend .mt-carousel-control-next:hover {
  background-color: gray;
  color: white;
}

@media screen and (max-width: 600px) {
  .mt-recommend {
    flex-direction: column;
    padding-left: 0px;
  }
  .mt-recommend img {
    width: 80%;
    margin: auto;
    margin-top: 10px;
    max-width: 80%;
  }
  .mt-recommend .text {
    padding: 10px 5px 10px 5px;
  }
  .mt-recommend .text p {
    font-size: 14px;
  }
  #carousel-recommend .mt-carousel-control-prev, #carousel-recommend .mt-carousel-control-next {
    padding: 5px;
    font-size: 20px;
    position: absolute;
    top: calc(25% - 5px - 10px); /* padding and font-size/2 will be subtracted to position to the middle */
  }  
  /* .mt-carousel-item-box.mt-recommend {
    padding-right: 0px;
  }

  .mt-carousel-control-prev,
  .mt-carousel-control-next {
    padding: 3px;
    top: 200px;
  } */
}
/* ----------------------------------------------------------
  Gallery
------------------------------------------------------------*/
.layout-gallery {
  display: block;
}

.layout-gallery .img-container {
  display: flex;
  flex-wrap: wrap;
}

.layout-gallery .img-item {
  max-width: calc(33% - 20px);
  /*min-width: 350px;*/
  padding: 10px;
  margin: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.layout-gallery .img-item img {
  max-width: 100%;
  margin: auto;
}

.layout-gallery .img-item .caption {
  text-align: center;
}

#carousels-01.img-container {
  justify-content: center;
}

#img-carousel-01.img-item {
  max-width: 600px;
  /*min-width: 350px;*/
  padding: 10px 30px 10px 30px;
  margin: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#img-carousel-01 {
  width: 100%;
  border: 1px solid gray;
  background: white;
}

#img-carousel-01 .mt-carousel-item {
  background: white;
  flex-direction: column;
}
#img-carousel-01 .mt-carousel-item img {
  width: 100%;
  object-fit: contain;
  display: block;
}
#img-carousel-01 .mt-carousel-item div {
  padding-top: 10px;
  font-size: 14px;
  color: black;
}
#img-carousel-01 .mt-carousel-indicator span {
  background-color: gray;
}
#img-carousel-01 .mt-carousel-indicator span.active {
  background-color: black;
}
#img-carousel-01 .mt-carousel-indicator span:hover {
  background-color: none;
}
#img-carousel-01 .mt-carousel-control-prev, #img-carousel-01 .mt-carousel-control-next {
  color: gray;
}
#img-carousel-01 .mt-carousel-control-prev:hover, #img-carousel-01 .mt-carousel-control-next:hover {
  background-color: gray;
  color: white;
}


@media screen and (max-width: 950px) {
  .layout-gallery .img-item {
      max-width: calc(48% - 20px);
      /*min-width: 350px;*/
  }
}

@media screen and (max-width: 600px) {
  .layout-gallery .img-container {
      flex-direction: column;
  }
  .layout-gallery .img-item {
      max-width: 100%;
      min-width: 200px;
  }    
  .mt-carousel-indicator span {
    height: 3px;
    width: 30px;
    margin: 5px;
  }
  #img-carousel-01.img-item {
    max-width: 100%;
  }
  #img-carousel-01 .mt-carousel-item div {
      font-size: 12px;
  }      
}
/* ----------------------------------------------------------
  Contacts
------------------------------------------------------------*/
.layout-contacts {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
.contact-info {
  margin-right: 40px;
}
.contact-title {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 20px;
  margin-top: 60px;

}
.contact-row {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
}
.contact-type {
  width: 150px;
  font-weight: bolder;
}
.contact-value {
  flex-grow: 2;
}
.contact-value a {
  text-decoration: none;
}
.contact-value .fa {
  padding-right: 10px;
}
.contact-map  {
  /*max-width: 100%;*/
  /*flex-shrink: 1;*/
}
.contact-map-title  {
  margin-bottom: 40px;
  font-weight: bolder;
}
.contact-map-frame  {
  width: 500px;
  height: 450px;
  border: 1px solid var(--color-multi-column-border);  
}
.layout-contacts .img-item {
  width: 400px;
  padding: 10px;
  margin: 30px 10px 30px 30px;
}
.layout-contacts .img-item img {
  width: 100%;
  margin: auto;
}
.layout-contacts .img-item .caption {
  text-align: center;
  margin-bottom: 20px;
}


@media screen and (max-width: 600px) {
  .layout-contacts {
    flex-direction: column;
  }
  .contact-title {
    padding-bottom: 20px;
    margin-top: 0px;
  }  
  .contact-info {
    margin-right: 0px;
  }  
  .contact-row {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .contact-type {
    width: 150px;
    margin-bottom: 5px;
  }
  .contact-value {
    flex-grow: 1;
  }  
  .contact-map  {
    max-width: 100%;
    margin-bottom: 20px;
  }    
  .contact-map-frame {
    width: 100%;
    height: 350px;
  }
  .layout-contacts .img-item {
    max-width: 100%;
    margin: 10px 0px 0px 0px;
  }
  .layout-contacts .img-item img {
    width: 100%;
    margin: auto;
  }
  .layout-contacts .img-item .caption {
    text-align: center;
    margin-bottom: 20px;
  }
  
}

.price-img {
  margin-top: 25px;
}

@media screen and (max-width: 600px) {
  .price-img {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .no-mobile {
    display: none;
  }  
}

@media screen and (max-width: 900px) {
  .no-mobile {
    display: none;
  }  
}