* {
  --text: #173F5F;
  --accent: #ED7401;
  --accent2: #2F2483;
}
.kapcsolat-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kapcsolat-view h1 {
  text-align: center;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 40px;
}
.kapcsolat-view .grid {
  display: grid;
  grid: 1fr / 4fr 6fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .kapcsolat-view .grid {
    display: flex;
    flex-direction: column;
  }
}
.kapcsolat-view .grid .grid-item {
  box-shadow: 0 6px 22px 0 rgba(0,0,0,.1);
  padding: 30px;
}
.kapcsolat-view .grid .grid-item.item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kapcsolat-view .grid .grid-item.item-info .name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.kapcsolat-view .grid .grid-item.item-info .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin: 5px 0;
}
.kapcsolat-view .grid .grid-item.item-info .text p span {
  font-weight: 700;
}
.kapcsolat-view .grid .grid-item.item-info .text p a {
  color: var(--text);
}
.kapcsolat-view .grid .grid-item.item-info .openingtime {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin: 20px 0 10px 0;
}
.kapcsolat-view .grid .grid-item.item-info .buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
}
.kapcsolat-view .grid .grid-item.item-info .buttons a {
  width: 100%;
  border-radius: 7px;
  border: 1px solid var(--accent);
  height: 50px;
  border-radius: 3px;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: white;
  background: var(--accent);
  transition: all .2s ease;
  text-decoration: none;
  margin: 5px 0;
}
.kapcsolat-view .grid .grid-item.item-info .buttons a:hover {
  background: transparent;
  color: var(--accent);
}
.kapcsolat-view .grid .grid-item.item-form .form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.kapcsolat-view .grid .grid-item.item-form .cbx-label { margin-left: 10px; }

.snbutton {
  border: none;
  outline: none;
  background: var(--accent);
  padding: 0 15px;
  height: 30px;
  border-radius: 3px;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  color: white;
  position: relative;
  text-transform: uppercase;
  width: 220px;
  text-decoration: none;
  transition: all .2s ease;
  border: 1px solid var(--accent);
}
.snbutton svg {
  margin-left: 20px;
}

.snbutton:hover {
  background: transparent;
  color: var(--accent);
  text-decoration: none;
}
.snbutton:hover svg path {
  fill: var(--accent);
}

.grid .form-group {
  margin-bottom: 12px;
}
.page-body {
  background: #FFFFFF;
}


.team-title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin: 70px 0 30px 0;
}
.team {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.team .team-member {
  width: calc(25% - 30px);
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team .team-member:nth-child(-n+3) {
  flex: 1 0 30%;
}
.team .team-member .img-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.team .team-member .img-wrapper img {
  object-fit: none;
  object-position: initial;
  width: auto;
  height: auto;
}
.team .team-member .name { font-size: 22px; font-weight: 700; color: var(--text); margin-top: 10px; }
.team .team-member .job { font-size: 16px; font-weight: 300; color: var(--text); margin-top: 0px; }
.team .team-member .phone { font-size: 18px; font-weight: 400; color: var(--text); margin-top: 15px; text-decoration: none; transition: all .2s ease; }
.team .team-member .phone:hover { color: var(--accent); }
.team .team-member .email { font-size: 18px; font-weight: 400; color: var(--text); margin-top: 5px; text-decoration: none; transition: all .2s ease }
.team .team-member .email:hover { color: var(--accent); }
@media (max-width: 996px) {
  .team .team-member { width: calc(50% - 20px); margin: 10px; }
  .team .team-member .name { font-size: 18px; }
  .team .team-member .job { font-size: 14px; }
  .team .team-member .email { font-size: 16px; margin-top: 5px; }
}
@media (max-width: 576px) {
  .team .team-member { width: calc(100%); margin: 10px 0; }
}

