@charset "UTF-8";
body {
  font-family: "Open Sans", sans-serif;
  background: #0062A7;
}

section {
  background: #f3f3f3;
}

header {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #3B69A7;
  background: linear-gradient(180deg, rgb(59, 105, 167) 0%, rgb(243, 243, 243) 100%);
}
header h1 {
  color: white;
  font-size: 36px;
  font-weight: 300;
}
header .logo {
  width: 200px;
}
@media (max-width: 520px) {
  header .logo {
    width: 150px;
  }
  header h1 {
    font-size: 24px;
  }
}

.item {
  text-align: center;
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
}
.item h2 {
  font-size: 1.2em;
  padding: 0.3em 0;
  color: #635D5D;
  font-weight: 600;
}
.item h3 {
  font-size: 1em;
  font-weight: bold;
  color: #0062A7;
}
.item .more {
  color: #C50068;
  text-decoration: none;
}
.item .more:hover {
  text-decoration: underline;
}
.item .pic-container {
  position: relative;
  overflow: hidden;
}
.item img {
  transition: 0.3s ease-in-out;
}
.item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
.item:hover img {
  transform: scale(1.1);
}

footer {
  color: white;
  text-align: center;
  padding-bottom: 60px;
  font-weight: 300;
  font-size: 14px;
  position: relative;
}
footer .domain {
  padding-top: 60px;
  font-size: 3em;
  font-weight: 300;
}
footer a {
  text-transform: uppercase;
  color: #0062A7;
  background: #f3f3f3;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
}

@media (min-width: 768px) {
  #mainBlock .flxbx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
  }
}
#mainBlock .block1 {
  flex: 624;
  min-width: 300px; /* opcionális, ne legyen túl kicsi */
  background-color: lightblue;
}
#mainBlock .block2 {
  flex: 376;
  min-width: 200px;
  background-color: #35AAE1;
  border-radius: 10px;
  text-align: center;
  color: white;
  padding: 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mainBlock .block2 strong {
  font-size: 1.4em;
}
#mainBlock .block2 label {
  font-weight: 300;
  padding-bottom: 5px;
}
#mainBlock .block2 .form-control {
  border-radius: 50px;
  text-align: center;
}
#mainBlock .block2 button {
  background: #0062A7;
  border-radius: 50px;
  margin-top: 15px;
  padding-right: 30px;
  padding-left: 30px;
  color: #C9EEFF;
}
#mainBlock .main-item {
  position: relative;
}
#mainBlock .main-item img {
  position: relative;
}
#mainBlock .main-item .caption {
  position: absolute;
  bottom: 0;
  padding: 15px;
  background: rgba(59, 105, 167, 0.4);
  color: rgb(183, 214, 255);
  left: 0;
  right: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#mainBlock .main-item .caption h2 {
  font-family: 24px;
  color: white;
  text-transform: uppercase;
}
#mainBlock .main-item .caption h3 {
  font-size: 18px;
}

.alert {
  border-radius: 0;
  font-size: 1.5em;
}
.alert.alert-danger {
  background: #C50068;
  color: white;
}
.alert.alert-warning {
  background: #35AAE1;
  color: white;
}/*# sourceMappingURL=dkp-alairas.css.map */