@charset "UTF-8";
/* 
Theme Name: ITvKostce
Description: Šablona vytvořená na míru pro potřeby klienta
Author: IT v kostce
Author URI: https://webdesign.itvkostce.cz/
License: https://webdesign.itvkostce.cz/
Version: 1.0.0
Text Domain: itvkostce
Tags: custom-made
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Variables
# General
# Sections
# Elements
# Typography
# Links
# Icons
# Menus
# Atomic Styles
# Skewed background mixins
# WYSIWYG
# Footer
# Subpage - Content formatting

# Video Homepage
# About product
# Promotion
# Solutions
# References
# Contact
# Breakpoints

--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,700&subset=latin-ext");
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'PT Sans', sans-serif;
  background: white;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*--------------------------------------------------------------
## Sections
--------------------------------------------------------------*/
section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*--------------------------------------------------------------
## Elements
--------------------------------------------------------------*/
ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: square;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

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

img {
  -ms-interpolation-mode: bicubic;
}

/*--------------------------------------------------------------
## Typography
--------------------------------------------------------------*/
p {
  font-size: 18px;
  font-weight: normal;
}

a, h1, h2, h3, h4, h5, h6, p, ul, li {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 40px;
  font-weight: normal;
}

h2 {
  font-size: 30px;
  font-weight: normal;
}

h3 {
  font-size: 25px;
  font-weight: bold;
}

h4 {
  font-size: 20px;
  font-weight: normal;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  text-decoration: none;
  background-color: transparent;
  transition: .5s color;
  font-size: 18px;
}

a:link {
  color: inherit;
}

a:visited {
  color: white;
}

a:hover,
a:focus,
a:active {
  color: white;
}

a:focus {
  outline: thin dotted;
}

a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
## Icons
--------------------------------------------------------------*/
/* Hamburger Icon */
#hamburger-icon {
  display: none;
  width: 28px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  float: right;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger-icon span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #222222;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger-icon:hover span {
  background: #7B388A;
}

#hamburger-icon span:nth-child(1) {
  top: 0px;
}

#hamburger-icon span:nth-child(2),
#hamburger-icon span:nth-child(3) {
  top: 10px;
}

#hamburger-icon span:nth-child(4) {
  top: 20px;
}

#hamburger-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#hamburger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
nav {
  position: fixed;
  top: 0;
  z-index: 150;
  width: 100%;
  padding-top: 20px;
  transition: background .8s, box-shadow .8s;
  max-width: 100%;
  background: url("images/menu-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100px;
  height: 100px;
  transition: top .5s, opacity .5s;
  opacity: 1;
}

.nav-up {
  top: -100px;
  opacity: 0;
}

nav .logo a {
  float: left;
  clear: right;
  display: flex;
  align-items: center;
}

nav .logo #logo-img {
  height: 45px;
  width: auto;
  float: left;
}

#logo-circle {
  fill: #7B388A;
}

nav .logo h3 {
  text-transform: uppercase;
  color: #703882;
  font-weight: bold;
  float: left;
  margin-left: 9px;
  line-height: 1;
}

.main-navigation a {
  display: block;
  text-decoration: none;
  line-height: 1;
  font-weight: normal;
  font-size: 18px;
  color: white;
  transition: color .5s;
}

.main-navigation a:hover {
  color: #222222;
}

.main-navigation ul li {
  display: inline;
}

.main-navigation {
  float: right;
  position: relative;
  z-index: 150;
}

.main-navigation .contact-info {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  margin-top: -7px;
  margin-bottom: 8px;
}

.main-navigation .contact-info .contact-info-single {
  float: right;
  display: inline;
  padding-left: 15px;
}

.main-navigation .contact-info #social-icon-container-facebook {
  padding-left: 30px;
}

.main-navigation .contact-info .contact-info-single * {
  display: inline;
  vertical-align: top;
}

.main-navigation .contact-info .contact-info-single script {
  display: none;	
}

.main-navigation .contact-info img {
  margin-top: 2px;	
}

.main-navigation .contact-info a {
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  color: #222222;
  transition: opacity .5s;
}

.main-navigation .contact-info a:hover {
  opacity: .5;
}

.contact-info p {
  line-height: 1;
}

.main-navigation .primary-menu {
  padding-bottom: 7px;
}

.main-navigation ul {
  float: right;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
  padding-left: 16px;
}

/* Responsive menu */
@media (min-width: 991.5px) {
  nav ul {
    max-height: 230px !important;
  }
}

@media (max-width: 991.5px) {
  nav .main-navigation {
    height: auto;
    max-height: none;
    position: relative;
    float: right;
  }
  nav .contact-info {
    display: none;
  }
  nav .main-navigation ul {
    display: none;
    max-height: 0;
    margin-right: 45px;
    display: block;
    overflow: hidden;
  }
  nav .main-navigation ul li {
    float: none;
    display: block;
    line-height: 2;
  }
  nav .main-navigation ul li a {
    display: inline-block;
    color: #222222;
  }
  nav .main-navigation ul li a:hover {
    color: #7B388A;
  }
  nav .main-navigation .contact-info {
    display: none;
  }
  #hamburger-icon {
    display: block;
    position: relative;
    top: 10px;
    right: 0;
    z-index: 100;
  }
  nav {
    background: white;
    min-height: 67px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  -webkit-box-shadow: 0px 2px 5px 3px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 2px 5px 3px rgba(0,0,0,0.25);
  box-shadow: 0px 2px 5px 3px rgba(0,0,0,0.25);
  }
  nav .logo h3 {
    /*color: white;*/
  }
  #logo-circle {
    /*fill: white;*/
  }
}

@media (max-width: 450px) {
  nav .main-navigation {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  nav .main-navigation ul {
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
  }
  nav .main-navigation ul li {
    padding-left: 0;
    padding-bottom: 5px;
    margin: 0 auto;
    text-align: center;
  }
  nav .main-navigation ul li:first-child {
    margin-top: 15px;
  }
  nav .main-navigation ul li:last-of-type {
    padding-bottom: 0;
  }
  nav .main-navigation .menu {
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}

.open-nav {
  max-height: 230px !important;
}

.nav-transition {
  transition: all .8s;
  transition-delay: 0s;
  -webkit-transition: max-height 800ms ease-in-out;
  -moz-transition: max-height 800ms ease-in-out;
  -o-transition: max-height 800ms ease-in-out;
  transition: max-height 800ms ease-in-out;
}

/*--------------------------------------------------------------
## Atomic styles
--------------------------------------------------------------*/
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-upper {
  text-transform: uppercase;
}

.text-thin {
  font-weight: 100;
}

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

.highlight {
  opacity: 1;
  transition: .5s opacity;
}

.highlight:hover {
  opacity: 0.7;
}

.mt-40 {
  margin-top: 40px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.align-bottom {
  vertical-align: bottom;
}

.btn {
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 28px;
  transition: .5s background, .5s color, .5s border;
}

a.btn {
  color: white;
}

.btn-purple {
  background: #572b69;
  color: white;
  font-weight: bold;
  padding: 10px 27px 10px 27px;
  border: 2px solid transparent;
}

.btn-purple:hover {
  background: white;
  border: 2px solid #572b69;
  color: #572b69;
}

.btn-white-border {
  border: 2px solid white;
  background: transparent;
  color: white;
  line-height: 1;
  padding: 8px 28px 8px 28px;
  display: inline-block;
}

.btn-white-border:hover {
  background: white;
  color: #572b69;
}

/*--------------------------------------------------------------
## Skewed background mixins
--------------------------------------------------------------*/
.edge-bottom {
  position: relative;
  z-index: 1;
}

.edge-bottom:after {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}

.edge-bottom:after {
  bottom: 0;
  transform: skewY(-2.1deg);
  transform-origin: 100%;
}

.edge-bottom-reverse {
  position: relative;
  z-index: 1;
}

.edge-bottom-reverse:after {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}

.edge-bottom-reverse:after {
  bottom: 0;
  transform: skewY(2.1deg);
  transform-origin: 0 100%;
}

.edge-top {
  position: relative;
  z-index: 1;
}

.edge-top:before {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}

.edge-top:before {
  top: 0;
  transform: skewY(2.1deg);
  transform-origin: 100% 0;
}

.edge-top-reverse {
  position: relative;
  z-index: 1;
}

.edge-top-reverse:before {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}

.edge-top-reverse:before {
  top: 0;
  transform: skewY(-2.1deg);
  transform-origin: 0 0;
}

.edge-both {
  position: relative;
  z-index: 1;
}

.edge-both:before, .edge-both:after {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}

.edge-both:before {
  top: 0;
  transform: skewY(2.1deg);
  transform-origin: 100% 0;
}

.edge-both:after {
  bottom: 0;
  transform: skewY(-2.1deg);
  transform-origin: 100%;
}

.edge-both-reverse {
  position: relative;
  z-index: 1;
}

.edge-both-reverse:before, .edge-both-reverse:after {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}

.edge-both-reverse:before {
  top: 0;
  transform: skewY(-2.1deg);
  transform-origin: 0 0;
}

.edge-both-reverse:after {
  bottom: 0;
  transform: skewY(2.1deg);
  transform-origin: 0 0;
}

/*--------------------------------------------------------------
## WYSIWYG
--------------------------------------------------------------*/
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer {
  color: white;
  padding: 11.5px 0px 11.5px 0px;
  background-color: #222222;
  position: relative;
}

footer p {
  font-weight: normal;
  font-size: 16px;
}

footer a:visited,
footer a:focus {
  color: white;
}

footer a:hover {
  color: #703882;
}

footer #purple-background {
  max-width: 58.53%;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 80px;
  min-height: 80px;
}

.contact #social-icon-twitter-footer {
  margin-left: 5px;
}
/*--------------------------------------------------------------
## Subpage - Content formatting
--------------------------------------------------------------*/
.subpage {
  color: white;
  margin-top: 67px;
  background: #2B2B2B;
}

.subpage section {
  padding-bottom: 70px;
  padding-top: 70px;
}

.subpage .subpage-header {
  position: relative;
}

.subpage .subpage-header .header-title {
  position: absolute;
  display: inline-block;
  top: 45%;
  transform: translateY(-50%);
  left: 0;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  max-height: 50%;
}

.header-title h2 {
  font-size: 50px;
  font-weight: bold;
  text-shadow: 0px 0px 6px #000;
}

.subpage .subpage-header img {
  max-width: 100%;
  min-width: 100%;
}

.subpage .content-wrapper p {
  line-height: 24px;
}

.subpage .hr-subpage {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 28px;
}

.subpage .content-wrapper h1,
.subpage .content-wrapper h2,
.subpage .content-wrapper h3,
.subpage .content-wrapper h4,
.subpage .content-wrapper h5,
.subpage .content-wrapper h6,
.subpage .content-wrapper p,
.subpage .content-wrapper ul,
.subpage .content-wrapper ol,
.subpage .content-wrapper img,
.subpage .content-wrapper hr {
  margin-bottom: 28px;
}

.subpage .content-wrapper h1 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.content-wrapper ul:first-child,
.content-wrapper ol:first-child,
.content-wrapper p:first-child {
  margin-top: 28px;
}

.subpage .content-wrapper p:last-child,
.subpage .content-wrapper ul:last-child,
.subpage .content-wrapper ol:last-child,
.subpage .content-wrapper img:last-child,
.subpage .content-wrapper hr:last-child {
  margin-bottom: 0;
}

.subpage .content-wrapper p {
  text-align: justify;
}

.subpage .content-wrapper li {
  margin: 0;
}

.subpage .content-wrapper ul,
.subpage .content-wrapper ol {
  width: auto;
  -webkit-padding-start: 0px;
  margin-left: 0;
  padding: 0;
}

.subpage .content-wrapper ul {
  list-style-type: square;
}

.subpage .content-wrapper ul li,
.subpage .content-wrapper ol li {
  line-height: 130%;
}

.subpage .content-wrapper ul li,
.subpage .content-wrapper ol li,
.subpage .content-wrapper p {
  line-height: 24px;
}

.subpage .content-wrapper ul li,
.subpage .content-wrapper ol li {
  list-style-position: outside;
  margin-left: 20px;
}

.subpage .content-wrapper a {
  color: #ac75c3;
  font-weight: bold;
}

.subpage .content-wrapper a.btn {
  color: white;
  border: 0;
}

.subpage .content-wrapper a:hover {
  text-decoration: underline;
}

.subpage .content-wrapper a.btn:hover {
  background: white;
  color: #703882;
  text-decoration: none;
}

.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 30px;
  overflow: hidden;
}

.video iframe, .video object, .video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*--------------------------------------------------------------
## Video Homepage
--------------------------------------------------------------*/
.noscript {
  text-align: center;
  margin-top: 240px;
}

.video-container {
  margin-top: 67px;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  display: flex;
  height: auto;
  position: relative;
  z-index: 4;
}

#video-loader {
  transition: opacity 1s;
  position: relative;
  top: 200px;
  width: 60px;
  height: auto;
}

.site-wrapper {
  display: none;
}

.out {
  opacity: 0;
}

.video-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.39) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAADklEQVQImWNgQIA03AwAFasBM9Z5CksAAAAASUVORK5CYII=) repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

/*--------------------------------------------------------------
## About product
--------------------------------------------------------------*/
.about-product {
  text-align: center;
  padding-top: 64px;
  padding-bottom: 103px;
}

.about-product h1 {
  color: #222222;
  margin-bottom: 40px;
}

.about-product h3 {
  color: #703882;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.about-product p {
  color: #777777;
  line-height: 28px;
  margin-bottom: 32px;
}

.about-product .single-product img {
  max-height: 114px;
  margin-bottom: 30px;
}

.about-product .single-product {
  padding-left: 20px;
  padding-right: 20px;
}

.about-product a {
  display: inline-block;
}


/*--------------------------------------------------------------
## Promotion
--------------------------------------------------------------*/
.promotion {
  color: #fff;
  background: #2b2b2b;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 103px;
  margin-top: -50px;
}

.promotion p, .promotion ul, .promotion ol, .promotion h2, .promotion h3, .promotion h4, .promotion h5 {
  color: #fff;
}

.promotion p {
  width: 100%; margin-bottom: 20px;
}

.promotion p:last-child {
  margin-bottom: 0;
}

.promotion h2 {
  margin-bottom: 40px;
  text-transform: uppercase;
}

.promotion .wp-block-image, .promotion img, .promotion a {
  display: inline-block; margin-left: auto; margin-right: auto;
}

.promotion a {
  color: #ac75c3;
  font-weight: bold;
}

/*--------------------------------------------------------------
## Solutions
--------------------------------------------------------------*/
.solutions {
  background: #703882;
  padding-bottom: 0px;
  padding-top: 28px;
  margin-bottom: -5px;
}

.solutions h2 {
  color: white;
  margin-bottom: 35px;
  font-size: 40px;
}

.solutions h4 {
  color: white;
  font-weight: normal;
  line-height: 28px;
  margin-bottom: 18px;
  min-height: 56px;
}

.solutions .single-solution {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 50px;
}

.solutions .solution-img-wrapper {
  min-height: 53px;
}

.solutions .single-solution img {
  max-height: 53px;
  margin-bottom: 21px;
  width: auto;
}

.subpage .solution-header {
  background: #222222;
  position: relative;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.subpage .solution-header img {
  margin: 0 auto;
  text-align: center;
}

/*--------------------------------------------------------------
## References
--------------------------------------------------------------*/
.references {
  background: white;
  padding-top: 95px;
  padding-bottom: 70px;
}

.references h2 {
  color: #222222;
  margin-bottom: 51px;
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
}

.references .client-logo {
  margin-bottom: 11px;
  height: 60px;
  width: auto;
}

.references li {
  margin: 0;
  line-height: 30px;
  list-style-position: inside;
  margin-left: 0px;
  color: #703882;
}

.references li span {
  color: #222222;
}

.references ul {
  width: auto;
  -webkit-padding-start: 0px;
  margin-left: 0;
  padding: 0;
  list-style-type: square;
}

.references .monitor-container {
  position: relative;
  left: 118px;
}

.references .monitor-screenshot {
  position: absolute;
  top: 9px;
  left: 7px;
  -khtml-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.references .owl-header {
  position: relative;
}

.references .owl-controls {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.references .owl-buttons {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.references .owl-carousel .owl-prev,
.references .owl-carousel .owl-next {
  position: absolute;
  top: 44px;
}

.references .owl-carousel .owl-prev {
  left: 0;
  margin-left: 0px;
}

.references .owl-carousel .owl-next {
  right: 0;
  margin-right: 0px;
}

.references .client-quote {
  font-weight: normal;
  color: #703882;
  text-align: center;
  font-size: 25px;
  padding-left: 100px;
  padding-right: 100px;
  margin-top: 33px;
  margin-bottom: 18px;
}

.references .client-info {
  font-size: 20px;
  color: #777777;
  font-weight: normal;
  text-align: center;
}

/*--------------------------------------------------------------
## Contact
--------------------------------------------------------------*/
.contact {
  background: #2b2b2b;
  padding-top: 64px;
  padding-bottom: 70px;
}

.contact h2 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.form-contact-info {
  padding-left: 0px;
}

.form-contact-info a {
  color: #cccccc;
  font-weight: bold;
}

.form-contact-info a:hover {
  color: #703882;
}

.form-contact-info p {
  color: #cccccc;
  line-height: 29px;
}

.form-contact-info span {
  text-align: right;
  font-weight: normal;
  display: inline-block;
  min-width: 58px;
  margin-right: 8px;
  color: white;
}

/* Contact Form */
.contact-form .form-group {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-form .form-group:last-child {
  margin-bottom: 0;
}

.contact-form .form-group-textarea,
.contact-form .form-group-button {
  width: 100%;
}

.error {
  color: red;
  width: 100%;
  float: right;
  text-align: right;
}

.thanks {
  color: #85a16b;
  margin-bottom: 20px;
}

.contact-form form input, form textarea {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  font-weight: normal;
  border: 0;
  color: black;
  font-family: 'PT Sans', sans-serif;
  background: #eeeeee;
  min-height: 50px;
  -webkit-appearance: none;
}

.contact-form textarea {
  width: 100%;
  resize: none;
  min-height: 200px;
}

.contact-form form input[type=submit] {
  padding: 10px 80px 10px 80px;
  background: transparent;
  border: 2px solid white;
  text-transform: uppercase;
  font-size: 18px;
  color: white;
  font-weight: bold;
  transition: background .5s, border .5s;
  display: inline-block;
  width: auto;
  text-align: right;
}

.contact-form form input[type=submit]:hover {
  background: #703882;
  cursor: pointer;
  border-color: #703882;
}

.contact-form label {
  color: white;
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
}

.contact-form .form-group-spam label {
  margin-right: 10px;
}

.contact-form .form-group-spam {
  display: inline;
  float: right;
  text-align: right;
}

.contact-form #spam, .contact-form #spam_booking {
  max-width: 100px;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: black;
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: black;
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: black;
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: black;
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
}

/*--------------------------------------------------------------
## Breakpoints
--------------------------------------------------------------*/
/* XS < 0  */
/* SM < 476  */
/*@media (max-width: 476px) {
  .subpage .subpage-header {
    display: none;
  }
  .video-container {
    display: none;
  }
  .about-product {
    margin-top: 67px;
  }
}*/

@media (max-width: 380px) {
 .references .monitor-background {
	width: 100%;
	margin: 0;
  }
  .references .monitor-screenshot {
	width: 95%;
	left: 2.5%;
	right: 2.5%;
  }
}

@media (max-width: 530px) {
  .owl-wrapper-outer {
    position: relative;
    z-index: 3;
  }
  .owl-controls {
    z-index: 1;
  }
  .owl-buttons {
    display: none;
  }
}

/* MD < 768 */
@media (max-width: 768px) {
  footer p {
    text-align: center;
  }
  footer #purple-background {
    display: none;
  }
  .header-title h2 {
    display: none;
  }
  .form-contact-info {
    margin-bottom: 30px;
  }
  .about-product .single-product {
    margin-bottom: 30px;
  }
  .about-product .single-product:last-child {
    margin-bottom: 0px;
  }
}

/* LG < 992*/
@media (max-width: 992px) {
  .references .monitor-container {
    position: relative;
    left: 0;
	right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .references .monitor-background {
	max-width: 320px;
	margin: auto;
  }
  .references .monitor-screenshot {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .references .right {
    margin-top: 30px;
    text-align: center;
  }
  .references .right ul {
    display: table;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    margin-top: 30px;
  }
  .references .client-quote {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* XL < 1200 */
/* > 1450 */
@media (min-width: 1450px) {
  nav {
    background-size: 120% 100px;
  }
}

/* XXL > 2500 */
@media (min-width: 2000px) {
  footer #purple-background {
    min-width: 42%;
  }
  nav {
    background-size: 150% 100px;
  }
}

.logged-in nav {
  margin-top: 32px;
}

@media screen and (max-width: 782px) {
  .logged-in nav {
    margin-top: 46px;
  }
  .logged-in #wpadminbar {
    position: fixed;
  }
}

.checkbox-wrap {
text-align: right; margin-bottom: 20px;	
}

.checkbox-wrap input[type=checkbox] {
display: inline-block; margin-right: 10px;
width: 15px; height: 15px; min-height: auto;
cursor: pointer;
}

.checkbox-wrap input[type=checkbox]:checked {
background: #fff url('images/checkbox.png') center center no-repeat;
background-size: 80% 80%;
}

.checkbox-wrap .error {
display: block; float: none;	
}

.checkbox-desc {
display: inline;
color: #fff;
}

/*-----gdpr-----*/

.gdpr-footer {
margin-top: 20px;	
}

.gdpr-bar {
position: fixed; width: 100%; left: 0; right: 0; padding: 10px; text-align: center;
background: #282828;
border-top: 1px #444 solid;
z-index: 99999;
}

.gdpr-bar-bottom {
bottom: 0; 
}

.gdpr-bar-top {
top: 0; 
}

body .gdpr-bar p, body .gdpr-bar a, body #gdpr_form form {
margin: 0; padding: 0;
font-size: 16px;
line-height: 22px;
color: #fff;
border: 0;
}

body .gdpr-bar p {
display: block; width: 100%; height: auto;
}

body .gdpr-bar a {
display: inline;
text-decoration: underline;
font-weight: bold;
}

body .gdpr-bar a:hover {
text-decoration: none;
}

body #gdpr_form input[type=submit] {
display: inline-block; margin-top: 10px; padding: 5px 20px;
border: 1px #703882 solid;
background: #703882;
font-weight: bold;
color: #fff;
cursor: pointer;
transition: color 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

body #gdpr_form input[type=submit]:hover {
background: #fff;
color: #703882;
border-color: #fff;
}

body #gdpr_form input[type=submit].gdpr-page-button {
text-align: center;
white-space: normal;
line-height: 1.5em;	
}
