:root {
  --hsa-zold: #00b26b;
  --hsa-sotet-zold: #008550;
  --hsa-kek: #181b31;
  --hsa-shadow: rgba(0, 178, 107, 0.25);
  --light-gray: #ddd;
}

.navbar-nav {
  margin-right: auto;
}

.navbar-light .navbar-toggler, .navigation-clean-button .navbar-toggler {
  border: none;
  background-image: none !important;
}

.navbar-light .navbar-toggler-icon {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' fill='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 992px) {
  section#hero {
    /*clip-path: ellipse(1750px 80% at 50% 17%);*/
  }
}

html, body {
  overflow-x: hidden;
  color: var(--hsa-kek);
}

.reszletek .img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  /*object-fit: cover;*/
}

@media (max-width: 576px) {
  .image-holder {
    display: none !important;
  }
}

.btn, .btn-primary {
  font-weight: 700;
  border-radius: 0;
  padding: 10px 50px;
}

.nofocus:focus {
  outline: none !important;
  border-color: initial;
  box-shadow: none !important;
}

.hsa-button {
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  border: 2px solid var(--hsa-zold);
  text-decoration: none;
  color: var(--hsa-zold) !important;
  font-weight: 700;
  transition: 300ms;
  display: block;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: fit-content;
}

.hsa-button i {
  font-weight: 700;
  margin-left: 1em;
  font-size: 18px;
}

.hsa-button:hover {
  background-color: var(--hsa-zold);
  color: white !important;
  transition: 300ms;
}

@media (min-width: 768px) {
  form .col input, form .col label, form .col p {
  }
}

.form-control:focus {
  color: initial;
  background-color: #fff;
  border-color: var(--hsa-zold);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--hsa-shadow);
}

.why-us-card img {
  height: 80px;
  object-fit: contain;
}

@media (min-width:1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
  }
}

.footer-social-icons {
  font-size: 28px;
  color: #000;
  margin-right: 1.5rem;
}

.footer-social-icons:hover {
  color: var(--hsa-zold);
}

#form label {
  font-weight: 700;
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--hsa-zold);
  border-color: var(--hsa-zold);
}

.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--hsa-zold);
  border-color: var(--hsa-zold);
}

.btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 2px 0 .25rem rgba(0,0,0,0.2);
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 2rem;
    object-fit: contain;
  }
}

strong {
  font-weight: 600;
  color: initial;
}

.btn-secondary {
  border: 1px solid #ffffff88;
  background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2));
  background-color: transparent;
  border-radius: 4px;
  font-weight: 300;
}

.btn-primary {
  background: linear-gradient(to right, var(--hsa-zold), var(--hsa-sotet-zold));
  border: none;
  border-radius: 5px;
  padding: 0.5rem 3rem;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-secondary:hover {
  color: #fff;
  background-color: initial;
  border-color: initial !important;
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4));
  transition: background 700ms;
}

.underline-center::after {
  content: "";
  height: 2px;
  width: 70px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--hsa-zold);
}

.underline-left::after {
  content: "";
  height: 2px;
  width: 80px;
  position: absolute;
  bottom: -7px;
  left: 0;
  /*transform: translateX(-50%);*/
  background-color: var(--hsa-zold);
}

.steps-list {
  counter-reset: step;
  display: flex;
  padding-left: 0;
  flex-direction: column;
}

@media (min-width: 768px) {
  .steps-list {
    flex-direction: row;
  }
}

.steps-list li {
  list-style: none;
  display: inline-block;
  flex: 1 1 0px;
  position: relative;
  text-align: center;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .steps-list li {
    padding-left: 60px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .steps-list li:before {
    position: absolute;
    left: 0;
  }
}

.steps-list li:before {
  content: counter(step);
  counter-increment: step;
  font-size: 22px;
  color: var(--hsa-kek);
  width: 50px;
  height: 50px;
  line-height: 50px;
  box-shadow: 0px 0px 9px rgba(0,0,0,0.2);
  border-radius: 100%;
  display: block;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 10px auto;
  background-color: #fff;
}

@media (min-width: 768px) {
  .steps-list li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--light-gray);
    top: 23px;
    left: -50%;
    z-index: -1;
  }
}

.steps-list li:first-child:after {
  content: none;
}

.underline-center {
  position: relative;
  margin-bottom: 2rem;
}

.underline-left {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 500;
}

a:hover {
  color: var(--hsa-zold);
}

a {
  color: inherit;
  text-decoration: underline;
}

body {
  font-weight: 300;
  font-family: 'Ubuntu';
}

ul:not(.navbar-nav) li {
  margin: 0.5rem 1rem;
  font-size: 18px;
}

li::marker {
  color: var(--hsa-zold);
  width: 22px;
  display: block;
}

.checked-list li {
  padding-left: 0.7rem;
  list-style: url(../../assets/img/check-22x22.png?h=a7a3ad19562e6475b5b363dde501945d);
}

@media (max-width: 768px) {
  .checked-list {
    border: none;
  }
}

.bg-green {
  background: url("../../assets/img/HSA_emblem_translucent.png?h=d33ede805f0a33ea7653c2fa466294c2") 160% 53% no-repeat, linear-gradient(to right, var(--hsa-zold), var(--hsa-sotet-zold));
  background-color: var(--hsa-zold);
  background-position: 130% 73%;
  background-repeat: no-repeat;
  padding: 2rem 0;
}

.two-panels .col-md-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .two-panels .col-md-6:first-child {
    align-items: flex-end;
    justify-content: center;
    padding-right: 1.5rem;
    width: 40%;
  }
}

@media (min-width: 768px) {
  .two-panels .col-md-6:last-child {
    align-items: flex-start;
    justify-content: center;
    padding-left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .list-parent {
    border-left: 1px solid var(--light-gray);
  }
}

/* ⬇️ this controls the width of the titles */

@media (min-width: 992px) {
  .two-panels .col-md-6:first-child > * {
    max-width: 300px;
  }
}

ul {
  margin-bottom: 0;
}

ul:not(.navbar-nav) li:first-child {
  margin-top: 0;
}

ul:not(.navbar-nav) li:last-child {
  margin-bottom: 0;
}

.nav-item, .nav-link, .nav-item:hover, .nav-link:hover {
  color: var(--bs-white) !important;
}

@media (min-width: 768px) {
  .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid var(--bs-white);
  }
}

@media (min-width: 768px) {
  .nav-link {
    line-height: 1;
    padding: 0 0.9rem !important;
  }
}

@media (max-width: 767px) {
  #navcol-1 {
    width: 50vw;
    position: absolute;
    top: 0;
    right: -50vw;
    padding-top: 10vh;
    text-align: right;
    background-color: var(--hsa-zold);
    height: 100vh;
    padding-left: 5vw;
    padding-right: 5vw;
    box-shadow: -3px 0px 12px rgb(0 0 0 / 25%);
  }
}

@media (max-width: 767px) {
  #navcol-1.show {
    right: 0;
  }
}

.nav-item {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.navbar-toggler {
  position: relative;
  z-index: 2;
}

#navcol-1.collapsing {
  right: 0;
  transition: right 0.5s ease-in-out;
}

.collapse:not(.show) {
}

.collapsing {
  overflow: visible;
  transition: right 0.5s ease-in-out;
}

#offcanvas-1 .offcanvas-body {
}

#offcanvas-1 {
  background-color: var(--hsa-zold);
  max-width: 50vw;
}

#offcanvas-1 .nav-tabs {
  border: none;
  justify-content: flex-end;
  padding-top: 7vh;
}

#offcanvas-1 .nav-item, #offcanvas-1 .nav-link {
  padding-right: 0;
  margin-right: 0;
  width: 100%;
  text-align: right;
}

.form-check-input:checked {
  background-color: var(--hsa-zold);
  border-color: var(--hsa-zold);
}

.form-check-input:focus, .btn-primary:focus {
  border-color: rgba(0,178,107,0.5);
  outline: 0;
  box-shadow: none;
}

ol, ul {
  padding-left: 16px;
}

#scroll-icon {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes scroll-down {
  0.0% {
    bottom: 10px;
  }
  17.3% {
    bottom: 4px;
  }
  50% {
    bottom: 12px;
  }
  63.5% {
    bottom: 0px;
  }
  100% {
    bottom: 10px;
  }
}

#scroll-icon:hover {
  animation: scroll-down 2s ease 0s infinite normal none;
}

#green-line-2 {
  display: block;
  width: 120px;
  margin-top: 2rem;
  height: 3px;
  background: var(--hsa-zold);
}

#penz :first-child, #busz :first-child {
  list-style-type: none;
  margin-left: -0.01rem;
  font-weight: 600;
}

#terkep {
  width: 100%;
  max-width: 70vw;
  min-width: 200px;
}

@media (min-width: 992px) {
  #terkep {
    transform: scale(1.2);
    transform-origin: bottom right;
  }
}

.plusz {
  list-style: none;
}

.plusz li:not(:first-child):before {
  content: "+";
  color: var(--hsa-zold);
  width: 1em;
  margin-left: -1em;
  display: inline-block;
}

