/*
Theme Name: zařídíme.com
Author: Radim Stolina
Author URI: http://www.radimstolina.net
*/

@-ms-viewport { width: device-width; }
@viewport { width: device-width; }
@-o-viewport { width: device-width; }
@-webkit-viewport { width: device-width; }

:root {
  --white: #fff;
  --black: #000;
  --main: #424f65;
  --dark-green: #00a651;
  --light-green: #a6ce39;
  --dark-blue: #111a45;
  --gray: #8e95aa;
  --dark-gray: #566181;
  --light-gray: #e2e6ec;  
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
	height: 100%;
  
  margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}
body {
  background-color: var(--white);
  font-family: 'Poppins', sans-serif;
	font-size: 15px;
  font-weight: 500;
  color: var(--main);	
}
.clearfix:after {
  visibility: hidden;
  display: block;
  content: '';
  clear: both;
  height: 0;
}
a, a img, a:hover img, a:visited img {
	outline: none;
	border: none;
}
a img {
	-moz-transform: translate(0,0) scale(1.0);
}

/* Transitions */
a {
	-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

/* Typography */
h1, h2, h3 {
  color: var(--dark-blue);
  font-weight: 700;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;  
}
h3 {
  font-size: 24px;
  color: var(--main);
}
h4 {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: var(--main);
  text-decoration: none;
}
a:hover {
  color: var(--light-green);
}
p {
  letter-spacing: .04em;
  line-height: 200%;
}

/* Layout */
header, section, footer {
  width: 100%;
}
.wrapper {
  margin-left: 10vw;
  margin-right: 10vw;
  position: relative;
}
section .wrapper {
  padding-top: 50px;
  padding-bottom: 50px;  
  overflow: hidden;
}
.center {
  text-align: center !important;
  -moz-text-align-last: center !important;
  text-align-last: center !important;
}
.headline__section {
  margin-top: 134px;
}

/* Gradient */
.text__gradient {
  background: linear-gradient(135deg, rgba(0,166,81,1) 0%, rgba(166,206,57,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shapes */
.mask {
  position: relative;
  overflow: hidden;
}
.shape {
	background: linear-gradient(0deg, rgba(0,166,81,1) 0%, rgba(166,206,57,1) 100%);
  border-radius: 50% 22% 40% 80%;
	filter: blur(100px);
	opacity: 1;
  width: 15.5vw;
  height: 43vh;
  position: absolute;
}
.shape.lt {
  width: 21vw;
  left: -15.5vw;
  top: 10vh;  
}
.shape.lb {
  background: var(--light-green);
  height: 54vh;
  left: -13vw;
  bottom: 55vh;  
}
.shape.rt {
  background: linear-gradient(180deg, rgba(0,166,81,1) 0%, rgba(166,206,57,1) 100%);
  right: -11vw;
  top: 52vh;  
}
.shape.rb {
  height: 65vh;
  right: -10vw;
  bottom: 5vh;  
}

/* Button */
.btn {
  background: linear-gradient(135deg, rgba(0,166,81,1) 0%, rgba(166,206,57,1) 100%);
  height: 70px;
  line-height: 70px;
  display: inline-block;
  padding: 0 54px;
  margin-top: 30px;
  position: relative;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;  
}
.btn:hover {
  color: var(--white);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);  
}
.btn:after {
  background-color: var(--light-green);
  content: '';
  width: 90%;
  height: 20px;
  position: absolute;
  left: 5%;
  bottom: 5px;
  z-index: -1;
  filter: blur(20px);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;  
}

/* Header */
header {
  padding: 40px 0;
  position: absolute;
  top: 0;
  z-index: 2;
}
header.sticky {
  position: fixed;
}
.logo {
  float: left;
  margin-top: 12px;
  margin-bottom: 12px;
}
.logo img {
  display: block;
}
nav {
  float: right;
}
nav ul li {
  float: left;
  margin-left: 2.5vw;
  margin-top: 12px;
  margin-bottom: 12px;
}
nav ul li a {
  display: inline-block;
  line-height: 30px;
  font-size: 13px;
  color: var(--main);
}
nav ul li a:hover, nav ul li.current-menu-item a {
  color: var(--light-green);
}
nav ul li:nth-child(8) {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 2.1875vw;
}
nav ul li:nth-child(8) a {
  height: 54px;
  line-height: 52px;
  padding: 0 40px;
  border: 1px solid;
  border-color: var(--light-gray);
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  border-radius: 27px;
}
/* nav ul li:nth-child(8) a:hover, nav ul li:nth-child(8).current-menu-item a {
  background-color: rgba(166,206,57,.2);
  border-color: rgba(166,206,57,.2);
  color: var(--dark-green);
} */
nav ul li:nth-child(8) a {
  background-color: rgba(166,206,57,.2);
  border-color: rgba(166,206,57,.2);
  color: var(--dark-green);
}

/* Navicon */
#navicon {
  width: 26px;
  height: 26px;
  position: absolute;
  right: 0;
  top: 14px;
  cursor: pointer;
  display: none;
}
#navicon:before, #navicon:after, #navicon div {
  background-color: var(--dark-green);
  content: '';
  display: block;
  height: 2px;
  margin: 5px 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
#navicon.act:before {
  -webkit-transform: translateY(7px) rotate(135deg);
  -moz-transform: translateY(7px) rotate(135deg);
  transform: translateY(7px) rotate(135deg);
}
#navicon.act:after {
  width: 26px;
  -webkit-transform: translateY(-7px) rotate(-135deg);
  -moz-transform: translateY(-7px) rotate(-135deg);
  transform: translateY(-7px) rotate(-135deg);
}
#navicon.act div {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
#navicon div {
  width: 26px;
}

/* Welcome */
#welcome .wrapper {
  margin-left: 0;
  margin-right: 0;
}
.welcome__image {
  height: auto;
  display: block;
  position: absolute;
}
.welcome__image.lt {
  width: 15vw;
  left: 10.5vw;
  top: 26%;
  -webkit-border-radius: 1.3021vw;
  -moz-border-radius: 1.3021vw;
  border-radius: 1.3021vw;
}
.welcome__image.lb {
  width: 14vw;
  left: 4vw;
  top: 52%;
  -webkit-border-radius: 1.5625vw;
  -moz-border-radius: 1.5625vw;
  border-radius: 1.5625vw;
}
.welcome__image.rt {
  width: 25vw;
  right: -2.0833vw;
  top: 32%;
  -webkit-border-radius: 2.0833vw;
  -moz-border-radius: 2.0833vw;
  border-radius: 2.0833vw;
}
.welcome__image.rb {
  width: 10vw;
  right: 7vw;
  top: 69%;
  -webkit-border-radius: 1.3021vw;
  -moz-border-radius: 1.3021vw;
  border-radius: 1.3021vw;
}
.welcome__image.main {
  width: 43vw;
  margin-top: 115px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-border-radius: 2.6042vw;
  -moz-border-radius: 2.6042vw;
  border-radius: 2.6042vw;
}

/* Content */
section ul {
	margin-top: 15px;
	margin-bottom: 15px;
	overflow: visible;
}
section ul li {
	margin: 7.5px 0;
  padding-left: 20px;
  position: relative;
	overflow: hidden;
  line-height: 200%;
}
section ul li:before {
	background-color: var(--light-green);
	content: '';
	width: 4px;
	height: 4px;
	position: absolute;
  left: 0;
  top: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
section p a, section li a {
  color: var(--light-green);
  display: inline-block;
  position: relative;
  white-space: nowrap;  
}
section p a:after, section li a:after {
  content: '';
  background-color: var(--light-green);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
section p a:hover:after, section li a:hover:after {
  opacity: 1;
  bottom: 3px;  
}
.title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.title h1 {
  font-size: 74px;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 10px;
}
.box {
  padding-left: 3.125vw !important;
  padding-right: 3.125vw !important;
}
.box p {
  color: var(--dark-gray);
}
.flex-img {
  -webkit-border-radius: 1.3021vw;
  -moz-border-radius: 1.3021vw;
  border-radius: 1.3021vw;
}

/* Form */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  background-color: var(--white);
  width: 50%;
  height: 54px;
  display: block;
  border: 2px var(--light-gray) solid;
  outline: none;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
	font-size: 15px;
	color: var(--main);
	-webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  border-radius: 27px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: border .5s ease-in-out;
  -moz-transition: border .5s ease-in-out;
  transition: border .5s ease-in-out;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
  border-color: var(--light-green);
}
textarea {
  width: 90%;
  height: auto;
  overflow: hidden;
}
.checkbox label {
  display: inline-block;
  padding-left: 30px;
  position: relative;
}
.checkbox label a {
  display: inline-block;
  color: var(--light-green);
  position: relative;   
}
.checkbox label a:after {
  content: '';
  background-color: var(--light-green);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -6px;
  left: 0;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.checkbox label a:hover:after {
  opacity: 1;
  bottom: -1px;  
}
.checkbox label:before {
  content: '';
  background-color: var(--white); 
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  border: 2px var(--light-gray) solid;
  left: 0;  
  top: 1px;  
  cursor: pointer;  
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
input[type="checkbox"] {
	/* display: none; */
  margin-right: 10px;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  transform: scale(1.4);	
}
input[type="checkbox"]:checked + label:after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-size: 13px;
  font-weight: 900;
  color: var(--light-green);
  position: absolute;
  left: 4px;
  top: 4px;
  cursor: pointer;
}
.control {
  display: none;
}
button {
  cursor: pointer;
	border: none;
	outline: none;
	font-family: 'Poppins', sans-serif;
	-webkit-appearance: none;
  -moz-appearance: none;
}
.message {
  height: 32px;
  padding: .001em;
  margin-top: 15px;
}
.errormsg {
	color: #ff0000 !important;
}
.successmsg {
	color: #66cc00 !important;
}
.errormsg:before, .successmsg:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
  font-size: 20px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.errormsg:before {
	content: '\f06a';
}
.successmsg:before {
	content: '\f00c';
}
.wpcf7-list-item {
  margin: 0 0 0 0 !important;
}
.wpcf7-response-output {
  width: 90%;
  margin: 3em 0 0 !important;
  padding: .5em 1em !important;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450 !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: #ffb900 !important;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
	color: #dc3232 !important;
}
.wpcf7-not-valid-tip {
  font-size: .94em !important;
  letter-spacing: .02em;
}

/* Footer */
footer .wrapper {
  border-top: 1px var(--light-gray) solid;
  padding-top: 90px;
  padding-bottom: 160px;
  margin-top: 70px;
}
.footer__logo {
  float: left;
}
.footer__logo img {
  display: block;
}
.links {
  float: left;
}
.links li {
  float: left;
  /* margin-left: 5.2083vw; */
  margin-left: 2.5vw;
}
.links li a {
  line-height: 30px;
  /* font-size: 15px; */
  font-size: 13px;
  /* letter-spacing: .04em; */
  color: var(--dark-gray);
}
.links li a:hover {
  color: var(--light-green);
}
.copyright {
  float: right;
  line-height: 30px;
  font-size: 13px;
  color: var(--gray);
}
.copyright a {
  color: var(--gray);
  font-weight: 700;
}
.copyright a:hover {
  color: var(--dark-gray);
}


/* Responsive styles */
@media only screen and (max-width: 1599px) {
  h1 {
    font-size: 60px !important;
  }  
  .wrapper {
    margin-left: 7.5vw;
    margin-right: 7.5vw;
  }
  header nav {
    background-color: var(--white);
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: -1;
    -webkit-transition: top .5s ease-in-out;
    -moz-transition: top .5s ease-in-out;
    transition: top .5s ease-in-out;
  }
  header nav ul {
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out .5s;
    -moz-transition: opacity .5s ease-in-out .5s;
    transition: opacity .5s ease-in-out .5s;
  }
  header nav ul li {
    float: none;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  nav ul li:nth-child(8) {
    margin-left: 0;
  }
  header nav.mobile {
    top: 0;
  }
  header nav.mobile ul {
    opacity: 1;
  }
  #navicon {
    display: block;
  }
  /* nav ul li:nth-child(8) {
    margin-top: 3px;
    margin-bottom: 3px;
  }
  nav ul li:nth-child(8) a {
    height: 48px;
    line-height: 46px;
    padding: 0 32px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
  } */                                         
}
@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 48px !important;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  section .wrapper {
    padding-top: calc(50px / 5 * 3);
    padding-bottom: calc(50px / 5 * 3);
  }
  .welcome__image.main {
    margin-top: calc(115px / 5 * 3);
  }
  footer .wrapper {
    padding-top: calc(90px / 5 * 3);
    padding-bottom: calc(160px / 5 * 3);
    margin-top: calc(70px / 5 * 3);
  }
  .btn {
    height: 64px;
    line-height: 64px;
    padding: 0 48px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    border-radius: 32px;  
  }  
  /* header nav {
    background-color: var(--white);
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: -1;
    -webkit-transition: top .5s ease-in-out;
    -moz-transition: top .5s ease-in-out;
    transition: top .5s ease-in-out;
  }
  header nav ul {
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out .5s;
    -moz-transition: opacity .5s ease-in-out .5s;
    transition: opacity .5s ease-in-out .5s;
  }
  header nav ul li {
    float: none;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  nav ul li:nth-child(8) {
    margin-left: 0;
  }
  header nav.mobile {
    top: 0;
  }
  header nav.mobile ul {
    opacity: 1;
  }
  #navicon {
    display: block;
  } */
  .box {
    padding-left: 2.6042vw !important;
    padding-right: 2.6042vw !important;
  }
  input[type="text"] {
    width: 66.666666%;
  }  
  textarea {
    width: 100%;
  }
  .wpcf7-response-output {
    width: 100%;
  }
  .links li {
    /* margin-left: 3.6458vw; */
  }                                          
}
@media only screen and (max-width: 991px) {
  .welcome__image.lt {
    left: 8.5vw;
    top: 31%;
  }
  .welcome__image.lb {
    left: 2vw;
    top: 57%;
  }
  .welcome__image.rt {
    right: -4.0833vw;
    top: 37%;
  }
  .welcome__image.rb {
    right: 5vw;
    top: 74%;
  }  
  footer .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .footer__logo, .links, .copyright {
    float: none;
  }
  .links {
    margin-top: 2.1575vw;
    margin-bottom: 4.315vw;
  }
  .links li {
    margin-left: 1.8229vw;
    margin-right: 1.8229vw;
  }                
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 36px !important;
  }                                                 
}
@media only screen and (max-width: 575px) {
  section .wrapper {
    padding-top: calc(50px / 5 * 2.5);
    padding-bottom: calc(50px / 5 * 2.5);
  }
  .welcome__image.main {
    margin-top: calc(120px / 5 * 2.5);
  }
  footer .wrapper {
    padding-top: calc(90px / 5 * 2.5);
    padding-bottom: calc(160px / 5 * 2.5);
    margin-top: calc(70px / 5 * 2.5);
  }
  header {
    padding: 20px 0;
  }
  .headline__section {
    margin-top: 94px;
  }
  input[type="text"] {
    width: 75%;
  }
  .links li {
    float: none;
    text-align: center;
  }                                                           
}
@media only screen and (max-width: 479px) {
  input[type="text"] {
    width: 100%;
  }
  .copyright {
    font-size: .8125em;
  }                                         
}