.color-primary {
  color: #00A39E;
}

.accordion {
  --bs-accordion-active-bg: #F0F5FC;
  --bs-accordion-btn-bg: #F0F5FC;
  --bs-accordion-border-width: 0;
}
.accordion .accordion-button {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  min-height: 56px;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-item {
  margin-bottom: 16px;
  outline: none;
}
.accordion .accordion-item:not(:first-of-type) {
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion .accordion-collapse {
  background-color: #F0F5FC;
  outline: none;
}
.accordion .accordion-collapse .accordion-body {
  outline: none;
  background-color: white;
  border-style: solid;
  border-color: #F0F5FC;
  border-width: 0 7px 7px 7px;
}

html, body {
  font-family: "Montserrat", sans-serif;
  color: #100E1E;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

h1, h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}
h1.with-line:before, h2.with-line:before {
  content: "";
  width: 6px;
  height: 29px;
  display: inline-block;
  border-radius: 10px 2px;
  background: #94CA57;
  position: absolute;
  left: -22px;
  top: 4px;
}

h3 {
  font-size: 14px;
  font-weight: 700;
}

p.large {
  font-size: 16px;
  line-height: 33px;
}

.btn.btn-primary {
  background-color: #00A39E;
  border: none;
  min-width: 52px;
  padding: 15px 30px 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}
.btn.btn-primary:hover {
  background-color: #018581;
}
.btn.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #00A39E;
  min-width: 52px;
  padding: 15px 30px 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #100E1E;
}
.btn.btn-outline-primary:hover {
  background-color: #00A39E;
  color: white;
}
.btn.btn-sm {
  padding: 10px 20px 10px 20px;
}

hr {
  border-top: 1px solid #100E1E;
  opacity: 0.2;
  margin-top: 40px;
  margin-bottom: 40px;
}

ul:not(.navbar-nav) li + li {
  margin-top: 12px;
}

.container.with-background-logo {
  position: relative;
}
.container.with-background-logo:before {
  content: "";
  width: 227px;
  height: 386px;
  background-image: url("./img/logo-pozadi.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  position: absolute;
  bottom: -50px;
  left: -50px;
  opacity: 0.3;
  z-index: -20;
}
.container.with-background-logo.right:before {
  left: auto;
  right: -50px;
}

header nav.navbar {
  min-height: 133px;
}
header nav.navbar .navbar-nav {
  gap: 50px;
}
header nav.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
header nav.navbar .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #100E1E;
}

.banner-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.4;
}

.banner-subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 10px;
  color: #00A39E;
  margin-bottom: 30px;
}

.logo-images {
  display: flex;
  gap: 2%;
  position: relative;
}
.logo-images div.img-wrapper {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 51px 34.8px -27px rgba(15, 25, 59, 0.25);
}
@media (min-width: 0px) {
  .logo-images div.img-wrapper {
    border-top-left-radius: 150px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media (min-width: 768px) {
  .logo-images div.img-wrapper {
    border-top-left-radius: 180px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media (min-width: 992px) {
  .logo-images div.img-wrapper {
    border-top-left-radius: 180px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media (min-width: 1200px) {
  .logo-images div.img-wrapper {
    border-top-left-radius: 200px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media (min-width: 1600px) {
  .logo-images div.img-wrapper {
    border-top-left-radius: 290px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
.logo-images div.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-container {
  background-color: rgba(218, 227, 238, 0.4);
}

.black-boxes {
  margin-bottom: 100px;
  margin-top: 70px;
}
.black-boxes .black-box {
  background-color: #100E1E;
  border-radius: 60px 20px 60px 20px;
  display: flex;
  overflow: hidden;
  height: 100%;
}
.black-boxes .black-box .image {
  width: 50%;
  overflow: hidden;
  border-bottom-right-radius: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.black-boxes .black-box .image img {
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: 450px;
}
.black-boxes .black-box .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  color: white;
  text-align: left;
  padding: 23px;
}
.black-boxes .black-box .content .title {
  font-size: 22px;
  font-weight: 600;
}
.black-boxes .black-box .content .description {
  color: #2CB583;
  font-size: 16px;
}
.black-boxes .black-box .content .info {
  font-size: 14px;
  line-height: 16px;
  margin-left: 10px;
}
.black-boxes .black-box .content .info div {
  margin-top: 10px;
}
.black-boxes .black-box .content .info div:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #2CB583;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  margin-left: -10px;
  bottom: 2px;
  position: relative;
}
.black-boxes .black-box .content .button {
  margin-top: auto;
  align-self: flex-end;
}

.light-boxes .light-box {
  height: 100%;
  background-color: white;
  border: 1px solid #DAE3EE;
  padding: 8px;
  border-radius: 60px 14px 60px 14px;
}
.light-boxes .light-box .image {
  overflow: hidden;
  border-radius: 51px 11px 11px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 244px;
  width: 100%;
}
.light-boxes .light-box .image img {
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: center;
}
.light-boxes .light-box .content {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.light-boxes .light-box .content .main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.light-boxes .light-box .content .main .position {
  font-size: 16px;
  font-weight: 600;
  color: #00A39E;
}
.light-boxes .light-box .content .main .name {
  font-size: 20px;
  line-height: 33px;
  font-weight: 700;
}
.light-boxes .light-box .content .main .info {
  font-size: 16px;
  color: #00A39E;
}
.light-boxes .light-box .button {
  display: flex;
  align-items: end;
  padding: 16px;
}

.locality {
  border-radius: 20px 0px 20px 10px;
  background: #FFF;
  box-shadow: 0px 10px 24.2px -2px rgba(0, 0, 0, 0.13);
  padding: 15px;
}
.locality .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}
.locality .description {
  font-size: 12px;
  line-height: 26px;
  color: #7E7B9C;
}
.locality a {
  font-size: 14px;
  font-weight: 600;
  color: #00A39E;
}

.social {
  background-image: url("./img/social.svg");
  background-repeat: no-repeat;
  background-position: top center;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  margin-bottom: -100px;
  padding-bottom: 100px;
  padding-top: 130px;
}
.social h2 {
  margin-bottom: 40px;
}
.social .buttons {
  display: flex;
  gap: 24px;
}
.social .buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 5px 20px 0px rgba(40, 34, 74, 0.08);
  padding: 14px 25px;
  text-decoration: none;
  color: black;
}

footer {
  margin-top: 140px;
}
footer .footer-menu {
  display: flex;
  gap: 60px;
}
footer .footer-menu a {
  color: #100E1E;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
footer .copyright {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 14, 30, 0.1);
}
footer .copyright a {
  color: #100E1E;
  text-decoration: none;
}
footer .copyright a:hover {
  text-decoration: underline;
}

article .meta {
  font-size: 16px;
  font-weight: 600;
}

.contact-form-wrapper {
  border-radius: 60px 20px;
  background: #fff;
  box-shadow: 0px 15px 38.9px -10px rgba(24, 24, 46, 0.14);
  padding: 33px;
}
.contact-form-wrapper .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 19px;
}

.wpcf7-spinner {
  margin-left: 0;
  margin-right: 0;
}

.form-control {
  border-radius: 6px;
  background: #F0F4F8;
  border: none;
  min-height: 46px;
}

@media (max-width: 1600px) {
  .contact-form-button-outer-wrapper {
    flex-direction: column;
  }
}

.contact-form-button-wrapper p {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  align-items: end;
  justify-content: end;
}

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1550px;
  }
}
.post-type-post .content {
  font-size: 16px;
  line-height: 1.5em;
}

.header-bar {
  background-color: rgba(204, 232, 185, 0.5);
}
.header-bar .container {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-bar .container div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
}
.header-bar .container div img {
  height: 22px;
}

/*# sourceMappingURL=style.css.map */
