@import url('https://fonts.googleapis.com/css?family=Lato');

body{
  font-family: 'Lato', sans-serif;
  border-image: url(../images/szines-csik-felulre.png) 30 30 round;
  border-bottom: 0px solid white;
  border-top: 3px white solid;
}

/*same size box*/
.box{
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: 0;
  overflow: hidden;
  
  /*egyforma box magasságok miatt kell!*/
  height: 100%;
}

.box .box-overlay{
  background: rgba(0,0,0,0.4);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.box-image{
	width: 100%;
}

.box .box-overlay:hover{
	background: rgba(0,0,0,0.1);
}

.box .box-text, footer .partners .column img{
	position: relative;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
}


.disable {
  position: absolute;
  height: 50%;
  width: 90%; /* Set your own width: percents, ems, whatever! */
  margin: auto; /* Center the item vertically & horizontally */
  top: 0; left: 0; bottom: 0; right: 0; /* Set the bounds in which to center it, relative to its parent/container */
}

.is-size-1-desktop{
  font-size: 5rem!important;
}

.is-horizontal-center {
  justify-content: center;
}

.is-horizontal-left{
  justify-content: flex-start;
}

.is-horizontal-right {
  justify-content: flex-end;
}

.content .emergency{
  text-align: center;
  border: 3px solid red;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 1.5em;
}

.content .emergency a{
  display: block;
  padding: 20px;
  color: rgb(0,34,91);
}

.content .emergency h1{
  color: red;
}

.content .emergency a:hover{
  background: rgb(0,34,91);
  color: white;

  transition-property: background;
  transition-duration: 1s;
}

.content .emergency:hover{
  border: 3px solid rgb(0,34,91);
}
