@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,700&subset=latin-ext');
body {
  margin: 0px;
  font-family: PT Sans;
}

* {
  box-sizing: border-box;
  transition: all 200ms ease;
}

::selection {
  background: #1961ad;
  color: white;
}

.content {
  width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 1300px) {
  .content {
    width: 90%;
  }
}

.logo {
  width: 250px;
  transition: all 200ms ease;
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  .logo {
    width: 175px;
  }
}

@media only screen and (max-width: 768px) {
  .logo {
    width: 155px;
    margin-top: 5px;
  }
}

header {
  width: 100%;
  border-bottom: 2px solid #ccc;
  padding: 1rem;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  z-index: 200;
  background: white;
  height: 100px;
  transition: all 200ms ease;
}

header.mini {
  height: 60px;
}

header.mini .logo {
  width: 150px;
  transition: all 200ms ease;
}

@media only screen and (max-width: 992px) {
  header {
    padding: .5rem;
    height: 130px;
  }
}

@media only screen and (max-width: 768px) {
  header {
    height: 70px;
  }
}

header>.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

@media only screen and (max-width: 992px) {
  header>.content {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  header>.content {
    flex-direction: row;
  }
}

header .navigation {
  display: flex;
  list-style: none;
  padding: 0px;
}

@media only screen and (max-width: 992px) {
  header .navigation {
    margin: 0px;
    width: 100%;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 768px) {
  header .navigation {
    display: none;
  }
}

header .navigation li a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 2rem;
  color: #565656;
  font-weight: 500;
  border: 0px;
  transition: 200ms all ease;
  display: inline-block;
}

header .navigation li.flag a img{
  width: 18px;
  display: inline-block;
}

header .navigation li.en a img{
    width: 20px;
    height: 18px;
    display: inline-block;
    height: 17px;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

header .navigation li.cz a img{
    width: 20x;
    display: inline-block;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.mobile_nav .navigation li.flag a img{
  width: 18px;
  display: inline-block;
}

.mobile_nav .navigation li.cz a img{
    width: 20px;
    display: inline-block;
    height: 17px;
}

@media only screen and (max-width: 1300px) {
  header .navigation li a {
    padding: 1rem;
  }
}

header .navigation li a:hover {
  border: 0px;
  transform: translatey(-5px);
  color: #1961ad;
}

@keyframes hero {
  to {
    background-position: 50% 35%;
  }
}

section.hero {
  padding-top: 110px;
  width: 100%;
  height: 620px;
  background-image: url("../img/hero_bg.jpg");
  background-position: 50% 50%;
  background-size: cover;
  animation-duration: 60s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@media only screen and (max-width: 992px) {
  section.hero {
    height: 400px;
    padding-top: 100px;
  }
}

@media only screen and (max-width: 768px) {
  section.hero {
    height: 300px;
    background-position: 50% 10%;
    background-size: 300%;
    padding-top: 40px;
  }
}

section.hero>.content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

section.hero h1 {
  text-transform: uppercase;
  color: #565656;
  width: 600px;
  text-align: center;
  padding-top: 2rem;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 2px;
  line-height: 2.1rem;
  text-shadow: 0px 0px 10px #dfdfe7;
}

@media only screen and (max-width: 992px) {
  section.hero h1 {
    width: 90%;
  }
}

@media only screen and (max-width: 992px) {
  section.hero h1 br {
    display: none;
  }
}

section.hero .arrow {
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #565656;
  border-right: 2px solid #565656;
  transform: rotate(45deg);
  animation-name: arrow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@media only screen and (max-width: 768px) {
  section.hero .arrow {
    display: none;
  }
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: translatey(-20px) rotate(45deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translatey(20px) rotate(45deg);
  }
}

h2 {
  color: #1961ad;
  display: block;
  width: 400px;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin: 3rem 0rem 2rem 0rem;
  font-weight: 500;
  background: -moz-linear-gradient(left, #dde7f3 53%, rgba(125, 185, 232, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #dde7f3 53%, rgba(125, 185, 232, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #dde7f3 53%, rgba(125, 185, 232, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@media only screen and (max-width: 992px) {
  h2 {
    width: 90%;
  }
}

h3 {
  font-weight: 500;
  color: #1961ad;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
}

hr {
  background: #ccc;
  height: 2px;
  width: 100%;
  border: none;
  margin: 4rem 0rem 2rem 0rem;
}

section {
  color: #565656;
  line-height: 22px;
}

footer {
  background: #d2d2d2;
  width: 100%;
  padding: 2rem 0rem;
  color: #565656;
  margin-top: 3rem;
}

footer .logo {
  margin-left: -0.4rem;
}

footer h2 {
  font-weight: 500;
  color: #1961ad;
  text-transform: uppercase;
  font-size: 1.4rem;
  background: none;
  margin: 0rem;
}

@media only screen and (max-width: 992px) {
  footer h2 {
    text-align: center;
    width: 100%;
  }
}

footer .flex {
  display: flex;
}

@media only screen and (max-width: 992px) {
  footer .flex {
    flex-direction: column;
    align-items: center;
  }
}

footer .adress {
  margin-left: 2rem;
  line-height: 1.5;
}

@media only screen and (max-width: 992px) {
  footer .adress {
    margin: 0 auto;
    text-align: center;
  }
}

footer .adress p {
  margin-top: 0.5rem;
}

span {
  color: #1961ad;
  font-weight: bold;
}

a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: #1961ad;
  transition: all 200ms ease;
}

a:hover {
  color: #0c2f54;
  border-bottom: 1px solid #0c2f54;
}

footer a {
  color: #565656;
}

.menu_toggle {
  width: 26px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}

@media only screen and (max-width: 768px) {
  .menu_toggle {
    display: flex;
  }
}

.menu_toggle.active .bar {
  background: #1961ad;
}

.menu_toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
}

.menu_toggle.active .bar:nth-child(2) {
  transform-origin: 50%;
  transform: scale(0);
}

.menu_toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
}

.menu_toggle .bar {
  height: 3px;
  border-radius: 5px;
  width: 100%;
  background-color: #565656;
  transform-origin: 4% 50%;
}

.menu_toggle .bar:nth-child(3) {
  transform: scalex(0.7);
}

.mobile_nav {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  box-sizing: border-box;
  padding: 4rem 2rem 2rem 2rem;
  background-color: rgba(25, 97, 173, 0.95);
  pointer-events: auto;
}

.mobile_nav.hide {
  transform: translatey(-30px);
  opacity: 0;
  pointer-events: none;
}

.mobile_nav .navigation {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
}

.mobile_nav .navigation a {
  color: white;
  text-transform: uppercase;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: block;
  border: none;
}

.mobile_nav .navigation a:hover {
  background: #4894e4;
  border: none;
}