@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
body{
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #222;
}

/*kontakt*/

.kontakt{
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100vh;
  animation: fade-in 1s ease-in forwards;
}
.kontakt h1{
  padding-top: 200px;
  font-size: 3em;
  text-align: center;
  color: #D2AC37;
}
.kontakt h2{
  text-align: center;
  color: #D2AC37;
}
.kontakt .container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0 30px 0;
  text-align: center;
}
.kontakt .container .sluzbyBx{
  position: relative;
  width: 350px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kontakt .container .sluzbyBx i{
  font-size: 40px;
  padding-bottom: 20px;
  color: #D2AC37;
}
form{
  margin-top: 40px;
  text-align: center;
}
form .inputBx{
  margin-bottom: 20px;
}
.kontakt form .inputBx label{
  font-size: 25px;
  font-weight: bold;
  color: #D2AC37;
}
.kontakt form .inputBx input{
  width: 50%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid #fff;
}
.kontakt form .inputBx textarea{
  width: 50%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  min-height: 150px;
  border-bottom: 2px solid #fff;
}
.kontakt form .inputBx input[type="submit"]{
  width: 150px;
  background: #222;
  color: #D2AC37;
  cursor: pointer;
  font-weight: 400;
  border: 2px solid #fff;
}
.copyright{
  position: absolute;
  bottom: -90%;
  left: 250px;
  font-size: 1em;
  color: #999;
  animation: fade-in 0.5s ease-in forwards;
  animation-delay: 1s;
  opacity: 0;
  margin-bottom: 5%;
  text-align: center;
}
.copyright a{
  text-decoration: none;
  font-style: oblique;
  color: #999;
}
/*konec kontakt*/
