@charset "UTF-8";
/* PLUGINS */
@import url(../js/library/slick/slick.scss);
/* MAIN DESIGN */
/* common border radius */
/* disable text selection */
/*
FONT WEIGHTS:
    black:    900;
    heavy:    800;
    bold:     700;
    semiBold: 600;
    medium:   500;
    regular:  400;
    light:    300;
    thin:     100;
*/
/* #region GENERAL SETTINGS ============================================================= */
@import "main.css";
@import "navbar.css";
@import "products.css";
@import "other.css";
html, body {
  background: var(--background);
  color: black;
  font-family: proxima-nova, sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1500px) {
  html, body {
    font-size: 58%;
  }
}
@media screen and (max-width: 1240px) {
  html, body {
    font-size: 55%;
  }
}

html.withMenu,
body.withMenu {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */ /* Firefox 1 - 28 */
  box-sizing: border-box; /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}
*:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

h1, .h1 {
  font-size: 4.8rem;
  line-height: 1.1666666667;
  font-weight: 700;
  color: var(--black);
}
h1.smaller, .h1.smaller {
  font-size: 3.6rem;
  line-height: 1.2222222222;
}
@media screen and (max-width: 1000px) {
  h1, .h1 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 800px) {
  h1, .h1 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 630px) {
  h1, .h1 {
    font-size: 3.2rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 360px) {
  h1, .h1 {
    font-size: 2.8rem;
  }
}

h2, .h2 {
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--black);
}
@media screen and (max-width: 1000px) {
  h2, .h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 800px) {
  h2, .h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 630px) {
  h2, .h2 {
    font-size: 2.6rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 360px) {
  h2, .h2 {
    font-size: 2.4rem;
  }
}
h2.cl-white, .h2.cl-white {
  color: white;
}

h3, .h3 {
  font-size: 2.4rem;
  line-height: normal;
  font-weight: 500;
  color: var(--black);
}
@media screen and (max-width: 1000px) {
  h3, .h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 800px) {
  h3, .h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 630px) {
  h3, .h3 {
    font-size: 1.8rem;
    max-width: 100%;
  }
}

h4, .h4 {
  font-size: 1.8rem;
  font-style: normal;
  line-height: normal;
  font-weight: 500;
  color: var(--black);
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--black);
}
p.subheader {
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
}
p.bold {
  font-weight: 600;
}
p.boldunderline {
  font-weight: 600;
  text-decoration: underline;
}
p.smaller {
  font-size: 14px;
  line-height: normal;
}
p.bigger {
  font-size: 18px;
  line-height: 1.3333333333;
}

ul li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}

ol li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}

a {
  color: var(--black);
  text-decoration: underline;
}

.cn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.locked-subpage {
  max-width: 48rem;
}

.tag {
  background: rgba(223, 47, 37, 0.1);
  display: inline-block;
  align-items: center;
  padding: 0 0.6rem;
  height: 2.6rem;
  line-height: 2.6rem;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.tag.tag--with-icon {
  line-height: 1;
  display: inline-flex;
  gap: 0.8rem;
}
.tag.tag--with-icon .icon {
  flex: 0 0 1.6rem;
  width: 1.6rem;
  display: inline-flex;
  justify-content: center;
}
.tag.tag--with-icon span {
  line-height: 1;
}

input, textarea, select {
  color: black;
  font-size: 14px;
  font-family: "Open Sans", Arial, sans-serif;
}

textarea {
  resize: vertical;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a, label, input[type=button], input[type=submit] {
  cursor: pointer;
}

.clear,
.clearfix:after {
  content: " ";
  width: 100%;
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}

.hidden {
  display: none;
}

.container {
  margin: 0 auto;
  position: relative;
  padding: 0 2.5rem;
  width: 100%;
  max-width: calc(1140px + 5rem);
}
@media screen and (max-width: 1000px) {
  .container {
    padding: 0 1.6rem;
  }
}

.container.container--narrow {
  max-width: calc(944px + 5rem);
}

.container.container--content {
  max-width: calc(752px + 5rem);
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* #endregion */
/* #region MOBILE MENU ICON ============================================================= */
.hamburger {
  width: 5rem;
  height: 5rem;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background: var(--red);
  border-radius: 0.4rem;
  /* active state, i.e. menu opened */
}
.hamburger:before {
  display: none;
}
.hamburger:focus {
  outline: none;
}
.hamburger span {
  height: 3px;
  position: absolute;
  top: 20px;
  left: 7px;
  right: 0px;
  display: block;
  background-color: white;
  width: 3.4rem;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 3.4rem;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}
.hamburger span:before {
  top: -6px;
}
.hamburger span:after {
  bottom: -6px;
}
.hamburger--htx {
  background: var(--red);
}
.hamburger--htx span:before {
  transition-property: top, transform;
}
.hamburger--htx span:after {
  transition-property: bottom, transform;
}
.hamburger--htx.is-active {
  background: var(--red);
}
.hamburger--htx.is-active span {
  background: none;
}
.hamburger--htx.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger--htx.is-active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* #endregion */
/* #region SITE HEADER ======================================================================= */
body {
  padding-top: var(--site-header-height);
}

body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  background: black;
  padding: 0;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0px 25px 37px rgba(0, 0, 0, 0.05);
}
.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.site-header .site-header__left-col {
  flex: 0 0 20rem;
}
.site-header .site-header__right-col {
  flex: 1;
  text-align: right;
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header .site-header__right-col .menu-primary {
  margin-right: auto;
  display: flex;
  width: 100%;
}
.site-header .site-header__right-col .menu-primary .menu-right {
  margin-left: auto;
  display: flex;
}
.site-header .site-header__right-col .menu-primary ul {
  list-style-type: none;
}
.site-header .site-header__right-col .menu-primary ul li {
  list-style-type: none;
  align-items: center;
  display: flex;
}
.site-header .site-header__right-col .menu-primary ul li a {
  color: var(--primary);
  font-weight: 500;
}
.site-header #mobileMenu {
  display: none;
}
.site-header nav {
  display: inline-block;
  vertical-align: middle;
}
.site-header ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-header ul li a {
  color: white;
  font-size: 1.5rem;
}
.site-header a.link.red {
  gap: 0.8rem;
  padding: 0;
}

.row.row--langs {
  position: relative;
}
@media screen and (max-width: 700px) {
  .row.row--langs {
    gap: 0.8rem;
  }
}

.header__langs {
  position: relative;
  right: auto;
}
.header__langs a {
  display: inline-flex;
  padding: 0 1.6rem;
  height: 4.8rem;
  line-height: 4.8rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 0.4rem;
  border: 1px solid var(--gray200);
  color: var(--black);
}
.header__langs a:hover {
  border-color: var(--black);
}
.header__langs:hover a {
  border: 1px solid var(--black);
}

.site-header__search {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2rem;
}
.site-header__search.active input {
  padding: 0 5rem 0 2rem;
  width: 30rem;
}
.site-header__search form {
  font-size: 0;
}
.site-header__search input {
  position: absolute;
  z-index: 1;
  right: 1px;
  top: 0;
  height: 100%;
  padding: 0;
  width: 0;
  transition: all 0.3s ease;
  background: white;
}
.site-header__search button {
  position: relative;
  z-index: 2;
  font-size: 0;
  background: black;
  color: white;
  width: 40px;
  text-align: center;
  border: none;
  aspect-ratio: 1/1;
  transition: all 0.3s ease;
}
.site-header__search button:hover {
  cursor: pointer;
  color: red;
}

/* MOBILE VERSION */
@media screen and (max-width: 1100px) {
  .site-header #mobileMenu {
    position: relative;
    display: inline-block;
  }
  .site-header .navbar-logo {
    margin-right: auto;
  }
  .site-header .navbar-menu {
    max-height: 0px;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--site-header-height) + var(--adminbar-height));
    bottom: 0;
    display: block;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    transition: all 0.3s ease;
  }
  .site-header .navbar-menu ul {
    width: 100%;
    padding-right: 0;
  }
  .site-header .navbar-menu ul li {
    text-align: center;
    width: 100%;
  }
  .site-header .navbar-menu ul li a {
    text-align: center;
    width: 100%;
  }
  .site-header .navbar-menu ul li .sub-menu {
    display: block;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1100px) and (max-width: 700px) {
  .site-header .navbar-menu ul li .sub-menu {
    padding: 1.6rem 0;
  }
}
@media screen and (max-width: 1100px) {
  .site-header .navbar-menu .menu-right {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    width: 80%;
    margin: 0 auto;
    justify-content: center;
  }
  .site-header .navbar-menu .menu-right form {
    height: 40px;
    text-align: left;
    vertical-align: middle;
    align-items: center;
    display: flex;
    width: 100%;
  }
  .site-header .navbar-menu ul {
    display: block;
    text-align: center;
  }
  .site-header .navbar-menu ul li {
    margin: 1rem 0;
  }
  .site-header .navbar-menu ul li a {
    padding: 1.5rem 0;
  }
  .site-header.withMenu .navbar-menu {
    max-height: 100vh;
    overflow: auto;
  }
}
@media screen and (max-width: 700px) {
  .site-header .link {
    display: none;
  }
  .site-header .navbar-logo {
    flex: 0 0 12rem;
  }
}
/* #endregion */
/* #region SITE FOOTER ======================================================================= */
.site-footer {
  padding: 4rem 0;
  background: #1B1B1B;
  margin-top: 9rem;
}
.site-footer .h4 {
  color: var(--white);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.site-footer .col--second {
  padding-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .site-footer .col--second {
    padding-left: 0;
  }
}
.site-footer .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .site-footer .row {
    gap: 2.4rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 540px) {
  .site-footer .row {
    grid-template-columns: 1fr;
  }
}
.site-footer .col-3 {
  width: 100%;
}
.site-footer .footer-content {
  padding-top: 2.4rem;
}
.site-footer .footer-content .footer-menu {
  width: var(--100p);
}
.site-footer .footer-content .footer-menu .footer-item {
  width: 100%;
}
.site-footer .footer-content .footer-menu .footer-item.important-link {
  padding-bottom: 1.6rem;
  max-width: 22rem;
}
.site-footer .footer-content .contact-data {
  width: 100%;
  padding-top: 16px;
}
.site-footer .footer-content .contact-data .contact-item {
  display: flex;
  flex-wrap: wrap;
  padding: 4px 0px;
}
.site-footer .footer-content .contact-data .contact-item .icon {
  margin-right: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .site-footer .footer-content .contact-data .contact-item .icon {
    margin-right: 0.8rem;
  }
}
.site-footer .footer-content .contact-data .contact-item .icon img, .site-footer .footer-content .contact-data .contact-item .icon svg {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--white);
}
.site-footer .footer-content .contact-data .contact-item > .contact-link {
  color: #C1C7CD;
  font-size: 1.6rem;
  line-height: 1.5;
  text-decoration: none;
}
.site-footer .footer-content .contact-data .contact-item a.contact-link {
  transition: 0.3s;
}
.site-footer .footer-content .contact-data .contact-item a.contact-link:hover {
  text-decoration: underline;
  color: white;
}
.site-footer .footer-content p {
  color: #C1C7CD;
}
.site-footer .footer-content a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-decoration-line: underline;
  color: var(--gray300);
  transition: all 0.3s ease;
}
.site-footer .footer-content a:hover {
  text-decoration: none;
  color: var(--white);
}
.site-footer .footer-content .company-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}
.site-footer .copyright {
  width: var(--100p);
  padding-top: 4rem;
  border-top: 1px solid #878D96;
  margin-top: 2.4rem;
}
@media screen and (max-width: 600px) {
  .site-footer .copyright {
    padding-top: 2rem;
  }
}
.site-footer .copyright p {
  color: #878D96;
}

/* #endregion */
/* #region VÝPIS PRODUKTŮ ======================================================================= */
.products-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .products-items {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 800px) {
  .products-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .products-items {
    grid-template-columns: 1fr;
  }
}

.product-item {
  display: block;
}

.product-preview {
  position: relative;
  border-radius: 0.8rem;
  background: var(--white);
  text-decoration: none;
  overflow: hidden;
  height: 100%;
  padding-bottom: 7.2rem;
}
@media screen and (max-width: 1000px) {
  .product-preview {
    padding-bottom: 6.4rem;
  }
}
.product-preview .image-box {
  width: 100%;
  aspect-ratio: 368/224;
  background: #cecccd;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-preview .content-box {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .product-preview .content-box {
    padding: 1.6rem;
  }
}
.product-preview .content-box .main-data p.h3 {
  color: var(--black);
  margin-bottom: 16px;
}
.product-preview .content-box .main-data p {
  color: #878D96;
}
.product-preview .link {
  position: absolute;
  left: 2.4rem;
  bottom: 2.4rem;
  width: calc(100% - 4.8rem);
}
@media screen and (max-width: 1000px) {
  .product-preview .link {
    left: 1.6rem;
    bottom: 1.6rem;
    width: calc(100% - 3.2rem);
  }
}

.product-points {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .product-points {
    margin-top: 1.6rem;
  }
}

.product-point-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.product-point-item .icon {
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-point-item .icon svg, .product-point-item .icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.product-point-item .text {
  flex: 1;
  color: #878D96;
}

/* #endregion */
/* #region Sekce kde droven využít ======================================================================= */
.section.section--moznosti-reseni .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 740px) {
  .section.section--moznosti-reseni .container {
    flex-wrap: wrap;
  }
}
.section.section--moznosti-reseni .container .left-col {
  flex: 0 0 50%;
  width: 50%;
  padding-right: 2.4rem;
}
@media screen and (max-width: 740px) {
  .section.section--moznosti-reseni .container .left-col {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
}
.section.section--moznosti-reseni .container .left-col .tag {
  margin-bottom: 0.8rem;
}
.section.section--moznosti-reseni .container .left-col .text {
  margin-top: 1.6rem;
  max-width: 47rem;
}
@media screen and (max-width: 740px) {
  .section.section--moznosti-reseni .container .left-col .text {
    margin-left: auto;
    margin-right: auto;
  }
}
.section.section--moznosti-reseni .container .left-col .text p {
  color: var(--gray400);
}
.section.section--moznosti-reseni .container .right-col {
  flex: 0 0 50%;
  width: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .section.section--moznosti-reseni .container .right-col {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 740px) {
  .section.section--moznosti-reseni .container .right-col {
    flex: 0 0 100%;
    width: 100%;
    padding-top: 2.4rem;
  }
}
@media screen and (max-width: 420px) {
  .section.section--moznosti-reseni .container .right-col {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section.section--moznosti-reseni .container .right-col .solving-point {
  display: block;
  padding: 1.6rem;
  border-radius: 0.4rem;
  background: var(--white);
  transition: all 0.3s ease;
  border: 1px solid var(--white);
}
.section.section--moznosti-reseni .container .right-col .solving-point:hover {
  border-color: var(--red);
}
@media screen and (max-width: 420px) {
  .section.section--moznosti-reseni .container .right-col .solving-point {
    grid-column: span 2;
  }
  .section.section--moznosti-reseni .container .right-col .solving-point:nth-of-type(3) {
    grid-column: 2/4;
  }
}
.section.section--moznosti-reseni .container .right-col .solving-point .icon {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.section.section--moznosti-reseni .container .right-col .solving-point .icon img, .section.section--moznosti-reseni .container .right-col .solving-point .icon svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.section.section--moznosti-reseni .container .right-col .solving-point p.title {
  margin: 0.8rem 0 1.6rem 0;
}

/* #endregion */
/* #region VÝPIS ČLÁNků ======================================================================= */
.categories-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .categories-tags {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 630px) {
  .categories-tags {
    justify-content: center;
  }
}
.categories-tags .category-tag {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  height: 3.2rem;
  line-height: 3rem;
  padding: 0 3.6rem 0 1.6rem;
  background: rgba(223, 47, 37, 0.13);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  border-radius: 1.6rem;
  color: var(--red);
  font-size: 1.6rem;
}
.categories-tags .category-tag:hover, .categories-tags .category-tag.active {
  border-color: var(--red);
}
.categories-tags .category-tag.active:after {
  transform: translateY(-50%) scale(1);
}
.categories-tags .category-tag:before {
  position: absolute;
  content: "";
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  aspect-ratio: 1/1;
  border-radius: 0.6rem;
  border: 1px solid var(--red);
  box-sizing: border-box;
}
.categories-tags .category-tag:after {
  position: absolute;
  content: "";
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-radius: 0.6rem;
  background: var(--red);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.posts-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .posts-items {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 700px) {
  .posts-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 440px) {
  .posts-items {
    grid-template-columns: 1fr;
  }
}

.post-item {
  display: block;
  border-radius: 0.8rem;
  overflow: hidden;
  background: white;
}
.post-item:hover .aktuality-box-content .title {
  color: var(--red);
  text-decoration: underline;
}
.post-item .image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 368/224;
  background: #cecccd;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-item .image-box .category-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  height: 3rem;
  line-height: 3rem;
  display: flex;
  align-items: center;
  border-radius: 0 0 0.4rem 0;
}
.post-item .image-box .category-tag p {
  color: var(--black);
  font-size: 14px;
  line-height: normal;
}
.post-item .aktuality-box-content {
  padding: 2.4rem;
  background: var(--white);
}
@media screen and (max-width: 1000px) {
  .post-item .aktuality-box-content {
    padding: 1.6rem;
  }
}
.post-item .aktuality-box-content .date {
  color: var(--gray400);
  max-width: 32rem;
}
.post-item .aktuality-box-content .title {
  font-weight: 600;
  color: var(--black);
  margin: 0.8rem 0px;
  max-width: 32rem;
  transition: all 0.3s ease;
}
.post-item .aktuality-box-content .description {
  color: var(--gray400);
  max-width: 32rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray200, #DDE1E6);
}
.pagination .page-numbers {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  background: transparent;
  color: var(--gray400);
  border-radius: 0.8rem;
  text-align: center;
}
.pagination .page-numbers.current {
  background: var(--black);
  color: white;
}
/* #endregion */
/* #region Záhlaví stránky ======================================================================= */
.section.section--page-top {
  padding: 0;
  background: white;
  position: relative;
}
.section.section--page-top .container .left-col {
  padding: 6.4rem 0;
  max-width: 48rem;
}
@media screen and (max-width: 800px) {
  .section.section--page-top .container .left-col {
    max-width: 42rem;
  }
}
@media screen and (max-width: 630px) {
  .section.section--page-top .container .left-col {
    max-width: 100%;
    text-align: center;
    padding: 4rem 0;
  }
}
.section.section--page-top .container .left-col .tag {
  margin-bottom: 0.8rem;
}
.section.section--page-top .container .left-col h1 {
  color: var(--black, #1B1B1B);
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2222222222;
}
@media screen and (max-width: 1000px) {
  .section.section--page-top .container .left-col h1 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 800px) {
  .section.section--page-top .container .left-col h1 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 630px) {
  .section.section--page-top .container .left-col h1 {
    font-size: 3rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .section.section--page-top .container .left-col h1 {
    font-size: 2.8rem;
  }
}
.section.section--page-top .container .left-col .link {
  margin-top: 0.8rem;
}
.section.section--page-top .image-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  font-size: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 2800px) {
  .section.section--page-top .image-right {
    width: 50%;
    position: absolute;
    max-width: 580px;
    left: 50%;
  }
}
@media screen and (max-width: 850px) {
  .section.section--page-top .image-right {
    width: 40%;
  }
}
@media screen and (max-width: 630px) {
  .section.section--page-top .image-right {
    width: 100%;
    position: relative;
    aspect-ratio: 710/340;
    height: auto;
  }
}

/* #endregion */
/* #region Kontaktní formulář ======================================================================= */
.contact-form-wrap {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.contact-form-wrap .info-data {
  flex: 0 0 42%;
  width: 42%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .contact-form-wrap .info-data {
    flex: 0 0 100%;
    width: 100%;
  }
}
.contact-form-wrap .info-data .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-form-wrap .info-data .background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 27, 0.92);
}
@media screen and (max-width: 800px) {
  .contact-form-wrap .info-data .background-layer {
    position: relative;
  }
}
.contact-form-wrap .info-data .background-layer .content {
  position: relative;
  padding: 7rem 5rem;
  width: 100%;
  height: 100%;
  color: var(--white);
}
@media screen and (max-width: 1000px) {
  .contact-form-wrap .info-data .background-layer .content {
    padding: 3.5rem 2.4rem;
  }
}
.contact-form-wrap .info-data .background-layer .content .contact-data {
  width: 100%;
  padding-top: 16px;
}
.contact-form-wrap .info-data .background-layer .content .contact-data .contact-item {
  display: flex;
  flex-wrap: wrap;
  padding: 4px 0px;
}
.contact-form-wrap .info-data .background-layer .content .contact-data .contact-item .icon {
  margin-right: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 400px) {
  .contact-form-wrap .info-data .background-layer .content .contact-data .contact-item .icon {
    margin-right: 0.8rem;
  }
}
.contact-form-wrap .info-data .background-layer .content .contact-data .contact-item .icon img, .contact-form-wrap .info-data .background-layer .content .contact-data .contact-item .icon svg {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--white);
}
.contact-form-wrap .info-data .background-layer .content .contact-data .contact-item .contact-link {
  color: #C1C7CD;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}
.contact-form-wrap .info-data .background-layer .content .contact-data .contact-item a.contact-link {
  transition: 0.3s;
}
.contact-form-wrap .info-data .background-layer .content .contact-data .contact-item a.contact-link:hover {
  text-decoration: underline;
  color: white;
}
.contact-form-wrap .info-data .background-layer .content .other-data {
  width: 100%;
  padding-top: 24px;
}
.contact-form-wrap .info-data .background-layer .content .other-data .contact-item {
  display: flex;
  flex-wrap: wrap;
  padding: 4px 0px;
}
.contact-form-wrap .info-data .background-layer .content .other-data .contact-item .icon {
  margin-right: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-form-wrap .info-data .background-layer .content .other-data .contact-item .icon img, .contact-form-wrap .info-data .background-layer .content .other-data .contact-item .icon svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--white);
}
.contact-form-wrap .info-data .background-layer .content .other-data .contact-item .contact-link {
  color: #C1C7CD;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}
.contact-form-wrap .info-data .background-layer .content .other-data .contact-item a.contact-link {
  transition: 0.3s;
}
.contact-form-wrap .info-data .background-layer .content .other-data .contact-item a.contact-link:hover {
  text-decoration: underline;
}
.contact-form-wrap .info-data .background-layer .content .linkedin {
  margin-top: 24px;
  position: relative;
  text-decoration: none;
  border: 1px solid var(--Grey-400, #878D96);
  display: flex;
  padding: 4px 8px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  color: var(--Grey-300, #C1C7CD);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.contact-form-wrap .info-data .background-layer .content .linkedin:hover {
  border: 1px solid var(--Grey-400, #fff);
  color: var(--white);
}
.contact-form-wrap .info-data .background-layer .content .linkedin img, .contact-form-wrap .info-data .background-layer .content .linkedin svg {
  margin-right: 4px;
  width: 24px;
  height: 24px;
}
.contact-form-wrap .form-data {
  flex: 0 0 58%;
  width: 58%;
  padding: 5rem 7rem;
}
@media screen and (max-width: 1000px) {
  .contact-form-wrap .form-data {
    padding: 3.2rem;
  }
}
@media screen and (max-width: 800px) {
  .contact-form-wrap .form-data {
    flex: 0 0 100%;
    width: 100%;
  }
}
.contact-form-wrap .form-data .h2 {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1000px) {
  .contact-form-wrap .form-data .h2 {
    margin-bottom: 2.4rem;
  }
}

/* #endregion */
/* #region Sekce kde koupit ======================================================================= */
.section.section--kde-koupit {
  text-align: center;
}

.kde-koupit-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1000px) {
  .kde-koupit-tiles {
    gap: 0.8rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .kde-koupit-tiles {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 430px) {
  .kde-koupit-tiles {
    grid-template-columns: 1fr;
  }
}

.partner-box {
  padding: 2.4rem;
  background: white;
  border-radius: 0.4rem;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .partner-box {
    padding: 1.6rem;
  }
}
.partner-box .logo {
  max-width: 5.8rem;
  max-height: 2rem;
  margin-bottom: 1.6rem;
}
.partner-box .link.red {
  padding: 0;
  height: auto;
  line-height: 1;
  margin-top: 1.6rem;
}

.partner-box:not(.partner-box--last) {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.partner-box--last p.h3 {
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

/* #endregion */
.section.section--heading-text .container {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .section.section--heading-text .container {
    gap: 0.8rem;
  }
}
.section.section--heading-text .container .left-col {
  padding-right: 2.4rem;
  flex: 0 0 32.5%;
  width: 32.5%;
}
@media screen and (max-width: 700px) {
  .section.section--heading-text .container .left-col {
    flex: 0 0 40.5%;
    width: 40.5%;
  }
}
@media screen and (max-width: 630px) {
  .section.section--heading-text .container .left-col {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 1.6rem;
  }
}
.section.section--heading-text .container .left-col h2 {
  max-width: 27rem;
}
@media screen and (max-width: 630px) {
  .section.section--heading-text .container .left-col h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
.section.section--heading-text .container .right-col {
  flex: 1;
}
.section.section--heading-text .container .right-col .text {
  max-width: 66rem;
}
.section.section--heading-text .container .right-col p {
  color: var(--gray400);
}

.section.section--content-image .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section.section--content-image .container .left-col {
  padding-right: 5.6rem;
  flex: 0 0 50%;
  width: 50%;
}
@media screen and (max-width: 630px) {
  .section.section--content-image .container .left-col {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 1.6rem;
  }
}
.section.section--content-image .container .left-col h2 {
  max-width: 27rem;
}
@media screen and (max-width: 630px) {
  .section.section--content-image .container .left-col h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
.section.section--content-image .container .left-col .mobile-image {
  display: none;
}
@media screen and (max-width: 630px) {
  .section.section--content-image .container .left-col .mobile-image {
    display: block;
    margin: 2.4rem auto;
  }
}
.section.section--content-image .container .left-col .text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 2.4rem 0;
}
.section.section--content-image .container .left-col p {
  color: var(--gray400);
}
.section.section--content-image .container .right-col {
  flex: 0 0 50%;
  width: 50%;
}
@media screen and (max-width: 630px) {
  .section.section--content-image .container .right-col {
    display: none;
  }
}
.section.section--content-image .container .right-col img {
  border-radius: 0.8rem;
}

.section.section--spoluprace .inner, .banner .inner {
  border-radius: 0.8rem;
  width: 100%;
  padding: 6.4rem;
  background-color: var(--black);
  background-image: url("../images/spoluprace-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 113rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .section.section--spoluprace .inner, .banner .inner {
    padding: 4rem 2rem;
  }
}
.section.section--spoluprace .inner .small-title, .banner .inner .small-title {
  color: var(--gray400, #878D96);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.section.section--spoluprace .inner .h1, .banner .inner .h1 {
  color: var(--white);
  margin: 3.2rem auto;
  max-width: 57.7rem;
  text-align: center;
  font-weight: 500;
}
.section.section--spoluprace .inner .link, .banner .inner .link {
  margin: 0 auto;
  display: inline-block;
}

.section--content-with-white-tiles {
  text-align: center;
}
.section--content-with-white-tiles .inner {
  max-width: 62rem;
  margin: 0 auto;
}
.section--content-with-white-tiles .inner .text {
  margin-top: 1.6rem;
}
.section--content-with-white-tiles .inner .text p {
  color: var(--gray400);
}
.section--content-with-white-tiles .white-tiles-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.2rem;
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .section--content-with-white-tiles .white-tiles-items {
    gap: 0.8rem;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .section--content-with-white-tiles .white-tiles-items {
    grid-template-columns: 1fr;
  }
}
.section--content-with-white-tiles .white-tiles-items .white-tile {
  background: white;
  border-radius: 0.8rem;
  padding: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .section--content-with-white-tiles .white-tiles-items .white-tile {
    padding: 1.6rem;
  }
}
.section--content-with-white-tiles .white-tiles-items .white-tile p.big-red {
  font-size: 4.6rem;
  line-height: 1.2173913043;
  text-align: center;
  font-weight: 500;
  color: var(--red);
}
@media screen and (max-width: 1000px) {
  .section--content-with-white-tiles .white-tiles-items .white-tile p.big-red {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 800px) {
  .section--content-with-white-tiles .white-tiles-items .white-tile p.big-red {
    font-size: 4rem;
  }
}
@media screen and (max-width: 630px) {
  .section--content-with-white-tiles .white-tiles-items .white-tile p.big-red {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 360px) {
  .section--content-with-white-tiles .white-tiles-items .white-tile p.big-red {
    font-size: 3.2rem;
  }
}
.section--content-with-white-tiles .white-tiles-items .white-tile p.small {
  color: var(--gray400);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .gallery {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 360px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.gallery .gallery-item {
  font-size: 0;
}
.gallery .gallery-item img {
  border-radius: 0.8rem;
}

.section.section--download .container {
  display: grid;
  align-items: start;
  gap: 1.6rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1000px) {
  .section.section--download .container {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 860px) {
  .section.section--download .container {
    grid-template-columns: 1fr;
  }
}
.section.section--download .container .left-col {
  padding-right: 9rem;
}
@media screen and (max-width: 860px) {
  .section.section--download .container .left-col {
    padding-right: 0;
    padding-bottom: 2.4rem;
    text-align: center;
  }
}
.section.section--download .container .left-col .text {
  max-width: 46rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 860px) {
  .section.section--download .container .left-col .text {
    margin-left: auto;
    margin-right: auto;
  }
}
.section.section--download .container .left-col .text p {
  color: var(--gray400);
}

.downloads-files-items {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1000px) {
  .downloads-files-items {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 450px) {
  .downloads-files-items {
    grid-template-columns: 1fr;
  }
}

.download-file-item {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 3.2rem;
  border-radius: 0.4rem;
  text-align: center;
  flex-direction: column;
}
@media screen and (max-width: 1050px) {
  .download-file-item {
    padding: 2.4rem 1.6rem;
  }
}
.download-file-item p.file-info {
  text-transform: uppercase;
  color: var(--gray400);
  margin: 0.6rem 0 1.8rem 0;
}

.dropdown-lang {
  position: absolute;
  top: 90%;
  background: var(--white);
  width: 100%;
  display: none;
  z-index: 5;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--gray200);
  border-top: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  transition: 0.3s;
}
.dropdown-lang a {
  border: none;
  color: var(--gray400);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.header__langs:hover .dropdown-lang {
  display: block;
  text-align: right;
  border-color: #1B1B1B;
  transition: 0.3s;
}
.header__langs:hover .dropdown-lang a {
  border: transparent !important;
}

/* COMPONENTS */
/* common border radius */
/* disable text selection */
.link, a.btn,
.editor-styles-wrapper .gt-block a.btn,
.wp-block-button__link {
  display: inline-flex;
  padding: 0 1.6rem;
  height: 4.8rem;
  line-height: 4.8rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  text-decoration: none;
  border: 1px solid var(--red);
  transition: 0.3s;
  border-radius: 0.4rem;
}
.link.full-size, a.btn.full-size,
.editor-styles-wrapper .gt-block a.btn.full-size,
.wp-block-button__link.full-size {
  width: 100%;
  text-align: center;
}
.link svg path, a.btn svg path,
.editor-styles-wrapper .gt-block a.btn svg path,
.wp-block-button__link svg path {
  fill: var(--white);
}
.link:hover, a.btn:hover,
.editor-styles-wrapper .gt-block a.btn:hover,
.wp-block-button__link:hover {
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
}
.link:hover svg path, a.btn:hover svg path,
.editor-styles-wrapper .gt-block a.btn:hover svg path,
.wp-block-button__link:hover svg path {
  fill: var(--red);
}
.link.red, a.btn.red,
.editor-styles-wrapper .gt-block a.btn.red,
.wp-block-button__link.red {
  background: transparent;
  color: var(--red);
  border: 0px;
}
.link.red svg, .link.red img, a.btn.red svg, a.btn.red img,
.editor-styles-wrapper .gt-block a.btn.red svg,
.editor-styles-wrapper .gt-block a.btn.red img,
.wp-block-button__link.red svg,
.wp-block-button__link.red img {
  transition: 0.3s;
}
.link.red svg path, a.btn.red svg path,
.editor-styles-wrapper .gt-block a.btn.red svg path,
.wp-block-button__link.red svg path {
  fill: var(--red);
}
.link.red:hover svg, .link.red:hover img, a.btn.red:hover svg, a.btn.red:hover img,
.editor-styles-wrapper .gt-block a.btn.red:hover svg,
.editor-styles-wrapper .gt-block a.btn.red:hover img,
.wp-block-button__link.red:hover svg,
.wp-block-button__link.red:hover img {
  transform: translateX(4px);
}

/* #endregion */
/* common border radius */
/* disable text selection */
.contact-form label.checkbox {
  display: block;
  position: relative;
  padding-left: 2.4rem;
  color: var(--black);
  font-size: 14px;
  text-align: left;
  margin-bottom: 1.6rem;
}
.contact-form label.checkbox .icheckbox {
  position: absolute;
  left: 0;
  top: 2px;
}
.contact-form label.checkbox a {
  text-decoration: underline;
}
.contact-form label.checkbox a:hover {
  text-decoration: none;
}

.icheckbox {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0.6rem 0 0;
  display: inline-block;
  vertical-align: top;
  background: white;
  border: 1px solid var(--gray200);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  transition: all 0.3s ease;
  border-radius: 0.4rem;
}
.icheckbox:after {
  content: " ";
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.385' height='18.385' viewBox='0 0 18.385 18.385'%3E%3Cg id='Group_349' data-name='Group 349' transform='translate(9.087 -33.129) rotate(45)'%3E%3Cg id='Group_27' data-name='Group 27' transform='translate(17.955 17.955)'%3E%3Crect id='Rectangle_20' data-name='Rectangle 20' width='24' height='2' rx='1' transform='translate(11.045 23.896) rotate(-90)' fill='%23fff'/%3E%3Crect id='Rectangle_27' data-name='Rectangle 27' width='24' height='2' rx='1' transform='translate(0.045 10.896)' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  background-size: 56%;
}
.icheckbox.hover {
  border-color: var(--black);
}
.icheckbox.checked {
  background: var(--black);
  border-color: var(--black);
}
.icheckbox.checked:after {
  opacity: 1;
}

.checkbox span {
  font-weight: 400;
}

/* common border radius */
/* disable text selection */
.slick-arrow {
  width: 6.4rem;
  height: 6.4rem;
  position: absolute;
  top: 50%;
  display: block;
  border-radius: 50%;
  background-color: grey;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Cg id='Group_2' data-name='Group 2' transform='translate(-0.162)'%3E%3Crect id='Rectangle_28' data-name='Rectangle 28' width='26' height='26' transform='translate(0.162)' fill='%23fff' opacity='0'/%3E%3Cg id='Group_1' data-name='Group 1' transform='translate(10 5)'%3E%3Cpath id='Path_1' data-name='Path 1' d='M2646.564,4075.4h0a3.2,3.2,0,0,1,0-4.528l3.342-3.342-3.342-3.342a3.2,3.2,0,0,1,0-4.527h0l7.87,7.869Z' transform='translate(-2645.626 -4059.663)' fill='%23121524'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  transition: all 0.3s ease;
}
.slick-arrow:hover {
  background-color: grey;
}
.slick-arrow.prev {
  left: 0;
  transform: rotate(-180deg);
}
.slick-arrow.next {
  right: 0;
}
.slick-arrow.slick-hidden, .slick-arrow.slick-disabled {
  display: none;
}

.slick-dots {
  width: 100%;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  padding: 0 1.4rem;
  display: inline-block;
  vertical-align: top;
}
.slick-dots li button {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 50px;
  border-radius: 50%;
  background: #C4C6CF;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slick-dots li button:hover {
  background: black;
}
.slick-dots li.slick-active button {
  background: black;
}

/* common border radius */
/* disable text selection */
@keyframes loader-an {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.gt-block form,
.editor-styles-wrapper .gt-block form,
.contact-form {
  position: relative;
  /* clear */
  /* loading */
  /* loading */
}
.gt-block form:after,
.editor-styles-wrapper .gt-block form:after,
.contact-form:after {
  content: " ";
  width: 100%;
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}
.gt-block form .form-loader,
.editor-styles-wrapper .gt-block form .form-loader,
.contact-form .form-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: inline-block;
  width: 5rem;
  height: 5rem;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
  border: 2px solid currentColor;
  background: rgba(var(--black-rgb), 0.1);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}
.gt-block form.loading div.inputs,
.editor-styles-wrapper .gt-block form.loading div.inputs,
.contact-form.loading div.inputs {
  filter: blur(5px);
  opacity: 0.5;
  pointer-events: none;
}
.gt-block form.loading .form-loader,
.editor-styles-wrapper .gt-block form.loading .form-loader,
.contact-form.loading .form-loader {
  animation: loader-an 1s ease-out infinite;
}
.gt-block form label,
.editor-styles-wrapper .gt-block form label,
.contact-form label {
  color: var(--black, #1B1B1B);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.gt-block form .input,
.editor-styles-wrapper .gt-block form .input,
.contact-form .input {
  margin-bottom: 1.6rem;
}
.gt-block form input[type=text],
.gt-block form textarea,
.editor-styles-wrapper .gt-block form input[type=text],
.editor-styles-wrapper .gt-block form textarea,
.contact-form input[type=text],
.contact-form textarea {
  width: 100%;
  height: 4.8rem;
  line-height: 4.6rem;
  padding: 0 1.6rem;
  border: 1px solid var(--gray200);
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 0.8rem;
}
.gt-block form input[type=text]:hover, .gt-block form input[type=text]:focus,
.gt-block form textarea:hover,
.gt-block form textarea:focus,
.editor-styles-wrapper .gt-block form input[type=text]:hover,
.editor-styles-wrapper .gt-block form input[type=text]:focus,
.editor-styles-wrapper .gt-block form textarea:hover,
.editor-styles-wrapper .gt-block form textarea:focus,
.contact-form input[type=text]:hover,
.contact-form input[type=text]:focus,
.contact-form textarea:hover,
.contact-form textarea:focus {
  border-color: var(--black);
}
.gt-block form input[type=text]::-webkit-input-placeholder,
.gt-block form textarea::-webkit-input-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]::-webkit-input-placeholder,
.editor-styles-wrapper .gt-block form textarea::-webkit-input-placeholder,
.contact-form input[type=text]::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--gray400);
  opacity: 1;
}
.gt-block form input[type=text]::-moz-placeholder,
.gt-block form textarea::-moz-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]::-moz-placeholder,
.editor-styles-wrapper .gt-block form textarea::-moz-placeholder,
.contact-form input[type=text]::-moz-placeholder,
.contact-form textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--gray400);
  opacity: 1;
}
.gt-block form input[type=text]:-ms-input-placeholder,
.gt-block form textarea:-ms-input-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]:-ms-input-placeholder,
.editor-styles-wrapper .gt-block form textarea:-ms-input-placeholder,
.contact-form input[type=text]:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder { /* IE 10+ */
  color: var(--gray400);
  opacity: 1;
}
.gt-block form input[type=text]:-moz-placeholder,
.gt-block form textarea:-moz-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]:-moz-placeholder,
.editor-styles-wrapper .gt-block form textarea:-moz-placeholder,
.contact-form input[type=text]:-moz-placeholder,
.contact-form textarea:-moz-placeholder { /* Firefox 18- */
  color: var(--gray400);
  opacity: 1;
}
.gt-block form textarea,
.editor-styles-wrapper .gt-block form textarea,
.contact-form textarea {
  height: 180px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 30px;
}
.gt-block form span.errorEmpty,
.gt-block form span.errorFormat,
.gt-block form span.errorData,
.editor-styles-wrapper .gt-block form span.errorEmpty,
.editor-styles-wrapper .gt-block form span.errorFormat,
.editor-styles-wrapper .gt-block form span.errorData,
.contact-form span.errorEmpty,
.contact-form span.errorFormat,
.contact-form span.errorData {
  display: block;
  overflow: hidden;
  color: var(--red);
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s ease;
  max-height: 0px;
  padding: 0;
  opacity: 0;
}
.gt-block form .hasErrorEmpty span.errorEmpty,
.gt-block form .hasErrorFormat span.errorFormat,
.gt-block form .hasErrorData span.errorData,
.editor-styles-wrapper .gt-block form .hasErrorEmpty span.errorEmpty,
.editor-styles-wrapper .gt-block form .hasErrorFormat span.errorFormat,
.editor-styles-wrapper .gt-block form .hasErrorData span.errorData,
.contact-form .hasErrorEmpty span.errorEmpty,
.contact-form .hasErrorFormat span.errorFormat,
.contact-form .hasErrorData span.errorData {
  max-height: 40px;
  padding: 4px 0 6px 0;
  opacity: 1;
}
.gt-block form .hasErrorEmpty input[type=text],
.gt-block form .hasErrorEmpty textarea,
.gt-block form .hasErrorFormat input[type=text],
.gt-block form .hasErrorFormat textarea,
.gt-block form .hasErrorData input[type=text],
.gt-block form .hasErrorData textarea,
.editor-styles-wrapper .gt-block form .hasErrorEmpty input[type=text],
.editor-styles-wrapper .gt-block form .hasErrorEmpty textarea,
.editor-styles-wrapper .gt-block form .hasErrorFormat input[type=text],
.editor-styles-wrapper .gt-block form .hasErrorFormat textarea,
.editor-styles-wrapper .gt-block form .hasErrorData input[type=text],
.editor-styles-wrapper .gt-block form .hasErrorData textarea,
.contact-form .hasErrorEmpty input[type=text],
.contact-form .hasErrorEmpty textarea,
.contact-form .hasErrorFormat input[type=text],
.contact-form .hasErrorFormat textarea,
.contact-form .hasErrorData input[type=text],
.contact-form .hasErrorData textarea {
  border-color: var(--red);
}
.gt-block form div.inputs,
.editor-styles-wrapper .gt-block form div.inputs,
.contact-form div.inputs {
  /* clear */
}
.gt-block form div.inputs:after,
.editor-styles-wrapper .gt-block form div.inputs:after,
.contact-form div.inputs:after {
  content: " ";
  width: 100%;
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}
.gt-block form div.sent,
.editor-styles-wrapper .gt-block form div.sent,
.contact-form div.sent {
  padding: 0.8rem 0;
  background: #15bb06;
  border-radius: 0.4rem;
  color: black;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 1.6rem;
}
.gt-block form div.sent a,
.editor-styles-wrapper .gt-block form div.sent a,
.contact-form div.sent a {
  text-decoration: underline;
  width: 100%;
}
.gt-block form div.sent a:hover,
.editor-styles-wrapper .gt-block form div.sent a:hover,
.contact-form div.sent a:hover {
  text-decoration: none;
}
.gt-block form div.sent p,
.editor-styles-wrapper .gt-block form div.sent p,
.contact-form div.sent p {
  color: white;
}
.gt-block form .btn,
.editor-styles-wrapper .gt-block form .btn,
.contact-form .btn {
  width: 100%;
}

/* PAGES (better to include direct CSS file on the page) */
/*@import url(pages/XXX.scss);*/
/* BLOCKS  (better to include direct CSS file with the block) */
/* common border radius */
/* disable text selection */
section.gt-block,
.editor-styles-wrapper section.gt-block {
  position: relative;
}
section.gt-block .center,
.editor-styles-wrapper section.gt-block .center {
  width: 1140px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  section.gt-block .center,
  .editor-styles-wrapper section.gt-block .center {
    width: auto;
    margin: 0 30px;
  }
}

/*@import url(blocks/XXX.scss);*//*# sourceMappingURL=style.css.map */