@charset "UTF-8";
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (max-width: 1220px) {
  .container {
    width: 95%;
  }
}
@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
  .hide-mobile {
    display: none !important;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 144%;
  background: #FDFAF7;
  margin: 0;
  color: #3B3B3B;
}
@media (max-width: 768px) {
  body {
    background: #fff;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
}

h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
}

h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.orange {
  color: #F39C06;
}

.a-button {
  color: #fff;
  background: #F39C06;
  font-family: "Unbounded", sans-serif;
  border: none;
  outline: none;
  padding: 0 20px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-decoration: none;
}
.a-button:hover {
  background: #e69509;
}

.site-header {
  padding-top: 34px;
  padding-bottom: 45px;
  background: #fff;
  transition: all 0.3s ease;
  z-index: 1000;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  animation: slideDown 0.3s ease;
}
.site-header.sticky .site-branding img {
  height: 20px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .site-header {
    padding: 12px 0 18px 0;
  }
  .site-header.sticky {
    padding: 10px 0;
  }
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-branding {
  display: inline-flex;
}
.site-header .site-branding img {
  height: 25px;
  display: block;
  transition: height 0.3s ease;
}
.site-header .main-navigation {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (min-width: 991px) and (max-width: 1150px) {
  .site-header .main-navigation {
    gap: 40px;
  }
}
.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.site-header .menu-toggle:hover {
  background-color: rgba(12, 46, 55, 0.1);
}
.site-header .menu-toggle img {
  width: 44px;
  height: 44px;
  display: block;
}
.site-header #primary-menu {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  align-items: center;
}
@media (min-width: 991px) and (max-width: 1150px) {
  .site-header #primary-menu {
    gap: 25px;
    padding-left: 25px;
  }
}
.site-header #primary-menu li {
  list-style-type: none;
}
.site-header #primary-menu a {
  color: #0C2E37;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.site-header #primary-menu a:hover {
  color: rgba(12, 46, 55, 0.7);
}
.site-header .phone-contact.desktop-only {
  display: flex;
}
.site-header .phone-contact .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0C2E37;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
}
.site-header .phone-contact .phone-link:hover {
  color: rgba(12, 46, 55, 0.7);
}
.site-header .phone-contact .phone-link .phone-icon {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.3s ease;
}
.site-header .phone-contact .phone-link .phone-number {
  font-size: 14px;
  white-space: nowrap;
}
.site-header .phone-contact .phone-link:hover .phone-icon {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .site-header .menu-toggle {
    display: block;
  }
  .site-header .main-navigation {
    position: relative;
  }
  .site-header .phone-contact.desktop-only {
    display: none;
  }
  .site-header #primary-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
    min-width: 220px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .site-header #primary-menu.menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header #primary-menu li {
    width: 100%;
  }
  .site-header #primary-menu li.mobile-phone-item {
    border-top: 1px solid rgba(12, 46, 55, 0.1);
    margin-top: 10px;
    padding-top: 15px;
  }
  .site-header #primary-menu li.mobile-phone-item .mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0C2E37;
    text-decoration: none;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    padding: 0px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  .site-header #primary-menu li.mobile-phone-item .mobile-phone-link .phone-icon {
    width: 18px;
    height: 18px;
    display: block;
  }
  .site-header #primary-menu li.mobile-phone-item .mobile-phone-link .phone-number {
    font-size: 14px;
    font-weight: 500;
  }
  .site-header #primary-menu a {
    display: block;
    padding: 8px 0;
    width: 100%;
    font-size: 16px;
  }
  .site-header.menu-overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  .site-header .main-navigation {
    z-index: 1000;
  }
}
@media (max-width: 991px) {
  .site-header .main-navigation {
    gap: 0 !important;
  }
}
@media (max-width: 480px) {
  .site-header .main-navigation {
    gap: 0 !important;
  }
  .site-header .phone-contact .phone-link {
    padding: 6px 8px;
  }
  .site-header .phone-contact .phone-link .phone-icon {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1301px) {
  .sekcja-hero {
    margin-bottom: 20px;
  }
}
.sekcja-hero .container {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 25px;
}
.sekcja-hero .container::after {
  content: "";
  display: block;
  width: 50%;
  height: 120px;
  background: #FDFAF7;
  border-radius: 0 40px 0 0;
  left: -23px;
  bottom: 0;
  position: absolute;
}
@media (max-width: 1300px) {
  .sekcja-hero .container::after {
    width: 47.5%;
    left: 0.5vw;
  }
}
.sekcja-hero .container::before {
  background: #0C2E37;
  content: "";
  display: block;
  width: 200px;
  height: 130px;
  border-radius: 0 40px 0 0;
  left: calc(50% - 80px);
  z-index: -1;
  bottom: 36px;
  height: 120px;
  position: absolute;
}
.sekcja-hero .container .hero-wrap {
  display: flex;
  flex-direction: row;
}
.sekcja-hero .container .left-col {
  flex: 0 0 48%;
}
.sekcja-hero .container .left-col .left-col-inner {
  padding: 90px 0px 76px 80px;
  background: #0C2E37;
  border-radius: 40px 0 0 40px;
  height: calc(100% - 120px);
}
@media (max-width: 1300px) {
  .sekcja-hero .container .left-col .left-col-inner {
    padding: 60px 0px 60px 45px;
  }
}
.sekcja-hero .container .left-col p {
  margin: 0;
  color: #fff;
  max-width: 469px;
}
.sekcja-hero .container .left-col h1 {
  margin-top: 26px;
  margin-bottom: 25px;
  color: #fff;
}
@media (max-width: 1300px) {
  .sekcja-hero .container .left-col h1 {
    margin-top: 0;
  }
}
.sekcja-hero .container .right-col {
  flex: 1;
}
.sekcja-hero .container .right-col .right-col-inner {
  padding: 50px 50px 50px 60px;
  background: #0C2E37;
  border-radius: 0 40px 40px 40px;
}
@media (max-width: 1300px) {
  .sekcja-hero .container .right-col .right-col-inner {
    padding: 60px 45px 60px 45px;
  }
}
@media (max-width: 1000px) {
  .sekcja-hero .container .right-col .right-col-inner .form-submit-row {
    flex-direction: column !important;
    gap: 24px;
  }
}
.sekcja-hero .container .right-col h3 {
  color: #0C2E37;
  max-width: none;
  margin-bottom: 24px;
  margin-top: 0;
}
.sekcja-hero .container .right-col .wpcf7 {
  padding: 34px 38px 60px 38px;
  background: #fff;
  border-radius: 25px;
  position: relative;
}
@media (max-width: 1300px) {
  .sekcja-hero .container .right-col .wpcf7 {
    padding: 34px 24px 60px 24px;
  }
}
.sekcja-hero .container .right-col .wpcf7 p {
  margin: 0;
  position: relative;
}
.sekcja-hero .container .right-col .wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  transform: translateY(-100%);
  color: #CD6A4A;
  font-size: 14px;
}
.sekcja-hero .container .right-col .wpcf7 .wpcf7-response-output {
  position: relative;
  margin: 0;
  border: solid #E0AB43 2px;
  left: 0;
  transform: translateY(30px);
  border-radius: 25px;
}
.sekcja-hero .container .right-col .wpcf7 input {
  background: rgba(12, 46, 55, 0.09);
  height: 47px;
  margin-bottom: 24px;
  border: solid transparent 1px;
  border-radius: 15px;
  padding: 0 21px;
  width: 100%;
}
.sekcja-hero .container .right-col .wpcf7 input.wpcf7-not-valid {
  border: solid #CD6A4A 1px;
}
.sekcja-hero .container .right-col .wpcf7 input::placeholder {
  color: #3B3B3B;
}
.sekcja-hero .container .right-col .wpcf7 input[type=checkbox] {
  width: 23px;
  height: 23px;
  background: rgba(12, 46, 55, 0.09);
  padding: 0;
  margin-bottom: 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0;
}
.sekcja-hero .container .right-col .wpcf7 input[type=checkbox]:checked {
  background: rgba(12, 46, 55, 0.09);
  position: relative;
}
.sekcja-hero .container .right-col .wpcf7 input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0C2E37;
  font-size: 14px;
  font-weight: bold;
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 25px);
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row .wpcf7-not-valid input {
  outline: solid #CD6A4A 1px;
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row .wpcf7-list-item {
  margin: 0;
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row .wpcf7-list-item label {
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 769px) and (max-width: 1300px) {
  .sekcja-hero .container .right-col .wpcf7 .form-submit-row .wpcf7-list-item label input {
    min-width: 23px;
  }
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row .wpcf7-list-item label span {
  font-size: 14px;
  max-width: 212px;
  line-height: 135%;
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row button {
  color: #fff;
  background: #F39C06;
  font-family: "Unbounded", sans-serif;
  border: none;
  outline: none;
  width: 100px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.sekcja-hero .container .right-col .wpcf7 .form-submit-row button:hover {
  background: #e69509;
}

.sekcja-uslugi .row-top {
  display: flex;
  flex-direction: row;
}
.sekcja-uslugi .row-top h2 {
  color: #0C2E37;
  margin-top: 76px;
  margin-bottom: 76px;
}
.sekcja-uslugi .row-top .text-wrap {
  flex: 1;
  padding-left: 106px;
}
.sekcja-uslugi .row-top .text-wrap h2 {
  color: #0C2E37;
  margin-top: 76px;
  margin-bottom: 76px;
}
.sekcja-uslugi .row-top .img-wrap {
  flex: 1;
  position: relative;
}
.sekcja-uslugi .row-top .img-wrap img {
  display: block;
  width: 411px;
  position: absolute;
  bottom: -33px;
  left: calc(50% + 76px);
  transform: translateX(-50%);
}
.sekcja-uslugi .container-second {
  background: #F4EAE1;
  border-radius: 25px;
  padding: 118px 80px 71px 80px;
}
.sekcja-uslugi .container-second .row-elements {
  display: flex;
  flex-direction: row;
  gap: 55px;
  margin-bottom: 50px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .sekcja-uslugi .container-second .row-elements {
    flex-wrap: wrap;
  }
}
.sekcja-uslugi .container-second .row-elements .element {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .sekcja-uslugi .container-second .row-elements .element {
    flex: 0 0 100%;
  }
}
@media (min-width: 1300px) {
  .sekcja-uslugi .container-second .row-elements .element.element-long-text h3 {
    white-space: nowrap;
    overflow: visible;
  }
}
.sekcja-uslugi .container-second .row-elements .element img {
  display: block;
  margin-bottom: 15px;
  width: 55px;
}
.sekcja-uslugi .container-second .row-elements .element h3 {
  color: #0C2E37;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 15px;
  margin-top: 0;
}
.sekcja-uslugi .container-second .row-elements .element p {
  margin: 0;
  color: #3B3B3B;
}
.sekcja-uslugi .container-second .row-elements .element p a {
  display: inline;
  color: #3B3B3B;
  text-decoration-color: #3B3B3B;
  text-underline-offset: 2px;
  transition: 0.3s;
}
.sekcja-uslugi .container-second .row-elements .element p a:hover {
  color: #0C2E37;
}
.sekcja-uslugi .container-second .row-content {
  margin-top: 90px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sekcja-uslugi .container-second .row-content .text-big {
  font-size: 24px;
  line-height: 150%;
  font-weight: 600;
  color: #0C2E37;
  margin-bottom: 24px;
  font-family: "Unbounded", sans-serif;
  text-align: center;
  max-width: 830px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sekcja-dla-kogo {
  margin-top: 100px;
}
.sekcja-dla-kogo .text {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.sekcja-dla-kogo .text h2 {
  text-align: center;
  color: #0C2E37;
  max-width: 572px;
  margin-top: 0;
  margin-bottom: 25px;
}
.sekcja-dla-kogo .text p {
  margin: 0;
  text-align: center;
}
.sekcja-dla-kogo .a-button {
  margin-top: 46px;
}
.sekcja-dla-kogo .row-elements {
  display: flex;
  flex-direction: row;
  gap: 35px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .sekcja-dla-kogo .row-elements {
    flex-direction: column;
  }
}
.sekcja-dla-kogo .row-elements .element {
  padding: 32px;
  height: 320px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .sekcja-dla-kogo .row-elements .element {
    min-height: 250px;
  }
}
.sekcja-dla-kogo .row-elements .element h3 {
  max-width: 220px;
  color: #fff;
  margin: 0;
  line-height: 150%;
}
.sekcja-dla-kogo .row-elements .element img {
  bottom: 0;
  right: 0;
  position: absolute;
}
.sekcja-dla-kogo .row-elements .element-first {
  background: #CD6A4A;
  border-radius: 25px;
}
.sekcja-dla-kogo .row-elements .element-second {
  background: #E0AB43;
  border-radius: 25px;
}
.sekcja-dla-kogo .row-elements .element-third {
  background: #0C2E37;
  border-radius: 25px;
}

.sekcja-nasza-spolecznosc {
  margin-top: 91px;
}
.sekcja-nasza-spolecznosc .container {
  display: flex;
  flex-direction: row;
  gap: 90px;
}
.sekcja-nasza-spolecznosc .container .col-left {
  display: flex;
  flex: 0 0 40%;
}
.sekcja-nasza-spolecznosc .container .col-left img {
  display: block;
  width: 100%;
}
.sekcja-nasza-spolecznosc .container .col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sekcja-nasza-spolecznosc .container .col-right h2 {
  color: #0C2E37;
  margin-top: 0;
  margin-bottom: 38px;
}

.sekcja-case-study {
  margin-top: 120px;
}
.sekcja-case-study .text-content {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 95px;
}
.sekcja-case-study .text-content h2 {
  color: #0C2E37;
  margin: 0;
  flex: 0 0 38%;
}
.sekcja-case-study .text-content p {
  margin: 0;
  flex: 1;
}
.sekcja-case-study .row-elements {
  gap: 30px;
  flex-direction: row;
  flex-wrap: nowrap;
  display: flex;
}
.sekcja-case-study .row-elements .element {
  flex-direction: column;
  display: flex;
  flex: 1;
  border-radius: 25px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
  padding: 42px 35px;
  position: relative;
  background: #fff;
}
.sekcja-case-study .row-elements .element img {
  position: absolute;
  left: 35px;
  top: 0;
  transform: translateY(-50%);
}
.sekcja-case-study .row-elements .element h3 {
  color: #0c2e37;
  font-size: 20px;
  margin-bottom: 14px;
  margin-top: 10px;
}
.sekcja-case-study .row-elements .element ul {
  margin: 0;
  padding-left: 16px;
}
.sekcja-case-study .row-element {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
  padding: 80px 70px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 80px;
}
.sekcja-case-study .row-element h2 {
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #F39C06;
  text-underline-offset: 7px;
  font-size: 60px;
  text-decoration-skip-ink: none;
  margin-top: 0;
  margin-bottom: 13px;
  color: #0c2e37;
}
.sekcja-case-study .row-element .left {
  align-self: baseline;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
}
.sekcja-case-study .row-element .right {
  align-self: baseline;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
}

.sekcja-o-nas {
  background: #0C2E37;
  padding: 85px;
  color: #fff;
}
@media (min-width: 769px) and (max-width: 1000px) {
  .sekcja-o-nas {
    padding: 68px;
  }
}
.sekcja-o-nas .text-wrap h2 {
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
}
.sekcja-o-nas .text-wrap p {
  max-width: 733px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sekcja-o-nas .row-elements {
  display: flex;
  flex-direction: row;
  margin-top: 85px;
  margin-bottom: 85px;
  gap: 92px;
  position: relative;
}
@media (min-width: 769px) and (max-width: 1300px) {
  .sekcja-o-nas .row-elements {
    flex-wrap: wrap;
  }
}
.sekcja-o-nas .row-elements .element {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (min-width: 769px) and (max-width: 1300px) {
  .sekcja-o-nas .row-elements .element {
    flex: 0 0 calc(50% - 46px);
  }
}
.sekcja-o-nas .row-elements .element img {
  width: 200px;
  height: 200px;
}
.sekcja-o-nas .row-elements .element h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: center;
  white-space: nowrap;
}
.sekcja-o-nas .row-elements .element .orange {
  white-space: nowrap;
}
.sekcja-o-nas .row-elements .element .job {
  text-align: center;
}
.sekcja-o-nas .row-elements .element:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #f39c06;
  border-radius: 50%;
  top: 100px;
  right: -55px;
  transform: translateY(-50%);
  z-index: 1;
}
@media (min-width: 769px) and (max-width: 1300px) {
  .sekcja-o-nas .row-elements .element:nth-child(2)::after {
    display: none;
  }
}
.sekcja-o-nas .a-button {
  margin-left: auto;
  margin-right: auto;
}
.sekcja-o-nas .row-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zaufali-nam {
  padding-top: 100px;
  padding-bottom: 85px;
}
.zaufali-nam h2 {
  text-align: center;
  color: #0C2E37;
  margin-top: 0;
  margin-bottom: 60px;
}
.zaufali-nam .logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
.zaufali-nam .logos-wrapper .wrap {
  width: calc(20% - 60px);
}
.zaufali-nam .logos-wrapper img {
  height: auto;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  display: block;
  max-height: 100px;
  mix-blend-mode: multiply;
}

footer {
  margin-top: 310px;
}
footer .container {
  background: #0C2E37;
  border-radius: 25px;
}
footer .footer-wrap {
  display: flex;
  flex-direction: row;
}
footer .col-right {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  position: relative;
}
footer .col-right .element {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
  align-items: center;
}
@media (min-width: 769px) and (max-width: 1300px) {
  footer .col-right .element {
    font-size: 14px !important;
  }
}
footer .col-right .element img {
  width: 23px;
  height: 23px;
  display: block;
  margin-right: 20px;
}
footer .col-right .element a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-family: "Unbounded", sans-serif;
}
footer .col-right .zdjecie-psy {
  position: absolute;
  z-index: -1;
  transform: translateY(-60%);
}
@media (min-width: 1100px) and (max-width: 1300px) {
  footer .col-right .zdjecie-psy {
    height: 500px;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  footer .col-right .zdjecie-psy {
    height: 400px;
    bottom: -100px;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  footer .col-right .zdjecie-psy {
    height: 350px;
    bottom: -50px;
    right: 0px;
  }
}
footer .col-left {
  flex: 0 0 50%;
}
footer .col-left h3 {
  color: #0C2E37;
  margin-bottom: 34px;
}
footer .col-left .wpcf7 {
  margin-left: 48px;
  margin-right: 64px;
  padding: 34px 44px 60px 44px;
  background: #fff;
  border-radius: 25px;
  position: relative;
  transform: translateY(-310px);
  margin-bottom: -310px;
}
@media (max-width: 1300px) {
  footer .col-left .wpcf7 {
    padding: 34px 24px 60px 24px;
  }
}
@media (max-width: 1000px) {
  footer .col-left .wpcf7 .form-submit-row {
    flex-direction: column !important;
    gap: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  footer .col-left .wpcf7 {
    margin-left: 32px;
    margin-right: 40px;
  }
}
footer .col-left .wpcf7 p {
  margin: 0;
  position: relative;
}
footer .col-left .wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  transform: translateY(-100%);
  color: #CD6A4A;
  font-size: 14px;
}
footer .col-left .wpcf7 .wpcf7-response-output {
  position: relative;
  margin: 0;
  border: solid #E0AB43 2px;
  left: 0;
  transform: translateY(30px);
  border-radius: 25px;
}
footer .col-left .wpcf7 input {
  background: rgba(12, 46, 55, 0.09);
  height: 47px;
  margin-bottom: 24px;
  border: solid transparent 1px;
  border-radius: 15px;
  padding: 0 21px;
  width: 100%;
}
footer .col-left .wpcf7 input.wpcf7-not-valid {
  border: solid #CD6A4A 1px;
}
footer .col-left .wpcf7 input::placeholder {
  color: #3B3B3B;
}
footer .col-left .wpcf7 input[type=checkbox] {
  width: 23px;
  height: 23px;
  background: rgba(12, 46, 55, 0.09);
  padding: 0;
  margin-bottom: 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0;
}
footer .col-left .wpcf7 input[type=checkbox]:checked {
  background: rgba(12, 46, 55, 0.09);
  position: relative;
}
footer .col-left .wpcf7 input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0C2E37;
  font-size: 14px;
  font-weight: bold;
}
footer .col-left .wpcf7 .form-submit-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
footer .col-left .wpcf7 .form-submit-row .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 25px);
}
footer .col-left .wpcf7 .form-submit-row .wpcf7-not-valid input {
  outline: solid #CD6A4A 1px;
}
footer .col-left .wpcf7 .form-submit-row .wpcf7-list-item {
  margin: 0;
}
footer .col-left .wpcf7 .form-submit-row .wpcf7-list-item label {
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .col-left .wpcf7 .form-submit-row .wpcf7-list-item label span {
  font-size: 14px;
  max-width: 212px;
  line-height: 135%;
}
footer .col-left .wpcf7 .form-submit-row button {
  color: #fff;
  background: #F39C06;
  font-family: "Unbounded", sans-serif;
  border: none;
  outline: none;
  width: 100px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
footer .col-left .wpcf7 .form-submit-row button:hover {
  background: #e69509;
}
footer .row-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 40px 60px 45px 60px;
}
footer .row-info .element {
  display: flex;
  flex: 1;
  align-self: baseline;
}
footer .row-info .element.copyright {
  color: #fff;
  font-size: 14px;
}
footer .row-info .element.neutrino {
  justify-content: flex-end;
}
footer .row-info .element.linki {
  justify-content: center;
  font-size: 14px;
}
footer .row-info .element.linki a {
  color: #fff;
  text-decoration-color: transparent;
  transition: 0.3s;
}
footer .row-info .element.linki a:hover {
  text-decoration-color: #fff;
}

@media (max-width: 768px) {
  .sekcja-hero .container::before, .sekcja-hero .container::after {
    display: none !important;
  }
  .sekcja-hero .container .hero-wrap {
    flex-direction: column;
    width: 100%;
  }
  .sekcja-hero .container .hero-wrap .left-col {
    flex: 1;
  }
  .sekcja-hero .container .hero-wrap .left-col .left-col-inner {
    padding: 36px 24px;
    border-radius: 25px 25px 0 0;
    height: 100%;
  }
  .sekcja-hero .container .hero-wrap .left-col .left-col-inner h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 24px;
  }
  .sekcja-hero .container .hero-wrap .left-col .left-col-inner h1 .orange {
    display: block;
  }
  .sekcja-hero .container .hero-wrap .left-col .left-col-inner p {
    text-align: center;
    width: 100%;
    max-width: 1000px;
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner {
    padding: 0;
    border-radius: 0 0 25px 25px;
    background: linear-gradient(180deg, rgb(12, 46, 55) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner .wpcf7 {
    padding: 34px 18px;
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner .wpcf7 .wpcf7-response-output {
    transform: translateY(18px);
    border-radius: 25px;
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner .wpcf7 h3 {
    font-size: 18px;
    text-align: center;
    max-width: none;
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner .wpcf7 .form-submit-row {
    flex-direction: column;
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner .wpcf7 .form-submit-row .wpcf7-list-item label {
    margin-bottom: 23px;
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner .wpcf7 .form-submit-row .wpcf7-list-item label .wpcf7-list-item-label {
    max-width: none;
  }
  .sekcja-hero .container .hero-wrap .right-col .right-col-inner .wpcf7 .form-submit-row button {
    width: 100%;
  }
  .sekcja-uslugi .container .row-top {
    flex-direction: column;
  }
  .sekcja-uslugi .container .row-top .text-wrap {
    padding-left: 0;
  }
  .sekcja-uslugi .container .row-top .text-wrap h2 {
    text-align: center;
    max-width: 271px;
    font-size: 24px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .sekcja-uslugi .container .row-top .img-wrap {
    order: 2;
  }
  .sekcja-uslugi .container .row-top .img-wrap img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 85%;
  }
  .sekcja-uslugi .container-second {
    padding: 43px 22px;
  }
  .sekcja-uslugi .container-second .row-elements {
    flex-direction: column;
    gap: 42px;
  }
  .sekcja-uslugi .container-second .row-content .text-big {
    font-size: 18px;
  }
  .sekcja-uslugi .container-second .row-content .text-big .a-button {
    width: 100%;
  }
  .sekcja-dla-kogo {
    margin-top: 60px;
  }
  .sekcja-dla-kogo h2 {
    font-size: 24px;
  }
  .sekcja-dla-kogo .row-elements {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 30px;
  }
  .sekcja-dla-kogo .row-elements .element {
    min-height: 292px;
  }
  .sekcja-dla-kogo .text .a-button {
    margin-top: 23px;
  }
  .sekcja-nasza-spolecznosc {
    margin-top: 46px;
    margin-bottom: 56px;
  }
  .sekcja-nasza-spolecznosc .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .sekcja-nasza-spolecznosc .container h2 {
    font-size: 24px;
    margin-bottom: 23px !important;
  }
  .sekcja-nasza-spolecznosc .container a {
    align-self: baseline;
  }
  .sekcja-case-study {
    margin-top: 0;
  }
  .sekcja-case-study .text-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .sekcja-case-study .text-content h2 {
    font-size: 24px;
    margin-bottom: 34px;
  }
  .sekcja-case-study .row-elements {
    flex-direction: column;
  }
  .sekcja-case-study .row-element {
    gap: 50px;
    padding: 50px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sekcja-case-study .row-element h2 {
    font-size: 40px;
  }
  .sekcja-case-study .row-element .left,
  .sekcja-case-study .row-element .right {
    align-self: stretch;
  }
  .sekcja-o-nas {
    padding: 50px 0px 84px 0px;
  }
  .sekcja-o-nas .container h2 {
    font-size: 24px;
  }
  .sekcja-o-nas .container .row-elements {
    flex-direction: column;
    margin-top: 75px;
    margin-bottom: 75px;
    gap: 112px;
  }
  .sekcja-o-nas .container .row-elements .element:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #f39c06;
    border-radius: 50%;
    top: calc(100% + 57px);
    transform: translate(-50%, -50%);
    z-index: 1;
    left: 50%;
  }
  .zaufali-nam {
    padding-top: 70px;
    padding-bottom: 0;
  }
  .zaufali-nam h2 {
    margin-bottom: 40px;
  }
  .zaufali-nam .logos-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }
  .zaufali-nam .logos-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgb(255, 255, 255) 100%);
    pointer-events: none;
    z-index: 2;
  }
  .zaufali-nam .logos-wrapper .logos-track {
    display: flex;
    gap: 40px;
    animation: scroll-right 30s linear infinite;
    width: max-content;
  }
  .zaufali-nam .logos-wrapper .logos-track .wrap {
    width: auto;
    min-width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .zaufali-nam .logos-wrapper .logos-track .wrap img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
  }
  @keyframes scroll-right {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .site-footer {
    margin-top: 37px;
  }
  .site-footer .container {
    background: none;
  }
  .site-footer .footer-wrap {
    flex-direction: column;
  }
  .site-footer .footer-wrap .col-left {
    flex-direction: column;
    flex: 1;
  }
  .site-footer .footer-wrap .col-left .wpcf7 {
    margin: 0;
    transform: none !important;
    padding: 0 18px 34px 18px;
  }
  .site-footer .footer-wrap .col-left .wpcf7 .wpcf7-response-output {
    transform: translateY(18px);
    border-radius: 25px;
  }
  .site-footer .footer-wrap .col-left .wpcf7 h3 {
    font-size: 18px;
    text-align: center;
    max-width: none;
  }
  .site-footer .footer-wrap .col-left .wpcf7 .form-submit-row {
    flex-direction: column;
  }
  .site-footer .footer-wrap .col-left .wpcf7 .form-submit-row .wpcf7-list-item label {
    margin-bottom: 23px;
  }
  .site-footer .footer-wrap .col-left .wpcf7 .form-submit-row .wpcf7-list-item label .wpcf7-list-item-label {
    max-width: none;
  }
  .site-footer .footer-wrap .col-left .wpcf7 .form-submit-row button {
    width: 100%;
  }
  .site-footer .footer-wrap .col-right {
    background: #0C2E37;
    border-radius: 25px 25px 0 0;
    padding: 42px 34px 0 34px;
    position: relative;
    margin-top: 210px;
  }
}
@media (max-width: 768px) and (min-width: 500px) {
  .site-footer .footer-wrap .col-right {
    margin-top: 300px;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-wrap .col-right .zdjecie-psy {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0;
  }
  .site-footer .footer-wrap .col-right .element {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .site-footer .footer-wrap .col-right .element:first-child {
    font-size: 14px;
  }
  .site-footer .footer-wrap .col-right .element img {
    margin: 0 0 20px 0;
  }
  .site-footer .footer-wrap .col-right .element a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .site-footer .footer-wrap .col-right .element .nl {
    display: block;
  }
  .site-footer .row-info {
    border-radius: 0 0 25px 25px;
    background: #0C2E37;
    padding: 0px 34px 56px 34px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .site-footer .row-info .element {
    align-self: stretch;
    justify-content: center !important;
    align-items: center;
  }
  .site-footer .row-info .element.copyright {
    margin-bottom: 13px;
  }
  .site-footer .row-info .element.linki {
    margin-bottom: 34px;
  }
}
main.template-page-default {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  main.template-page-default {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
main.template-page-default .page-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  main.template-page-default .page-header {
    margin-bottom: 40px;
  }
}
main.template-page-default .page-header h1 {
  color: #0C2E37;
  margin-bottom: 20px;
  font-size: 36px;
}
@media (max-width: 768px) {
  main.template-page-default .page-header h1 {
    font-size: 28px;
  }
}
main.template-page-default .page-header .page-subtitle {
  color: #3B3B3B;
  font-size: 18px;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  main.template-page-default .page-header .page-subtitle {
    font-size: 16px;
  }
}
main.template-page-default .page-header .last-updated {
  color: #0C2E37;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
}
main.template-page-default .page-content {
  background: #fff;
  border-radius: 25px;
  padding: 60px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  main.template-page-default .page-content {
    padding: 30px 20px;
    border-radius: 20px;
  }
}
main.template-page-default .page-content h2 {
  color: #0C2E37;
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
main.template-page-default .page-content h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  main.template-page-default .page-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
main.template-page-default .page-content h3 {
  color: #0C2E37;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  main.template-page-default .page-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
main.template-page-default .page-content h4 {
  color: #0C2E37;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  main.template-page-default .page-content h4 {
    font-size: 17px;
    margin-top: 25px;
    margin-bottom: 12px;
  }
}
main.template-page-default .page-content h5,
main.template-page-default .page-content h6 {
  color: #0C2E37;
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}
@media (max-width: 768px) {
  main.template-page-default .page-content h5,
  main.template-page-default .page-content h6 {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
main.template-page-default .page-content p {
  color: #3B3B3B;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}
main.template-page-default .page-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  main.template-page-default .page-content p {
    text-align: left;
    margin-bottom: 16px;
  }
}
main.template-page-default .page-content ul,
main.template-page-default .page-content ol {
  color: #3B3B3B;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-left: 25px;
}
@media (max-width: 768px) {
  main.template-page-default .page-content ul,
  main.template-page-default .page-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
  }
}
main.template-page-default .page-content ul li,
main.template-page-default .page-content ol li {
  margin-bottom: 8px;
}
main.template-page-default .page-content ul li:last-child,
main.template-page-default .page-content ol li:last-child {
  margin-bottom: 0;
}
main.template-page-default .page-content ul ul,
main.template-page-default .page-content ul ol,
main.template-page-default .page-content ol ul,
main.template-page-default .page-content ol ol {
  margin-top: 8px;
  margin-bottom: 8px;
}
main.template-page-default .page-content a {
  color: #F39C06;
  text-decoration: underline;
  text-decoration-color: rgba(243, 156, 6, 0.3);
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}
main.template-page-default .page-content a:hover {
  color: #e69509;
  text-decoration-color: #e69509;
}
main.template-page-default .page-content blockquote {
  background: #F4EAE1;
  border-left: 4px solid #F39C06;
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 15px 15px 0;
  font-style: italic;
  color: #0C2E37;
}
@media (max-width: 768px) {
  main.template-page-default .page-content blockquote {
    padding: 20px;
    margin: 20px 0;
  }
}
main.template-page-default .page-content blockquote p {
  margin-bottom: 0;
  color: inherit;
}
main.template-page-default .page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  main.template-page-default .page-content table {
    margin: 20px 0;
    font-size: 14px;
  }
}
main.template-page-default .page-content table th,
main.template-page-default .page-content table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(12, 46, 55, 0.1);
}
@media (max-width: 768px) {
  main.template-page-default .page-content table th,
  main.template-page-default .page-content table td {
    padding: 10px 8px;
  }
}
main.template-page-default .page-content table th {
  background: #F4EAE1;
  color: #0C2E37;
  font-weight: 600;
  font-family: "Unbounded", sans-serif;
}
main.template-page-default .page-content table tr:last-child td {
  border-bottom: none;
}
main.template-page-default .page-content table tr:hover {
  background: rgba(243, 156, 6, 0.05);
}
@media (max-width: 768px) {
  main.template-page-default .page-content .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  main.template-page-default .page-content .table-responsive table {
    min-width: 600px;
  }
}
main.template-page-default .page-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #F39C06 50%, transparent 100%);
  margin: 50px 0;
}
@media (max-width: 768px) {
  main.template-page-default .page-content hr {
    margin: 30px 0;
  }
}
main.template-page-default .page-content .highlight-box {
  background: rgba(243, 156, 6, 0.1);
  border: 1px solid rgba(243, 156, 6, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
}
@media (max-width: 768px) {
  main.template-page-default .page-content .highlight-box {
    padding: 20px;
    margin: 20px 0;
  }
}
main.template-page-default .page-content .highlight-box p {
  margin-bottom: 0;
  color: #0C2E37;
  font-weight: 500;
}
main.template-page-default .page-content .important-notice {
  background: #0C2E37;
  color: #fff;
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
}
@media (max-width: 768px) {
  main.template-page-default .page-content .important-notice {
    padding: 20px;
    margin: 20px 0;
  }
}
main.template-page-default .page-content .important-notice p,
main.template-page-default .page-content .important-notice li {
  color: #fff;
}
main.template-page-default .page-content .important-notice a {
  color: #F39C06;
}
main.template-page-default .page-content .important-notice h3,
main.template-page-default .page-content .important-notice h4,
main.template-page-default .page-content .important-notice h5,
main.template-page-default .page-content .important-notice h6 {
  color: #F39C06;
}
main.template-page-default .page-content .date,
main.template-page-default .page-content .datetime {
  color: #0C2E37;
  font-weight: 600;
  font-size: 14px;
}
main.template-page-default .page-content code {
  background: rgba(12, 46, 55, 0.1);
  color: #0C2E37;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
}
main.template-page-default .page-content pre {
  background: rgba(12, 46, 55, 0.05);
  border: 1px solid rgba(12, 46, 55, 0.1);
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
}
main.template-page-default .page-content pre code {
  background: none;
  padding: 0;
}
main.template-page-default .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #F39C06;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
main.template-page-default .back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
main.template-page-default .back-to-top:hover {
  background: #e69509;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  main.template-page-default .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}
main.template-page-default .table-of-contents {
  background: #F4EAE1;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  main.template-page-default .table-of-contents {
    padding: 20px;
    margin-bottom: 30px;
  }
}
main.template-page-default .table-of-contents h3 {
  color: #0C2E37;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
}
main.template-page-default .table-of-contents ul {
  margin-bottom: 0;
}
main.template-page-default .table-of-contents ul li {
  margin-bottom: 5px;
}
main.template-page-default .table-of-contents ul li a {
  color: #0C2E37;
  text-decoration: none;
  transition: color 0.3s ease;
}
main.template-page-default .table-of-contents ul li a:hover {
  color: #F39C06;
}

.cf7-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: cf7-spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes cf7-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wpcf7-submit.cf7-loading .cf7-original-text {
  opacity: 0;
}

.wpcf7-acceptance a {
  color: inherit;
  pointer-events: auto;
}

@media (min-width: 991px) {
  .menu-menu-1-container .mobile-phone-item {
    display: none !important;
  }
}
/* compatibility fixes 
from underscores theme */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}