/* Layout */
/* Screen sizes */
/* Colors */
/* Fonts */
/* Font sizes */
/* Transitions */
/* Others */
/* GENERAL Settings
   ==================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap");
body {
  width: 100%;
  padding-top: 0;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1040;
  display: none;
}

img {
  max-width: 100%;
}

/* LAYOUT - Sections padding
   ==================================================================== */
body section {
  padding: 1rem 0;
}

body#home section, body#home section#services {
  padding: 3rem 0 5rem;
}

body section:last-of-type {
  padding-bottom: 6rem;
}

@media (min-width: 992px) {
  body:not(#home) section:first-of-type {
    padding-top: 9rem;
  }
  body:not(#home) section#portfolio {
    padding-top: 11rem;
  }
}

@media (max-width: 991px) {
  body section:first-of-type {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  body#home section, body#home section#services {
    padding: 3rem 0 4rem;
  }
  body#home #features1 {
    padding-bottom: 0;
  }
}

/* LISTS Without list styling
   ==================================================================== */
.no-list {
  list-style: none;
}

.no-list li {
  margin: 0.5rem auto;
}

/* TOOLTIPS
   ==================================================================== */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted gray;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: initial;
  opacity: 1;
  cursor: help;
}

.tooltip .tooltip-text {
  visibility: hidden;
  min-width: 7.5rem;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 0.25rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.tooltip .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

/* ICONS in tables (tick, cross)
   ==================================================================== */
[class*="icon-"] {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  vertical-align: text-top;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-yes {
  background-image: url("/assets/img/inpage/icons/tick.svg");
}

.icon-no {
  background-image: url("/assets/img/inpage/icons/cross.svg");
}

/* Cookies consent
   ==================================================================== */
.cc-container {
  position: fixed;
  bottom: 0;
  background: white;
  width: 100%;
  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;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  -webkit-box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.cc-container .cc-message {
  font-size: 1rem;
  margin: 0;
}

.cc-container .cc-btn {
  font-size: 1rem;
  margin-left: 2rem;
}

@media (max-width: 767px) {
  .cc-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cc-container .cc-btn {
    margin: 1rem auto 0;
  }
}

/* Live chat
   ==================================================================== */
.lhc-container,
#lhc_status_container {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  width: 18rem;
  padding: 0;
  background-color: #fff;
  font-size: 1rem;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.lhc-container .lhc-link,
#lhc_status_container .lhc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem;
}

.lhc-container .lhc-link:hover,
#lhc_status_container .lhc-link:hover {
  text-decoration: none;
}

.lhc-container .icon,
#lhc_status_container .icon {
  min-width: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  fill: #056E95;
  margin-right: 1rem;
}

.lhc-container:after,
#lhc_status_container:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 100%;
  right: 0;
  background-color: transparent;
  border-left: .75rem solid transparent;
  border-top: 0.75rem solid #fff;
}

@media (any-hover: hover) {
  .lhc-link {
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
  }
  .lhc-link:hover {
    padding-bottom: 2rem;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
  }
}

@media (max-width: 991px) {
  .lhc-container {
    width: 4rem;
  }
  .lhc-container:hover {
    padding-bottom: 0;
  }
  .lhc-container .lhc-link {
    padding: 1rem;
  }
  .lhc-container .lhc-text-status {
    display: none;
  }
  .lhc-container .icon {
    min-width: 2rem;
    width: 2rem;
    height: 2rem;
    margin-right: 0;
  }
  .lhc-container:after {
    border-width: .5rem;
  }
}

body {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #303030;
}

.ls-1 {
  letter-spacing: 0.0625rem;
}

.ls-2 {
  letter-spacing: 0.125rem;
}

a {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #056E95;
  font-weight: 500;
}

a:hover {
  color: #056E95;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}

a:focus {
  outline: none;
}

strong {
  font-weight: 600;
}

p, dd, td, th {
  font-size: 1.25rem;
  line-height: 1.25;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 1em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.1;
  color: #404040;
}

h1[class="text-center"], h2[class="text-center"], h3[class="text-center"], h4[class="text-center"], h5[class="text-center"], h6[class="text-center"] {
  padding: 0 2rem;
}

h1 {
  font-size: 3.4rem;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.75rem;
  }
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.75rem;
}

[role="doc-subtitle"] {
  font-size: 1.5rem;
  color: #999;
}

h1 + [role="doc-subtitle"] {
  margin-top: -1rem;
}

li {
  margin: 1em auto;
}

#top h1 {
  margin: .25em 0;
}

footer {
  background: #303030;
  font-size: 1.125rem;
}

footer > .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer .social {
  margin-bottom: 1rem;
}

footer .social a {
  color: #bebebe;
  font-size: 2.5rem;
  padding: 0 0.25rem;
}

footer h5 {
  color: #d6d6d6;
  font-size: 1.375rem;
}

footer ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

footer a {
  color: #bebebe;
  line-height: 1.375;
}

footer a:hover {
  color: #d6d6d6;
}

footer .seals {
  padding-top: 0;
  padding-bottom: 0;
}

footer .seals .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .seals .seal-greenweb {
  max-width: 13rem;
}

footer .verybottom {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: -2rem;
}

footer .verybottom a, footer .verybottom p {
  font-size: 1rem;
  color: #bebebe;
}

footer .verybottom p {
  margin: 0.5rem 0;
}

@media (max-width: 991px) {
  footer ul li {
    padding: 0.375rem 0;
  }
}

@media (max-width: 767px) {
  footer {
    text-align: center;
  }
}

#DigiCertClickID_x8Me5u0D,
#DigiCertClickID_5xpV9M4d {
  max-width: 10rem;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  #DigiCertClickID_x8Me5u0D,
  #DigiCertClickID_5xpV9M4d {
    margin-left: auto;
    margin-right: auto;
  }
}

/* NAVIGATION / Desktop - initial
   ==================================================================== */
@media (min-width: 1500px) {
  nav.navbar > .container {
    max-width: 1400px;
  }
}

@media (min-width: 2560px) {
  nav.navbar > .container {
    max-width: 1920px;
  }
}

.navbar {
  background: transparent;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 0 0.5rem;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navbar > .container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 0.5rem;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navbar .navbar-brand img {
  -webkit-filter: grayscale(1) brightness(0) invert(1);
          filter: grayscale(1) brightness(0) invert(1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navbar .navbar-nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 3rem;
  margin-left: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navbar .navbar-nav a {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.navbar .navbar-nav li {
  padding: 1rem 0.75rem 0;
  margin: 0;
  line-height: normal;
}

.navbar .navbar-nav li a {
  position: relative;
  text-shadow: none;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: none;
  color: #fff;
  border-bottom: none;
  padding: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navbar .navbar-nav li a:after {
  content: '';
  position: absolute;
  width: 90%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  left: 0;
  right: 0;
  bottom: -8px;
  margin: auto;
  opacity: 0;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li.active a {
  color: #fff;
  background: none;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .navbar-nav li a:hover:after,
.navbar .navbar-nav li.active a:after {
  bottom: -6px;
  opacity: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar .navbar-collapse {
  position: relative;
}

.navbar .navbar-collapse .support-menu {
  position: absolute;
  top: 0;
  right: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1rem;
  padding-top: .375rem;
  color: #fff;
  font-size: 1rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.navbar .navbar-collapse .support-menu a {
  color: #fff;
  font-weight: 300;
}

.navbar .navbar-collapse .support-menu .fa-external-link {
  font-size: .75rem;
}

.navbar .navbar-collapse .support-menu-items :not(:first-child):before {
  content: '|';
  position: relative;
  color: #fff;
  top: 1px;
  padding-left: 10px;
  padding-right: 15px;
}

.navbar .navbar-collapse .support-contact {
  font-weight: bold;
  padding-left: 1rem;
}

.navbar .navbar-collapse .support-contact a {
  font-weight: bold;
}

.navbar .navbar-collapse .support-contact .fa {
  padding-right: .25rem;
}

.navbar .navbar-collapse .support-contact .fa-phone {
  font-size: .875rem;
}

.navbar .navbar-collapse .support-contact :not(:first-child) {
  padding-left: .5rem;
}

.navbar .navbar-collapse #link-login {
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: -5px;
  right: 0;
  text-decoration: none;
  color: #000;
  padding: 9px 14px 4px;
  border-radius: 0px 0px 8px 8px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navbar .navbar-collapse #link-login:hover {
  background-color: white;
  text-decoration: none;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.navbar .navbar-collapse #link-login .fa {
  font-size: 0.875rem;
  color: #777;
  padding-left: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navbar:not(.scroll) .navbar-brand {
  /* for inline svg logo */
}

.navbar:not(.scroll) .navbar-brand svg path {
  fill: #fff;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar:not(.scroll) .navbar-brand svg path#Line {
  stroke: #fff;
}

/* not homepage */
body:not(#home) .navbar .container:before {
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

body:not(#home) .navbar.scroll .container:before,
body:not(#home) .navbar .container.open:before {
  opacity: 0;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

/* NAVIGATION / Desktop - scrolled
   ==================================================================== */
.navbar.scroll {
  background-color: #fff;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar.scroll .navbar-brand {
  margin-top: 1rem;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
  /* for inline svg logo */
}

.navbar.scroll .navbar-brand img {
  -webkit-filter: grayscale(0) brightness(1) invert(0);
          filter: grayscale(0) brightness(1) invert(0);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar.scroll .navbar-brand svg path {
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar.scroll .navbar-nav li a {
  color: #303030;
  -webkit-transition: none;
  transition: none;
}

.navbar.scroll .navbar-nav li a:hover,
.navbar.scroll .navbar-nav li.active a {
  color: #056E95;
  background: -webkit-linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar.scroll .navbar-nav li a:hover:after,
.navbar.scroll .navbar-nav li.active a:after {
  display: none;
}

.navbar.scroll .support-menu {
  color: #303030;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar.scroll .support-menu a, .navbar.scroll .support-menu::after {
  color: #303030;
}

.navbar.scroll .support-menu-items :not(:first-child):before {
  color: #303030;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar.scroll #link-login {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.navbar.scroll #link-login:hover {
  background-color: rgba(0, 0, 0, 0.13);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar.scroll #link-login .fa {
  color: #303030;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar.scroll .navbar-collapse .navbar-nav {
  margin-top: 1.875rem;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

/* NAVIGATION / Tablet - initial
   ==================================================================== */
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar .navbar-collapse .navbar-nav li a {
    font-size: 1.2rem;
  }
  .navbar .navbar-brand img,
  .navbar .navbar-brand svg {
    max-width: 130px;
    height: auto;
  }
}

/* NAVIGATION / Mobile - initial
   ==================================================================== */
@media (max-width: 991px) {
  .navbar {
    padding: 0;
  }
  .navbar > .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
    padding: 0 .25rem;
  }
  .navbar > .container.open .navbar-brand img {
    -webkit-filter: none;
            filter: none;
  }
  .navbar .navbar-collapse {
    background: #fff;
    background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
    /* alternative */
    height: 100vh !important;
    display: block;
    overflow-y: scroll;
    position: absolute;
    width: 100%;
    top: 0;
    left: -100vw;
    padding-top: 3rem;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
  }
  .navbar .navbar-collapse.show {
    left: 0;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
  }
  .navbar .navbar-collapse .navbar-nav {
    -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;
    margin: 0;
    padding-top: 4rem;
  }
  .navbar .navbar-collapse .navbar-nav li {
    padding: .75rem;
    margin: 0;
  }
  .navbar .navbar-collapse .navbar-nav li:first-child {
    padding-top: 1.5rem;
  }
  .navbar .navbar-collapse .navbar-nav li a {
    font-size: 1.5rem;
    color: #fff;
  }
  .navbar .navbar-collapse .navbar-nav li a:hover,
  .navbar .navbar-collapse .navbar-nav li.active a {
    color: white;
    font-weight: 700;
  }
  .navbar .navbar-collapse .navbar-nav li a:hover:after,
  .navbar .navbar-collapse .navbar-nav li.active a:after {
    display: none;
  }
  .navbar .navbar-collapse .support-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    right: 0;
    top: 60px;
  }
  .navbar .navbar-collapse .support-link {
    width: 333px;
    left: 0;
    right: 0;
    margin: auto;
    top: 50px;
  }
  .navbar .navbar-collapse .support-link::after {
    display: none;
  }
  .navbar .navbar-collapse #link-login {
    right: 64px;
    padding: 3px 14px;
    top: 13px;
    border-radius: 8px;
    background-color: #fff;
    color: #056E95;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
  }
  .navbar .navbar-collapse #link-login .fa {
    color: #056E95;
  }
  .navbar .navbar-collapse #link-login:hover {
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
  }
  .navbar .navbar-brand,
  .navbar.scroll .navbar-brand {
    padding-left: 13px;
    margin-top: 0;
  }
  .navbar .navbar-brand img,
  .navbar .navbar-brand svg,
  .navbar.scroll .navbar-brand img,
  .navbar.scroll .navbar-brand svg {
    max-width: 115px;
  }
  .navbar .navbar-toggler:not(.collapsed) + .navbar-brand img {
    -webkit-filter: none;
            filter: none;
  }
  .navbar.scroll .navbar-collapse .navbar-nav {
    margin: 0;
  }
  /* hamburger icon animations */
  .navbar .navbar-toggler,
  .navbar .navbar-toggler:hover,
  .navbar .navbar-toggler:active {
    position: relative;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    text-shadow: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    outline: none;
    margin: 15px;
    z-index: 1;
  }
  .navbar .navbar-toggler .icon-bar,
  .navbar .navbar-toggler:hover .icon-bar,
  .navbar .navbar-toggler:active .icon-bar {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    right: 0;
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 3px;
    opacity: 1;
    margin-top: 0;
  }
  .navbar .navbar-toggler .icon-bar + .icon-bar,
  .navbar .navbar-toggler:hover .icon-bar + .icon-bar,
  .navbar .navbar-toggler:active .icon-bar + .icon-bar {
    margin-top: 0;
  }
  .navbar .navbar-toggler .icon-bar:nth-child(1),
  .navbar .navbar-toggler:hover .icon-bar:nth-child(1),
  .navbar .navbar-toggler:active .icon-bar:nth-child(1) {
    top: 0;
  }
  .navbar .navbar-toggler .icon-bar:nth-child(1):before,
  .navbar .navbar-toggler:hover .icon-bar:nth-child(1):before,
  .navbar .navbar-toggler:active .icon-bar:nth-child(1):before {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
  }
  .navbar .navbar-toggler .icon-bar:nth-child(2),
  .navbar .navbar-toggler:hover .icon-bar:nth-child(2),
  .navbar .navbar-toggler:active .icon-bar:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 75%;
  }
  .navbar .navbar-toggler .icon-bar:nth-child(3),
  .navbar .navbar-toggler:hover .icon-bar:nth-child(3),
  .navbar .navbar-toggler:active .icon-bar:nth-child(3) {
    bottom: 0;
    width: 50%;
  }
  .navbar .navbar-toggler:not(.collapsed) .icon-bar {
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1):before {
    background-color: #fff;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
  }
  .navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    bottom: 9px;
    opacity: 0;
  }
  .navbar:not(.scroll) .navbar-toggler .icon-bar,
  .navbar:not(.scroll) .navbar-toggler .icon-bar:nth-child(1),
  .navbar:not(.scroll) .navbar-toggler .icon-bar:nth-child(1):before,
  .navbar:not(.scroll) .navbar-toggler .icon-bar:nth-child(2),
  .navbar:not(.scroll) .navbar-toggler .icon-bar:nth-child(3) {
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }
  .navbar.scroll .navbar-toggler .icon-bar,
  .navbar.scroll .navbar-toggler .icon-bar:nth-child(1),
  .navbar.scroll .navbar-toggler .icon-bar:nth-child(1):before,
  .navbar.scroll .navbar-toggler .icon-bar:nth-child(2),
  .navbar.scroll .navbar-toggler .icon-bar:nth-child(3) {
    background-color: #056E95;
    width: 100%;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .support-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .navbar .navbar-collapse .support-contact {
    padding-top: .75rem;
    padding-left: 0;
  }
}

@media (max-width: 359px) {
  .navbar .navbar-collapse .support-link a,
  .navbar .navbar-collapse #link-login {
    font-size: 0.875rem;
  }
}

@media (max-width: 319px) {
  .navbar .navbar-collapse #link-login {
    display: none;
  }
}

/* CATALOG / Catalog control --- vyhledavani a vyber oboru
   ==================================================================== */
.catalog-control > .container > .row {
  margin: auto;
}

.catalog-control #industriesList ul {
  padding-bottom: 2rem;
}

.catalog-control #industriesList li {
  margin: 0.25rem 0;
}

.catalog-control .search {
  background-color: #f2f2f2;
  border-radius: 20px;
}

.catalog-control input[type="text"],
.catalog-control button[type="submit"] {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  border: none;
}

.catalog-control input[type="text"]:focus,
.catalog-control button[type="submit"]:focus {
  border: none;
  outline: none;
}

.catalog-control input[type="text"] {
  width: 100%;
  padding-right: 4rem;
}

/* HERO BTN (CTA)
   ==================================================================== */
#hero .btn {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  padding: 1.25rem 2rem;
}

#hero .btn.btn-demo {
  background-color: #fff;
  background-image: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: none;
  color: #0680ae;
  -webkit-box-shadow: inset 0 0 transparent, 0 0 24px rgba(0, 0, 0, 0.27);
          box-shadow: inset 0 0 transparent, 0 0 24px rgba(0, 0, 0, 0.27);
  border-radius: 1.5rem;
  margin-top: 3rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#hero .btn.btn-demo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#hero .btn.btn-demo:focus {
  -webkit-box-shadow: inset 0 0 transparent, 0 0 24px rgba(0, 0, 0, 0.27) !important;
          box-shadow: inset 0 0 transparent, 0 0 24px rgba(0, 0, 0, 0.27) !important;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

@media (max-width: 767px) {
  #hero .btn.btn-demo {
    font-size: 1.5rem;
    border-radius: 2rem;
    padding: 0.75rem 1.75rem;
    margin-top: 2rem;
  }
}

/* NORMAL BTN
   ==================================================================== */
.btn {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  text-shadow: none;
  -webkit-box-shadow: inset 0 0 transparent, 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 transparent, 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.08);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.btn:focus, .btn:focus:active {
  -webkit-box-shadow: inset 0 0 transparent, 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
          box-shadow: inset 0 0 transparent, 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.btn:active {
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

/* PRIMARY BTN
   ==================================================================== */
a.btn.btn-primary,
a.btn.btn-outline-primary,
button.btn.btn-primary,
input.btn.btn-primary {
  position: relative;
  color: #fff;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  z-index: 1;
}

a.btn.btn-primary:before,
a.btn.btn-outline-primary:before,
button.btn.btn-primary:before,
input.btn.btn-primary:before {
  position: absolute;
  content: '';
  background: linear-gradient(30deg, #045c7c 25%, #35974a 95%);
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}

a.btn.btn-primary:hover:before,
a.btn.btn-outline-primary:hover:before,
button.btn.btn-primary:hover:before,
input.btn.btn-primary:hover:before {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a.btn.btn-primary:focus:before,
a.btn.btn-outline-primary:focus:before,
button.btn.btn-primary:focus:before,
input.btn.btn-primary:focus:before {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* ORDER BTN
   ==================================================================== */
a.btn.btn-order, a.btn.btn-warning,
button.btn-order {
  color: #fff;
  background: #3CAC55;
  text-transform: uppercase;
  -webkit-box-shadow: inset 0 0 transparent, 0 2px 4px -1px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 transparent, 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.0625rem;
}

a.btn.btn-order:hover, a.btn.btn-warning:hover,
button.btn-order:hover {
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #35994c;
}

a.btn.btn-order:focus, a.btn.btn-warning:focus, a.btn.btn-order:focus:active, a.btn.btn-warning:focus:active,
button.btn-order:focus,
button.btn-order:focus:active {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* WARNING BTN
   ==================================================================== */
a.btn.btn-warning {
  background: #056E95;
}

a.btn.btn-warning:hover {
  background: #045c7c;
}

a.btn.btn-warning:focus, a.btn.btn-warning:focus:active {
  color: #fff;
  background: #045c7c;
}

/* SCROLL TOP / Toggler --- plovouci button pro navrat nahoru
   ==================================================================== */
#scrolltop {
  position: fixed;
  right: 2%;
  bottom: 8rem;
  z-index: 10;
  font-size: 3rem;
}

#scrolltop .icon {
  width: 3.5rem;
  fill: rgba(204, 204, 204, 0.3);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#scrolltop:hover .icon {
  fill: rgba(204, 204, 204, 0.6);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

/* SLIDING BTN / Toggler --- prepinani zakladnich a profesnich sablon
   ==================================================================== */
.fancy-radio {
  position: relative;
  width: 100%;
  background-color: #d9d9d9;
  text-align: center;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fancy-radio .bar {
  position: absolute;
  display: block;
  background: linear-gradient(45deg, #056E95 35%, #3CAC55 100%);
  top: -4px;
  left: 0;
  bottom: -4px;
  right: 0;
  width: 33.333333%;
  border-radius: 2rem;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.fancy-radio label {
  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;
  position: relative;
  overflow: hidden;
  width: 50%;
  padding: 1rem 0;
  margin: 0;
  cursor: pointer;
}

.fancy-radio label input {
  position: absolute;
  top: -200%;
}

.fancy-radio label.selected {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 575px) {
  .fancy-radio label {
    font-size: 1.125rem;
  }
}

/* BUTTONS LIST / Full width --- ostatni programy v detailu programu
   ==================================================================== */
.btns-list {
  list-style: none;
  padding-left: 0;
}

.btns-list li {
  font-size: 1.125rem;
  text-align: center;
  margin: 0.75rem auto;
}

.btns-list li.active {
  padding: 0.375rem 1.25rem;
}

.btns-list li a {
  width: 100%;
}

/* CATALOG / Search button
   ==================================================================== */
.search button[type=submit] {
  position: absolute;
  height: 100%;
  right: 15px;
  color: #fff;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  padding-right: 3rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.search button[type=submit] .icon {
  position: absolute;
  right: .75rem;
  top: .4rem;
  width: 1.75rem;
  fill: #fff;
  color: #fff;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media (max-width: 767px) {
  .search button[type=submit] {
    padding-right: 2.375rem;
  }
}

/* CATALOG / Button --- open list
   ==================================================================== */
.btn-open-list {
  position: relative;
  display: inline-block;
  width: auto;
  padding-right: 3rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
}

.btn-open-list .icon {
  position: absolute;
  right: .4rem;
  top: .325rem;
  width: 2rem;
  fill: #fff;
  color: #fff;
}

.btn-open-list.collapsed .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.btn-open-list:not(.collapsed) .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

/* PAGINATION --- strankovani, napr. v katalogu
   ==================================================================== */
/* BEM name convention test */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem auto;
}

.pagination__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination__link {
  position: relative;
  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;
  padding: .5rem 1rem;
  min-width: 3rem;
  height: 3rem;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}

.pagination__link:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  border-radius: 2rem;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.pagination__link:hover,
.pagination__item.active .pagination__link:hover {
  text-decoration: none;
  color: #fff;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}

.pagination__link:hover:before,
.pagination__item.active .pagination__link:hover:before {
  opacity: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.pagination__link:hover .pagination__icon {
  fill: #fff;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.pagination__item.active .pagination__link {
  color: gray;
  background: #f2f2f2;
  border-radius: 2rem;
  z-index: 0;
}

.pagination__icon {
  width: 1.25rem;
  height: auto;
  fill: #056E95;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.pagination__icon--left {
  margin-right: .5rem;
}

.pagination__icon--right {
  margin-left: .5rem;
}

@media (min-width: 768px) {
  .pagination__page--current {
    display: none;
  }
}

@media (max-width: 767px) {
  .pagination__item {
    display: none;
  }
  .pagination__item.active, .pagination__item:first-child, .pagination__item:last-child {
    display: list-item;
  }
  .pagination__page {
    display: none;
  }
  .pagination__icon--left {
    margin-right: 1.5rem;
  }
  .pagination__icon--right {
    margin-left: 1.5rem;
  }
}

/* homepage - scrolling screen on ntb */
@-webkit-keyframes inpage-scroll {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  3% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  10% {
    -webkit-transform: translateY(-8%);
            transform: translateY(-8%);
  }
  20% {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  30% {
    -webkit-transform: translateY(-38%);
            transform: translateY(-38%);
  }
  36% {
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
  50% {
    -webkit-transform: translateY(-68%);
            transform: translateY(-68%);
  }
  55% {
    -webkit-transform: translateY(-68%);
            transform: translateY(-68%);
  }
  80% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes inpage-scroll {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  3% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  10% {
    -webkit-transform: translateY(-8%);
            transform: translateY(-8%);
  }
  20% {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  30% {
    -webkit-transform: translateY(-38%);
            transform: translateY(-38%);
  }
  36% {
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
  50% {
    -webkit-transform: translateY(-68%);
            transform: translateY(-68%);
  }
  55% {
    -webkit-transform: translateY(-68%);
            transform: translateY(-68%);
  }
  80% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.ntb-preview {
  position: relative;
}

.ntb-preview .screen {
  position: absolute;
  overflow: hidden;
  left: 12%;
  right: 12%;
  top: 5%;
  bottom: 12%;
  border-radius: 2px;
}

.ntb-preview .screen img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: inpage-scroll 15s infinite;
  animation: inpage-scroll 15s infinite;
}

@media (max-width: 1200px) {
  .ntb-preview .screen {
    left: 12%;
    right: 12%;
    bottom: 14%;
    border-radius: 1px;
  }
}

@media (max-width: 991px) {
  .ntb-preview .screen {
    top: 4%;
    left: 8%;
    right: 8%;
    bottom: 32%;
    border-radius: 1px;
  }
}

@media (max-width: 767px) {
  .ntb-preview .screen {
    bottom: 12%;
    top: 5%;
  }
}

@media (max-width: 360px) {
  .ntb-preview .screen {
    left: 14%;
    right: 14%;
  }
}

/* homepage - pulsating scroll down btn */
#hero .scroll-down .icon-wrapper {
  position: relative;
  width: auto;
  height: auto;
}

#hero .scroll-down .icon-wrapper:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  content: '';
  width: 3.1rem;
  height: 3.1rem;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  opacity: 1;
  -webkit-animation: btn-pulse 3s infinite;
          animation: btn-pulse 3s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes btn-pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes btn-pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* AJAX Loader --- spinner
   ==================================================================== */
.ajax-loader-spinner {
  width: 2.75rem;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* ORDER / General settings --- overriding Bootstrap styles
   ==================================================================== */
.section-order .text-primary {
  color: #056E95 !important;
  /* overriding BS styles */
}

.section-order h4.text-uppercase.text-primary {
  font-weight: 500;
}

.section-order .card {
  background: #f8f9fa !important;
  /* overriding BS styles */
  border: none;
  border-radius: .25rem;
}

.section-order .card-body {
  border-radius: 0.25rem;
}

.section-order ul li {
  margin: .25em auto;
}

/* ORDER / Order step --- progress indicator
   ==================================================================== */
.order-step-col {
  text-align: center;
  /* Current step */
  /* Previous steps */
  /* Step number in circle */
}

.order-step-col.active, .order-step-col.inactive {
  font-weight: 600;
}

.order-step-col.active .numberCircle, .order-step-col.inactive .numberCircle {
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  border: none;
  color: #fff;
  vertical-align: 0;
}

.order-step-col.inactive .numberCircle {
  position: relative;
}

.order-step-col.inactive .numberCircle:after {
  position: absolute;
  content: '';
  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;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  border: 1.5px solid #369c4d;
  background: #fff url("/assets/img/inpage/icons/tick.svg") no-repeat center;
  background-size: 1.5rem;
  font-size: 1.8rem;
}

.order-step-col .numberCircle {
  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;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  border: 1.5px solid #d9d9d9;
  background-color: #fff;
  margin-bottom: 1rem;
  color: #d0d0d0;
  font-size: 1.8rem;
  font-weight: 500;
}

/* Progress line behind steps numbers */
.order-step-col:not(:first-child) {
  position: relative;
}

.order-step-col:not(:first-child):before {
  position: absolute;
  content: '';
  left: -50%;
  top: 1.375rem;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin: auto;
  z-index: -1;
}

.order-step-col:not(:first-child).active:before, .order-step-col:not(:first-child).inactive:before {
  background: #369c4d;
}

/* Center text and numbers in steps */
.order-step-col,
.order-step-col > div {
  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;
}

@media (max-width: 767px) {
  /* Display number and text in one line */
  .order-step-col,
  .order-step-col > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .order-step-col .numberCircle {
    margin: 1rem 1rem 1rem 0;
  }
  /* Progress line behind steps numbers */
  .order-step-col:not(:first-child):before {
    width: 1px;
    height: 100%;
    left: 2.25rem;
    top: -50%;
  }
}

/* ORDER / Prehled objednavky --- okynko Vase objednavka
   ==================================================================== */
.configuration-results {
  font-size: 1.125rem;
}

.configuration-results h4 {
  font-weight: 600;
}

.configuration-results .price {
  margin-top: 0;
  text-align: right;
}

.configuration-results .price .price-with-vat {
  font-size: 1.75rem;
  font-weight: 700;
}

/* ORDER / 1. Vyber sablony
   ==================================================================== */
.section-order.templates .thumbnail {
  -webkit-box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.3);
}

.section-order.templates .thumbnail + h4 {
  font-size: 1.125rem;
}

.section-order.templates .thumbnail .buttons .fa {
  font-size: 1.6rem;
}

/* ORDER / 2. Vyber domeny
   ==================================================================== */
#tld {
  padding: 0.475rem 0.75rem;
}

.section-order .card {
  /* input field */
}

.section-order .card #domain-name {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
}

/* Domains list */
.section-order table {
  border-collapse: collapse;
}

.section-order table thead tr {
  background-color: #f8f9fa;
  border: none;
}

.section-order table thead tr th:first-of-type {
  border-top-left-radius: .25rem;
}

.section-order table thead tr th:last-of-type {
  border-top-right-radius: .25rem;
}

.section-order table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.section-order table tr {
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.section-order table th {
  font-weight: 600;
}

.section-order table th, .section-order table td {
  vertical-align: middle;
  border: none;
  padding: 1rem;
}

@media (max-width: 991px) {
  .section-order table th, .section-order table td {
    font-size: 1.125rem;
    padding: 1rem 0.5rem;
  }
  .section-order table a.btn {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .section-order table thead {
    display: none;
  }
  .section-order table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
  .section-order table tr td {
    text-align: center;
  }
  .section-order table th, .section-order table td {
    padding: 0.5rem;
  }
}

/* ORDER / 3. Zakaznicke udaje
   ==================================================================== */
.section-order .form-group input::-webkit-input-placeholder {
  color: transparent;
}
.section-order .form-group input:-ms-input-placeholder {
  color: transparent;
}
.section-order .form-group input::-ms-input-placeholder {
  color: transparent;
}
.section-order .form-group input::placeholder {
  color: transparent;
}

.section-order .form-group .form-control:focus + label,
.section-order .form-group .form-control.not-empty + label {
  border: 1px solid #545454;
  border-radius: 3px;
}

.section-order .form-group .form-control:not(:focus).not-empty + label {
  border: 1px solid #cccccc;
}

/* ORDER / 4. Souhrn objednavky
   ==================================================================== */
.section-order h5.font-weight-500 {
  font-weight: 600;
}

.section-order textarea.form-control:not(:focus) + label,
.section-order textarea.form-control:not(.not-empty) + label {
  color: transparent;
}

.section-order textarea.form-control:focus::-webkit-input-placeholder,
.section-order textarea.form-control.not-empty::-webkit-input-placeholder {
  color: transparent;
}

.section-order textarea.form-control:focus:-ms-input-placeholder,
.section-order textarea.form-control.not-empty:-ms-input-placeholder {
  color: transparent;
}

.section-order textarea.form-control:focus::-ms-input-placeholder,
.section-order textarea.form-control.not-empty::-ms-input-placeholder {
  color: transparent;
}

.section-order textarea.form-control:focus::placeholder,
.section-order textarea.form-control.not-empty::placeholder {
  color: transparent;
}

.section-order textarea.form-control:focus + label,
.section-order textarea.form-control.not-empty + label {
  -webkit-transform: translateY(-1.25rem);
          transform: translateY(-1.25rem);
  color: gray;
}

.discount-coupon-label {
  margin-bottom: 0;
  cursor: pointer;
}

.discount-coupon-input {
  padding: 0 1rem 1rem;
}

/* ORDER / 5. Podekovani
   ==================================================================== */
.order-payments .btn {
  width: 100%;
  height: 100%;
  border-radius: .5rem;
  border: 1px solid transparent;
  padding: .5rem 1rem;
}

.order-payments .btn,
.order-payments .btn:hover,
.order-payments .btn:focus {
  background: #fff;
}

.order-payments .btn:hover,
.order-payments .btn:focus {
  border-color: #056E95;
}

.order-payments .btn img {
  max-height: 8rem;
  margin-bottom: 1rem;
}

.order-payments .btn h5 {
  margin: .5em auto;
  color: #056E95;
}

/* FORM / Textarea min height
   ==================================================================== */
textarea {
  min-height: 4rem;
}

/* FORM / Error messages --- invalid fields
   ==================================================================== */
.form-message.is-errored {
  font-size: 1.125rem;
  padding-top: .25rem;
  color: #ff4242;
  text-align: left;
}

.form-control:invalid {
  border-color: #ff4242;
}

/* FORM / Input fields with labels
   ==================================================================== */
.form-control {
  font-size: 1.25rem;
  border-color: #cccccc;
  height: auto;
}

.form-control:focus {
  border-color: #545454;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin-bottom: 0;
  padding: 0 0.25rem;
  color: gray;
  cursor: text;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.form-control:focus + label,
.form-control.not-empty + label {
  -webkit-transform: translateY(-1.65rem);
          transform: translateY(-1.65rem);
  font-size: 1rem;
  color: #545454;
  background-color: #fff;
  padding: 0 0.25rem;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.form-control {
  padding: 0.75rem;
}

/* FORM / Checkbox --- crazy overriding Bootstrap styles
   ==================================================================== */
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: #056E95;
  /* the colors in default gradient minus 10% lightness */
  background: linear-gradient(45deg, #034963 5%, #2e8441 100%);
  border-color: #056E95;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input:focus:checked ~ .custom-control-label::before {
  border-color: #056E95;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #056E95;
  background-color: #056E95;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
}

/* LOGIN FORM
   ==================================================================== */
.login-box {
  background-color: #fff;
  top: 2rem;
  right: 4rem;
  border-radius: 20px;
  width: 18rem;
  height: 18rem;
  padding: 3rem 2rem;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
  z-index: 1050;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}

.login-box .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.login-box .close .icon {
  width: 1.5rem;
}

.login-box label {
  font-weight: 500;
}

.login-box input[type=text] {
  width: 100%;
  margin-bottom: 1rem;
}

.login-box p {
  font-size: 1.125rem;
}

@media (max-width: 991px) {
  .login-box {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
  }
}

/* LOGO --- prebarvovani loga v IE (IE10+)
   ==================================================================== */
/* IMAGES / Thumbnails --- nahledy sablon a webu
   ==================================================================== */
.templates .thumbnail + h4 {
  font-size: 1.25rem;
}

.templates .thumbnail {
  position: relative;
  -webkit-box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.3);
  padding: 0;
  margin: 15px 0;
  border: none;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.templates .thumbnail:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  opacity: 0;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.templates .thumbnail img {
  max-width: 100%;
}

.templates .thumbnail .buttons {
  font-size: 1.125rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.templates .thumbnail .buttons .fa {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.templates .thumbnail .buttons a {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  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;
  padding: 1rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.templates .thumbnail .buttons a:hover {
  -webkit-transform: scale(1.15) translateZ(0);
          transform: scale(1.15) translateZ(0);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.templates .thumbnail .buttons a:first-of-type {
  margin-right: 4rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.templates .thumbnail:hover {
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.templates .thumbnail:hover:before {
  opacity: 0.9;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.templates .thumbnail:hover .buttons {
  opacity: 1;
  z-index: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.templates .thumbnail:hover .buttons a:first-of-type {
  margin-right: 0;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

@media (max-width: 1199px) {
  .templates .thumbnail img {
    max-width: none;
    width: 100%;
  }
}

/* IMAGES / Tvorba webu --- ikona kosiku
   ==================================================================== */
.eshop-icon-cart {
  display: block;
  width: 100%;
  max-width: 15rem;
  height: auto;
  padding-left: 4rem;
  margin: 3rem auto;
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .eshop-icon-cart {
    margin: 0 auto;
  }
}

/* TABLES / Globalni nastaveni
   ==================================================================== */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

table .tick, table .cross, table .infinity {
  max-width: 1.5rem;
}

/* TABLES / Cenik --- programy i balicky
   ==================================================================== */
@media (min-width: 768px) {
  #section-pricing.products tbody tr:nth-of-type(2) td:not(:first-of-type),
  #section-pricing.packages tbody tr:nth-of-type(2) td:not(:first-of-type) {
    border-top: 1px solid transparent;
  }
  #section-pricing.products tbody tr:nth-of-type(2) td:first-of-type,
  #section-pricing.packages tbody tr:nth-of-type(2) td:first-of-type {
    border-top: none;
    border-top-left-radius: 20px;
  }
}

#section-pricing {
  padding-top: 3rem;
}

#section-pricing tr td {
  display: table-cell;
}

#section-pricing thead {
  display: table-header-group;
  position: relative;
  color: #fff;
  background: linear-gradient(45deg, #056E95 35%, #3CAC55 100%);
}

#section-pricing thead tr {
  background-image: url("/assets/img/inpage/white-rounded-bg.svg");
  background-repeat: no-repeat;
  background-position: center 1px;
  background-size: cover;
}

#section-pricing thead tr th {
  position: relative;
  height: 100%;
  vertical-align: top;
  -webkit-box-shadow: -15px 0 15px -15px rgba(0, 0, 0, 0.25);
          box-shadow: -15px 0 15px -15px rgba(0, 0, 0, 0.25);
  border-top: 1px solid transparent;
}

#section-pricing thead tr th:not(:first-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-bottom: 0;
}

#section-pricing thead tr th:not(:first-of-type).label {
  position: relative;
}

#section-pricing thead tr th:not(:first-of-type).label:after {
  position: absolute;
  content: attr(data-label);
  left: 0;
  right: 0;
  margin: auto;
  top: -1.75rem;
  width: 70%;
  height: auto;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: #ff4242;
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 0.25rem;
  -webkit-box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.5);
  z-index: -1;
}

#section-pricing thead tr th:nth-of-type(2) {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

#section-pricing thead tr th:first-of-type {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#section-pricing .th-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 1.25rem;
}

#section-pricing tbody {
  font-weight: 500;
  /* Last parameter in basic view,
        selector for border-radius changes */
  /* Last parameter in detail view */
}

#section-pricing tbody .table-basic-last-param.has-radius td:first-of-type {
  border-bottom-left-radius: 20px;
  -webkit-transition: none;
  transition: none;
}

#section-pricing tbody .table-basic-last-param:not(.has-radius) td:first-of-type {
  border-bottom-left-radius: 0;
  -webkit-transition: none;
  transition: none;
}

#section-pricing tbody tr:nth-last-of-type(3) td:first-of-type {
  border-bottom-left-radius: 20px;
}

#section-pricing tbody tr td:not(:first-of-type) {
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

#section-pricing tbody tr:last-of-type td:not(:first-of-type) {
  border: none;
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

#section-pricing tbody tr:last-of-type td:nth-of-type(2) {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

#section-pricing tbody tr:last-of-type td:not(:first-of-type) {
  padding: 1.5rem 0.75rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.2);
}

#section-pricing tbody tr:last-of-type td:first-of-type {
  background: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

#section-pricing tbody tr:not(:last-of-type) td {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#section-pricing tbody tr:not(:last-of-type):hover td:not(:first-of-type) {
  background-color: rgba(0, 0, 0, 0.02);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#section-pricing tbody tr:not(:last-of-type):hover td:first-of-type {
  background: rgba(0, 0, 0, 0.71);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#section-pricing tr td:first-of-type {
  font-weight: 400;
  min-width: 15rem;
  color: #fff;
  background-color: #404040;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#section-pricing th, #section-pricing td {
  text-align: center;
  font-size: 1.125rem;
  padding: 0.75rem;
}

#section-pricing .title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

/* detailed parameters */
.table-detail.hidden {
  display: none;
}

.table-detail:not(.hidden) {
  display: table-row;
}

/* Pricing */
#section-pricing {
  /* label (napr. TOP produkt) = atribut data-stamp*/
}

#section-pricing .price {
  font-size: 2.25rem;
  line-height: 1;
  margin-top: .5rem;
}

#section-pricing .use {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  padding: 0 1rem 1rem;
}

#section-pricing .price-vat {
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1rem .5rem;
  opacity: 0.85;
}

#section-pricing .price-vat-inline {
  font-size: 1rem;
  font-weight: 400;
}

#section-pricing .price-old-inline {
  position: relative;
  padding-right: 0.75rem;
  font-weight: 500;
}

#section-pricing .price-old-inline:after {
  position: absolute;
  content: '';
  width: 3.5rem;
  height: 1px;
  left: -0.75rem;
  right: 0;
  bottom: 0.75rem;
  margin: auto;
  background-color: #303030;
}

#section-pricing .price-old {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

#section-pricing .price-old:after {
  position: absolute;
  content: '';
  width: 120%;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  right: auto;
  bottom: 1.125rem;
  margin: auto;
  background-color: #fff;
}

#section-pricing .price-new {
  font-size: 1.25rem;
  position: relative;
}

#section-pricing [data-stamp]:not([data-stamp='']):after {
  position: absolute;
  content: attr(data-stamp);
  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;
  left: 0;
  right: 0;
  top: -1px;
  width: 4rem;
  margin: auto;
  height: 1.625rem;
  color: #ff4242;
  background-color: #fff;
  font-size: 1rem;
  overflow: hidden;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.05);
}

#section-pricing [data-stamp]:not([data-stamp='']):before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 1.5625rem;
  margin: auto;
  width: 4rem;
  height: .25rem;
  background-color: transparent;
  border-left: 2rem solid #fff;
  border-right: 2rem solid #fff;
  border-bottom: .25rem solid transparent;
}

@media (max-width: 991px) {
  #section-pricing th, #section-pricing td {
    font-size: 1rem;
  }
  #section-pricing tr td:first-of-type {
    min-width: 9rem;
  }
  #section-pricing .btn.btn-order {
    font-size: 1rem;
  }
  #section-pricing thead tr th {
    padding: 0.75rem 0 5rem;
  }
  #section-pricing thead tr th:not(:first-of-type).label:after {
    font-size: 0.75rem;
    top: -1.5rem;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  #section-pricing .title {
    font-size: 1rem;
  }
  #section-pricing .price {
    font-size: 1.75rem;
  }
  #section-pricing .price-old:after {
    width: 6rem;
    bottom: 0.875rem;
  }
  #section-pricing .billing, #section-pricing .use {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  #section-pricing {
    padding-top: 0;
  }
  #section-pricing tbody td {
    height: 3.1rem;
  }
  #section-pricing tbody td:first-of-type {
    width: 56%;
  }
  #section-pricing tbody tr:first-of-type td:not(:first-of-type) {
    font-size: 1.25rem;
    font-weight: 700;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-top-right-radius: 20px;
  }
  #section-pricing tbody tr:first-of-type td:first-of-type {
    border-top-left-radius: 20px;
  }
  #section-pricing tbody tr:nth-of-type(2) td:first-of-type {
    border-top-left-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  #section-pricing tbody tr:nth-of-type(2) td:not(:first-of-type) {
    border-top: 1px solid #f2f2f2;
  }
  #section-pricing tbody tr:nth-last-of-type(3) td:first-of-type {
    border-bottom-left-radius: 0;
  }
  #section-pricing tbody tr:nth-last-of-type(2) td:not(:first-of-type) {
    border: none;
    border-top: 1px solid #f2f2f2;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  #section-pricing tbody tr:nth-last-of-type(2) td:nth-of-type(2) {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
  }
  #section-pricing tbody tr:nth-last-of-type(2) td:not(:first-of-type) {
    padding: 1.5rem 0.75rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.2);
  }
  #section-pricing tbody tr:nth-last-of-type(2) td:first-of-type {
    background: #fff;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
  }
  .table-control {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    background: linear-gradient(45deg, #056E95 35%, #3CAC55 100%);
    padding: 0 1rem;
    border-radius: 20px;
  }
  .table-control li {
    position: relative;
    padding: 1rem;
    margin: 0;
    text-align: center;
    /* width in % to prevent bold weight shifting */
  }
  .table-control li:nth-of-type(1) {
    width: 22%;
  }
  .table-control li:nth-of-type(2) {
    width: 18%;
  }
  .table-control li:nth-of-type(3) {
    width: 30%;
  }
  .table-control li:nth-of-type(4) {
    width: 30%;
  }
  .table-control li:hover {
    cursor: pointer;
  }
  .table-control li.active {
    font-weight: 700;
  }
  .table-control li.active:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
  }
  .table-control li.label {
    position: relative;
  }
  .table-control li.label:before {
    position: absolute;
    content: attr(data-label);
    left: 0;
    right: 0;
    margin: auto;
    top: -1.375rem;
    width: 60%;
    height: auto;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    background-color: #ff4242;
    color: #fff;
    padding: 0.25rem;
    bottom: auto;
    border: none;
    border-radius: 20px 20px 0 0;
    -webkit-box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

@media (max-width: 420px) {
  .table-control {
    padding: 0 0.75rem;
  }
  .table-control li {
    font-size: 1.125rem;
    padding: 1rem 0.5rem;
  }
  .table-control li.label:before {
    letter-spacing: 0;
  }
}

/* Browser specific styles */
/* IE10+ */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #section-pricing thead tr {
    background-image: none;
  }
  #section-pricing thead tr th:nth-of-type(2) {
    background: linear-gradient(45deg, #056E95 0%, #0E7789 100%);
  }
  #section-pricing thead tr th:nth-of-type(3) {
    background: linear-gradient(45deg, #087291 0%, #1D8879 100%);
  }
  #section-pricing thead tr th:nth-of-type(4) {
    background: linear-gradient(45deg, #178280 0%, #2C9967 100%);
  }
  #section-pricing thead tr th:nth-of-type(5) {
    background: linear-gradient(45deg, #26936F 0%, #3BAB56 100%);
  }
}

/* Firefox */
@-moz-document url-prefix() {
  #section-pricing thead {
    background: transparent;
  }
  #section-pricing thead tr th:nth-of-type(2) {
    background: linear-gradient(45deg, #056E95 0%, #0E7789 100%);
  }
  #section-pricing thead tr th:nth-of-type(3) {
    background: linear-gradient(45deg, #087291 0%, #1D8879 100%);
  }
  #section-pricing thead tr th:nth-of-type(4) {
    background: linear-gradient(45deg, #178280 0%, #2C9967 100%);
  }
  #section-pricing thead tr th:nth-of-type(5) {
    background: linear-gradient(45deg, #26936F 0%, #3BAB56 100%);
    position: relative;
    z-index: 2;
  }
}

/* TABLES / Ceny a varianty --- programy
==================================================================== */
#section-pricing.products .th-wrapper {
  height: 17rem;
}

@media (max-width: 1199px) {
  #section-pricing.products .th-wrapper {
    height: 18rem;
  }
}

@media (max-width: 991px) {
  #section-pricing.products .th-wrapper {
    height: 16rem;
  }
}

@media (max-width: 767px) {
  #section-pricing.products thead,
  #section-pricing.products tr td:nth-of-type(2),
  #section-pricing.products tr td:nth-of-type(3),
  #section-pricing.products tr td:nth-of-type(5) {
    display: none;
  }
}

/* TABLES / Tvorba webu --- balicky
   ==================================================================== */
#section-pricing.packages thead tr {
  background-image: url("/assets/img/inpage/white-rounded-bg-packages.svg");
  background-position: center 1px;
}

#section-pricing.packages .table-control li {
  width: 33%;
}

#section-pricing.packages thead tr th:not(:first-of-type) {
  width: 22%;
}

@media (max-width: 767px) {
  #section-pricing.packages thead,
  #section-pricing.packages tr td:nth-of-type(2),
  #section-pricing.packages tr td:nth-of-type(4) {
    display: none;
  }
  #section-pricing.packages tbody tr:nth-last-of-type(2):hover td:not(:first-of-type) {
    background-color: inherit;
  }
  #section-pricing .use {
    padding: .5rem 1rem;
  }
}

/* TABLES / Tvorba webu --- eshop balicek
   ==================================================================== */
#section-pricing.eshop thead tr {
  background-image: none;
}

#section-pricing.eshop td {
  width: 30%;
}

#section-pricing.eshop thead tr th:last-of-type {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 1.5rem;
}

#section-pricing.eshop tbody tr:first-of-type td:first-of-type {
  border-top-left-radius: 20px;
}

#section-pricing.eshop tbody tr:nth-last-of-type(3) td {
  border-radius: 0;
}

#section-pricing.eshop tbody tr:nth-last-of-type(2) td:first-of-type {
  border-bottom-left-radius: 20px;
}

#section-pricing.eshop tbody tr:last-of-type td:nth-last-of-type(2) {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 1px solid #f2f2f2;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #fff;
  padding: 1.5rem 0.75rem;
  -webkit-box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  #section-pricing.eshop tbody tr:first-of-type td,
  #section-pricing.eshop tbody tr:nth-last-of-type(2) td {
    border-radius: 0;
  }
  #section-pricing.eshop tbody tr:first-of-type td:first-of-type {
    border-top-left-radius: 0;
  }
  #section-pricing.eshop tbody tr:nth-last-of-type(2) td:first-of-type {
    background: #404040;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 0;
  }
  #section-pricing.eshop tbody tr:nth-last-of-type(2) td:last-of-type {
    border-bottom: 1px solid #f2f2f2;
  }
  #section-pricing.eshop tbody tr:last-of-type {
    border-top: none;
  }
  #section-pricing.eshop tbody tr:last-of-type td {
    border-top: none;
  }
}

/* TABLES / Detail varianty
   ==================================================================== */
#section-pricing-detail {
  /* visual alignment for price table - if there are 2 cols with price, set them to same width */
}

#section-pricing-detail .akce-order {
  /* if there are 2 cols with price, set right border to the first col */
  /* visual alignment - if there are 2 cols with price, set them to same width */
}

#section-pricing-detail .akce-order td {
  color: white;
  background-color: #3CAC55;
  border: none;
  font-weight: 500;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#section-pricing-detail .akce-order:hover td {
  background-color: #35994c;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#section-pricing-detail .akce-order th:first-of-type {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

#section-pricing-detail .akce-order td:last-of-type {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

#section-pricing-detail .akce-order > :nth-last-child(2) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

#section-pricing-detail .akce-order td + td {
  width: 25%;
}

#section-pricing-detail thead th:last-child {
  width: 25%;
}

#section-pricing-detail table {
  border-collapse: separate;
  width: 100%;
}

#section-pricing-detail .subhead {
  display: none;
}

#section-pricing-detail tr td, #section-pricing-detail tr th {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#section-pricing-detail tr:hover td, #section-pricing-detail tr:hover th:not(:first-of-type) {
  background-color: rgba(0, 0, 0, 0.02);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#section-pricing-detail tr:hover th:first-of-type {
  background: rgba(0, 0, 0, 0.71);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#section-pricing-detail tr > :first-child {
  width: 50%;
}

#section-pricing-detail td {
  font-weight: 500;
}

#section-pricing-detail th, #section-pricing-detail td {
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  font-size: 1.125rem;
  padding: 0.75rem;
  text-align: center;
}

#section-pricing-detail tr:not(:first-of-type) th, #section-pricing-detail td {
  border-top: 1px solid #f2f2f2;
}

#section-pricing-detail tr th:first-of-type {
  font-weight: 400;
  color: #fff;
  background-color: #404040;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#section-pricing-detail .headless tbody tr:nth-child(2) > :first-child {
  border-top-left-radius: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#section-pricing-detail .headless tbody tr:nth-child(2) > :last-child {
  border-top-right-radius: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#section-pricing-detail thead tr:first-of-type th {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#section-pricing-detail thead tr:first-of-type > :first-child {
  border-top-left-radius: 20px;
}

#section-pricing-detail thead tr:first-of-type > :last-child {
  border-top-right-radius: 20px;
}

#section-pricing-detail tbody tr:last-of-type > :first-child {
  border-bottom-left-radius: 20px;
}

#section-pricing-detail tbody tr:last-of-type > :last-child {
  border-bottom-right-radius: 20px;
}

#section-pricing-detail tbody tr:last-of-type td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* GUIDE / Prohlidka
   ==================================================================== */
/* prepinani kategorii */
.guide-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #404040;
  border-radius: 20px;
  overflow: hidden;
}

.guide-control .item {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 1.5rem 1rem;
  width: 25%;
  text-align: center;
}

.guide-control .item:after {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.guide-control .item:hover {
  text-decoration: none;
  cursor: pointer;
}

.guide-control .item:hover:after {
  bottom: 0;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.guide-control .item.active {
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
}

.guide-control .item.active:after {
  bottom: 0;
}

/* polozka pruvodce */
.guide-item {
  margin: 1.5rem 0;
}

.guide-item h3 {
  margin-top: .75em;
  margin-bottom: 0;
}

.guide-item:hover .guide-icon:before {
  opacity: 0;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.guide-item:hover .guide-icon img {
  -webkit-filter: grayscale(1) brightness(0) invert(1);
          filter: grayscale(1) brightness(0) invert(1);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

/* ikona polozky */
.guide-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  border-radius: 50%;
  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;
}

.guide-icon:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  content: '';
  width: 96px;
  height: 96px;
  border-radius: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.guide-icon img {
  max-width: 3.5rem;
  max-height: 3.5rem;
  z-index: 1;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

/* IE10+ */
/* filtr pro zmenu barvy ikony na bilou v IE nefunguje,
takze at pozadi zustane svetle, jinak by byla zelena ikona
na zelenem pozadi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .guide-icon:hover:before {
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .guide-control {
    font-size: 1.125rem;
  }
  .guide-control .item {
    text-align: center;
    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;
    padding: 1.5rem;
  }
}

@media (max-width: 991px) {
  .guide-control {
    font-size: 1rem;
  }
  .guide-control .item {
    padding: 1.25rem .75rem;
  }
}

@media (max-width: 767px) {
  #prohlidka {
    padding-top: 0;
  }
  .guide-control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .guide-control .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1rem;
    width: 100%;
  }
  .guide-control .item:after {
    display: none;
  }
}

/* TEMPLATE Live preview
   ==================================================================== */
#template-detail {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#template-detail #iframe-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 60px;
}

#template-detail nav.navbar {
  display: none;
}

.preview-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 10000;
  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;
  padding: 1rem;
  background: #056e95;
  background: linear-gradient(45deg, #056e95 5%, #3cac55 100%);
  color: #fff;
  font-size: 1.125rem;
}

.preview-bar_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 130px;
  height: auto;
  padding-bottom: .25rem;
}

.preview-bar_logo svg path {
  fill: #fff;
}

.preview-bar_logo svg path#Line {
  stroke: #fff;
}

.preview-bar a {
  color: #fff;
  text-decoration: none;
}

.preview-bar .fa-angle-left,
.preview-bar_buttons-prev {
  margin-right: 1rem;
}

.preview-bar .fa-angle-right,
.preview-bar_buttons-next {
  margin-left: 1rem;
}

.preview-bar_order {
  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;
  background: #fff;
  padding: .5rem 1.625rem;
  border-radius: 12px;
  background: #ff4242;
  color: #fff;
  font-weight: 500;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.preview-bar_order:hover,
.preview-bar_order:focus {
  background: #ff2929;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.preview-bar_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preview-bar_buttons-close {
  position: relative;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 0.25rem 1rem;
  margin: 0 2rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.preview-bar_buttons-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

@media (max-width: 991px) {
  .preview-bar_buttons-close {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .preview-bar_buttons-prev,
  .preview-bar_buttons-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .preview-bar_buttons {
    display: none;
  }
}

@media (max-width: 349px) {
  .preview-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 120px;
    padding: 1rem;
  }
  #template-detail #iframe-content {
    top: 120px;
  }
}

/* Google ReCaptcha
  ==================================================================== */
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  left: 15px !important;
  bottom: 24px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

/* HOME / General settings
   ==================================================================== */
.page-home h1, .page-home h2, .page-home h3, .page-home h4, .page-home h5, .page-home h6, .page-home p {
  margin: .5em auto 1em;
}

/* HOME / Hero
   ==================================================================== */
#hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 1.25rem;
  height: 100vh;
  color: #fff;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
}

#hero:before {
  display: none;
}

#hero .cta {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

#hero .cta .highlight {
  font-size: .75em;
  background-color: #F0B241;
  padding: .25rem 1rem;
}

#hero .hero-image img {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#hero .hero-text {
  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;
}

#hero .scroll-down {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  bottom: 3rem;
  left: 0;
  right: 0;
  width: 100%;
}

#hero .scroll-down a {
  font-size: 3.25rem;
  color: #fff;
  opacity: 0.75;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#hero .scroll-down a:hover {
  opacity: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#hero .scroll-down .icon {
  width: 3.75rem;
  height: auto;
  fill: #fff;
}

#hero .cta-discount {
  position: relative;
  margin-bottom: -3rem;
}

#hero .cta-discount img {
  max-width: 18rem;
}

#hero .cta-discount .cta-discount__text-wrapper {
  position: absolute;
  top: 29%;
  left: 1%;
  width: 100%;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 13rem;
}

#hero .cta-discount .cta-discount__link {
  color: #fff;
  display: block;
}

#hero .cta-discount .cta-discount__link:hover, #hero .cta-discount .cta-discount__link:focus {
  text-decoration: none;
}

#hero .cta-discount .cta-discount__text1 {
  font-size: .875rem;
}

#hero .cta-discount .cta-discount__text2 {
  font-size: 1.75rem;
  font-weight: 600;
}

#hero .cta-discount .cta-discount__program {
  color: #ffdf4b;
  font-weight: 600;
}

@media (min-width: 992px) {
  #hero .cta-discount {
    margin-bottom: -5rem;
  }
  #hero .cta-discount img {
    max-width: 23rem;
  }
  #hero .cta-discount .cta-discount__text-wrapper {
    top: 27%;
    max-width: 17rem;
  }
  #hero .cta-discount .cta-discount__text1 {
    font-size: 1.125rem;
  }
  #hero .cta-discount .cta-discount__text2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1500px) {
  #hero .cta-discount {
    margin-bottom: -7rem;
  }
  #hero .cta-discount img {
    max-width: 30rem;
  }
  #hero .cta-discount .cta-discount__text-wrapper {
    top: 26%;
    max-width: 22rem;
  }
  #hero .cta-discount .cta-discount__text1 {
    font-size: 1.375rem;
  }
  #hero .cta-discount .cta-discount__text2 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  #hero {
    font-size: 1.375rem;
  }
  #hero .hero-image img {
    max-width: 100%;
  }
  #hero .cta {
    font-size: 3.25rem;
    line-height: 1.25;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1500px) {
  #hero > .container {
    max-width: 1400px;
  }
  #hero .hero-text {
    margin-right: auto;
  }
  #hero .hero-text .cta {
    font-size: 4.25rem;
    margin-bottom: 6rem;
  }
  #hero .hero-text .claim {
    padding: 0 4rem;
  }
}

@media (min-width: 2560px) {
  #hero > .container {
    max-width: 1920px;
  }
  #hero .hero-text {
    font-size: 2.25rem;
  }
  #hero .hero-text .cta {
    font-size: 5.5rem;
    margin-bottom: 8rem;
  }
  #hero .hero-text .claim {
    padding: 0 9rem;
  }
  #hero .hero-text .btn {
    font-size: 2.75rem;
  }
}

@media (max-width: 991px) {
  #hero {
    font-size: 1.25rem;
  }
  #hero .hero-image img {
    max-width: 55%;
  }
  #hero .cta {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  #hero .claim {
    padding: 0 7rem;
  }
  #hero .scroll-down {
    display: none;
  }
  #hero .btn.btn-demo {
    font-size: 1.375rem;
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  #hero .hero-image {
    padding-top: 2rem;
  }
  #hero .hero-image img {
    max-width: 60%;
  }
  #hero .hero-text {
    padding-bottom: 4rem;
  }
  #hero .hero-text .claim {
    padding: 0 2rem;
  }
}

@media (max-width: 359px) {
  #hero {
    font-size: 1.125rem;
  }
  #hero .cta {
    font-size: 1.75rem;
  }
}

/* HOME / Discover
   ==================================================================== */
#discover p {
  font-size: 1.375rem;
  margin: 3rem auto;
}

#discover .speedo {
  position: relative;
}

#discover .speedo .needle {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 120px 4px;
  border-color: transparent transparent #545454 transparent;
  border-radius: 10px;
}

#discover .speedo .needle.animate {
  -webkit-animation: accelerate 4s;
          animation: accelerate 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 1199px) {
  #discover .speedo .needle {
    border-width: 0 3px 100px 3px;
  }
}

@media (max-width: 450px) {
  #discover .speedo .needle {
    border-width: 0 2px 80px 2px;
  }
}

@-webkit-keyframes accelerate {
  0% {
    -webkit-transform: translateX(-50%) rotate(-90deg);
            transform: translateX(-50%) rotate(-90deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(60deg);
            transform: translateX(-50%) rotate(60deg);
  }
}

@keyframes accelerate {
  0% {
    -webkit-transform: translateX(-50%) rotate(-90deg);
            transform: translateX(-50%) rotate(-90deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(60deg);
            transform: translateX(-50%) rotate(60deg);
  }
}

/* HOME / Features 1 --- icons in circles
   ==================================================================== */
#features1 {
  color: #fff;
  background-color: #303030;
}

#features1 h2 {
  color: #fff;
}

#features1 .features {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 2.6rem;
}

#features1 .features:before {
  position: absolute;
  content: '';
  width: 85%;
  height: 2px;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

#features1 .features .feature {
  width: 12rem;
  text-align: center;
}

#features1 .features .feature-item {
  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;
}

#features1 .features .feature-name {
  margin: 1rem auto;
  opacity: 1;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#features1 .features .feature-icon {
  position: relative;
  height: 6.5rem;
  width: 6.5rem;
  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;
  border-radius: 50%;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
}

#features1 .features .feature-icon:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #303030;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

#features1 .features .feature-icon img {
  max-height: 5rem;
  max-width: 5rem;
  z-index: 1;
}

#features1 .features .feature-info {
  font-size: 1.125rem;
  opacity: 0;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#features1 .features .feature:hover .feature-info {
  margin-top: -2.5rem;
  margin-bottom: 2.5rem;
  opacity: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#features1 .features .feature:hover .feature-name,
#features1 .features .feature:hover .feature-icon:before {
  opacity: 0;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

@media (max-width: 1200px) {
  #features1 .features {
    font-size: 1.05rem;
    padding-top: 2.125rem;
  }
}

@media (max-width: 991px) {
  #features1 .features {
    -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;
  }
  #features1 .features:before {
    display: none;
  }
  #features1 .features .feature-name {
    margin-bottom: 1rem;
  }
}

/* HOME / Features 2 --- rolling screen
   ==================================================================== */
#features2 h2 {
  margin-bottom: 4rem;
}

#features2 .fa {
  color: #303030;
  background: -webkit-linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  margin: 1rem 0;
}

/* HOME / Portfolio  --- templates
   ==================================================================== */
/* no specific styles */
/* HOME / Blog
   ==================================================================== */
#blog .card {
  border: none;
  -webkit-box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.25);
  margin: 1rem 0;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#blog .card:hover {
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#blog .card .thumbnail {
  padding: 0;
  border: none;
}

#blog .card .thumbnail img {
  max-width: 100%;
}

#blog .card .thumbnail:before {
  display: none;
}

#blog .card .info {
  background: #f2f2f2;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

#blog .card .info span:not(:first-of-type) .fa {
  padding-left: 1rem;
}

#blog .card .info .fa {
  padding-right: 0.5rem;
}

#blog .card .info p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #545454;
  /* limit radku vyresit v twigu */
}

#blog .card .info a {
  color: #303030;
}

#blog .card .info a:hover {
  color: #2166b0;
  text-decoration: none;
}

@media (max-width: 1499px) {
  #blog .card .info span:not(:first-of-type) .fa {
    padding-left: 0.5rem;
  }
}

@media (max-width: 1199px) {
  #blog .card .thumbnail img {
    max-width: none;
    width: 100%;
  }
}

/* CONTACT / Address, social buttons
   ==================================================================== */
#contactInfo h2 {
  margin-top: 2rem;
}

#contactInfo .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2rem;
}

#contactInfo .social a {
  position: relative;
  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;
  width: 3rem;
  height: 3rem;
  color: #545454;
  border: 1px solid #404040;
  border-radius: 50%;
  margin-top: 2rem;
  margin-right: 1rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#contactInfo .social a:hover {
  text-decoration: none;
  color: #fff;
  border: none;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#contactInfo .social a:hover:before {
  opacity: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

#contactInfo .social a:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #056E95 5%, #3CAC55 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#contactInfo .social a .fa {
  font-size: 1.5rem;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545;
}

@media (max-width: 767px) {
  #contactInfo .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* CONTACT / Contact channels --- cards
   ==================================================================== */
.contact-channels {
  padding: 3rem 0;
}

.contact-channels .contact-card {
  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;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 transparent, 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 transparent, 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  height: 12rem;
  padding: 7rem 1.5rem;
  margin: 0.75rem auto;
}

.contact-channels .contact-card-icon {
  width: 4rem;
  height: auto;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .contact-channels a[href*=tel]:not(:last-child) {
    margin-bottom: 0.75rem;
  }
  .contact-channels .contact-card {
    padding: 5rem 1.5rem;
  }
  .contact-channels .contact-card-icon {
    width: 3rem;
  }
}

/* CONTACT / Map
   ==================================================================== */
#contactMap {
  padding: 0;
}

#contactMap .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

#contactMap iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -8px;
}

a[href^=tel] {
  text-decoration: inherit;
  color: inherit;
}
/*# sourceMappingURL=main.css.map */