:root body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-family: var(--font-main, "Poppins"), -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  color: var(--color-black, #000000);
  background-color: var(--color-white, #ffffff);

}
  .small-text {font-size: 13px;text-align:justify}

:root {
  --font-main: "Poppins";

  --color-piramry-90: #67c1ff;
  --color-primary-100: #006ab3;
  --color-primary-300: #002446;

  --color-white: #ffffff;

  --color-black: #000000;

  --color-light-gray100: #e7e7e7;
  --color-light-gray200: #c6c6c6;
  --color-light-gray300: #9c9d9f;
  --color-gray: #555555;

  --gradient-blue: linear-gradient(
    90deg,
    #67c1ff 0%,
    #006ab3 49.76%,
    #00528a 100%
  );
}

/* Resetowanie stylów */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  max-width: 100%;
}

a {
  color: var(--color-primary-100);
  text-decoration: none;
  transition: all 0.2s;
}

p {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-gray);
}

p.ns-xl-p {
  font-size: 24px;
  font-weight: 400;
  line-height: 25px;
}

p.ns-sm-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
}

h1 {
  font-size: 70px;
  font-weight: 275;
  color: var(--color-white, #ffffff);
  line-height: 70px;
}

h2 {
  font-size: 42px;
  font-weight: 275;
  color: var(--color-primary-100);
}

h3 {
  font-size: 29px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-gray);
}

h4 {
  font-size: 21px;
  font-weight: 300;
  line-height: 22px;
  color: var(--color-gray);
}

h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

ul,
ol {
  list-style-position: outside; 
  margin-left: 20px;
  font-size: 18px;          
  font-weight: 300;      
  color: #000000; 
}

ul li, 
ol li {
  line-height: 1.6;      
}

:is(ul, ol) li > ul {
  margin-left: 30px;
}

ul li::marker {
  color: var(--color-primary-100);
  font-weight: 700;       
}

button {
  background: unset;
  display: flex;
  padding: 0;
  border: unset;
  background: unset;
  width: auto;
  height: auto;
}

hr {
  border-top: 1px solid var(--color-primary-100);
  margin-block: 38px;
}

/* Icons */
.ns-footer-icon,
.ns-contact-icon {
  display: flex;
  align-items: center;
}

.ns-footer-icon::before {
  content: "";
  color: var(--color-piramry-90);
  margin-right: 20px;
  font-size: 13px;
  line-height: 13px;
}

.ns-contact-icon::before {
  content: "";
  color: var(--color-primary-100);
  margin-right: 15px;
  font-size: 16px;
  line-height: 16px;
}

.ns-marker-icon::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ns-tel-icon::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ns-mail-icon::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ns-globe-icon::before {
  content: "\f0ac";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Global */

.ns-button {
  display: flex;
  width: fit-content;
  padding: 14px 43px;
  color: var(--color-white);
  background-color: var(--color-primary-100);
  border-radius: 20px;
  overflow: hidden;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  transition: all 0.2s;
}

.ns-button:hover {
  filter: brightness(0.7);
}

.ns-content-wrapper {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.ns-inner {
  padding-inline: 30px;
}

.ns-font-13 {
  font-size: 13px;
  line-height: 14px;
}

.ns-font-19 {
  font-size: 19px;
  line-height: 20px;
}

.ns-weight-300 {
  font-weight: 300;
}

.ns-weight-400 {
  font-weight: 400;
}

.ns-weight-500 {
  font-weight: 500;
}

.ns-weight-600 {
  font-weight: 600;
}

.ns-weight-700 {
  font-weight: 700;
}

.ns-margin-top-150 {
  margin-top: 150px;
}

.ns-margin-top-100 {
  margin-top: 100px;
}

.ns-margin-top-60 {
  margin-top: 60px;
}

.ns-margin-top-30 {
  margin-top: 30px;
  color:#000000;
}

.ns-margin-left-15 {
  margin-left: 15px;
}

.ns-align-right {
  margin-left: auto;
  align-self: flex-end;
}

.ns-row {
  display: flex;
  flex-direction: row;
  gap: 39px;
  justify-content: space-between;
}

.ns-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ns-color-white {
  color: var(--color-white, #ffffff);
}

.ns-color-blue {
  color: var(--color-primary-100);
}

.ns-color-light-gray {
  color: var(--color-light-gray300);
}

.ns-color-gray {
  color: var(--color-gray);
}

.ns-color-black {
  color: var(--color-black, #000000);
}

/* Header */

.ns-header-container {
  max-width: 100%;
  position: sticky;
  height: 100%;
  top: -108px;
  background: var(--color-white);
}

.ns-header-top {
  width: 100%;
}

.ns-header-top-inner {
  padding-block: 27px 26px;
}

.ns-header-top-row-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.ns-burger-wrapper {
  display: none;
}

.ns-logo-wrapper {
  width: 374px;
  transition: all 0.2s;
}

.ns-logo-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.ns-logo-wrapper:hover {
  filter: brightness(0.4);
}

.ns-header-bottom {
  width: 100%;
  background: var(--gradient-blue);
}

.ns-header-bottom-inner {
  padding-block: 26px 10px;
}

.ns-header-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.ns-nav-list {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: fit-content;
  list-style: none;
}

.ns-nav-list li {
  position: relative;
  width: fit-content;
}

.ns-nav-list li::after {
  content: "";
  position: absolute;
  transition: all 0.2s;
  width: 0;
  height: 6px;
  height: 10px;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
}

.ns-nav-list li.ns-nav-li-active::after {
  width: 100%;
}

.ns-nav-list li a {
  font-size: 17px;
  font-weight: 500;
  line-height: 25.5px;
  color: var(--color-white);
  position: relative;
  transition: all 0.2s;
  text-decoration: none;
}

.ns-nav-list li:hover::after {
  width: 100%;
}

/* Content */

.ns-content {
  min-height: 100vh;
}

/* Hero */
.ns-hero-wrapper {
  width: 100%;
  min-height: 700px;
  display: flex;
  position: relative;
  z-index: -1;
}

.ns-hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.ns-hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    #67c1ff1f 0%,
    #006ab31f 49.76%,
    #00528aa1 100%
  );
}

.ns-hero-conatiner {
  margin-block: auto 59px;
  display: flex;
}

.ns-hero-text-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 755px;
  position: relative;
  z-index: 1;
}

.ns-hero-h1 {
  font-size: 70px;
  font-weight: 275;
}

.ns-hero-p {
  font-size: 23px;
  font-weight: 300;
  color: var(--color-white);
}

/* White section */

.ns-white-section-wrapper {
  display: block;
  width: 100%;
}

.ns-white-section-wrapper a {
  transition: all 0.2s;
}
.ns-white-section-wrapper a:not(.ns-button):hover {
  color: var(--color-primary-100);
  text-decoration: underline;
}

.ns-white-section-content {
  margin-block: 50px;
}

.ns-text-max-wrapper {
  max-width: 560px;
  width: 100%;
}

.ns-image-radius-wrapper {
  border-radius: 20px;
  overflow: hidden;
  max-width: 100%;
}

.ns-image-radius-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ns-gray-wrapper {
  background-color: var(--color-light-gray100);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
}

.ns-divider-list li {
  padding-block: 10px;
  border-bottom: 1px solid var(--color-light-gray200);
  width: 100%;
  color: var(--color-gray);
}

.ns-divider-list li a {
  margin-left: 50px;
  color: var(--color-primary-100);
  position: relative;
}

.ns-divider-list li a::after {
  content: "";
  height: 2px;
  background-color: var(--color-primary-100);
  width: 0;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.2s;
}

.ns-divider-list li a:hover::after {
  width: 100%;
}

.ns-divider-list li a:hover {
  text-decoration: none !important;
}

.ns-map-radius-wrapper {
  border-radius: 20px;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  height: 350px;
}

.ns-map-radius-wrapper iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* gradient section */
.ns-gradient-section-wrapper {
  margin-top: 58px;
  background: var(--gradient-blue);
}

.ns-gradient-content {
  padding-block: 62px;
}

.ns-gradient-content :where(h1, h2, h3, h4, h5, p, strong, li) {
  color: var(--color-white);
}

.ns-gradient-content .ns-button {
  background-color: var(--color-white);
  color: var(--color-primary-100);
}

/* Footer */

.ns-footer-container {
  max-width: 100%;
  background: var(--color-primary-300);
}

.ns-footer-inner {
  padding-block: 42px 35px;
}

.ns-footer-wrapper {
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
}

.ns-footer-wrapper :is(h1, h2, h3, h4, h5, p, a) {
  color: var(--color-white);
}

.ns-footer-wrapper a {
  transition: all 0.2s;
}

.ns-footer-wrapper a:hover {
  color: var(--color-primary-100);
  text-decoration: underline;
}

.ns-footer-wrapper :is(p, a, li) {
  font-size: 13px;
  font-weight: 300;
  line-height: 14px;
}

.ns-footer-first-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ns-footer-second-column {
  display: flex;
  align-self: flex-end;
}

@media (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 40px;
  }

  h2 {
    font-size: 42px;
    font-weight: 275;
    color: var(--color-primary-100);
  }

  h3 {
    font-size: 29px;
    font-weight: 300;
    line-height: 30px;
    color: var(--color-gray);
  }

  h4 {
    font-size: 21px;
    font-weight: 300;
    line-height: 22px;
    color: var(--color-gray);
  }

  .ns-hero-h1 {
    font-size: 42px;
    line-height: 42px;
  }

  .ns-disable-scroll {
    overflow-y: hidden;
  }

  .ns-header-container {
    top: 0;
  }

  .ns-header-top {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .ns-logo-wrapper {
    width: 220px;
  }

  .ns-footer-wrapper {
    flex-direction: column;
  }

  .ns-footer-wrapper .ns-margin-left-15 {
    margin-left: unset;
  }

  .ns-hero-wrapper {
    height: calc(100vh - 93px);
    height: calc(100svh - 93px);
    min-height: unset;
  }

  /* Burger */
  .ns-burger-wrapper {
    display: block;
  }

  #ns-burger-button {
    background: none;
    border: none;
    display: block;
    top: 45px;
    right: 45px;
    z-index: 10;
    cursor: pointer;

    .ns-burger {
      height: 40px;
      width: 40px;
      position: relative;
    }

    .ns-burger::before {
      top: 10px;
      left: 0;
    }

    .ns-burger::after {
      top: calc(100% - 10px);
      left: 0;
    }

    .ns-burger::before,
    .ns-burger::after {
      content: "";
      width: 40px;
      height: 4px;
      background-color: var(--color-primary-100);
      position: absolute;
    }

    .ns-burger-close::before {
      -webkit-animation: 0.3s forwards closeTop2;
      animation: 0.3s forwards closeTop2;
    }

    .ns-burger-close::after {
      -webkit-animation: 0.3s forwards closeBottom2;
      animation: 0.3s forwards closeBottom2;
    }

    .ns-burger-open::before {
      -webkit-animation: 0.3s forwards closeTop;
      animation: 0.3s forwards closeTop;
    }

    .ns-burger-open:after {
      -webkit-animation: 0.3s forwards closeBottom;
      animation: 0.3s forwards closeBottom;
    }
  }

  /* header */
  .ns-header-bottom {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: 100svw;
    /* transform: translateX(100%); */
    clip-path: inset(0 0 0 100%);
    transition: all 0.4s;
  }

  .ns-header-bottom-open {
    /* transform: translateX(0); */
    clip-path: inset(0 0 0 0);
  }

  .ns-nav-list {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 80px;
    margin-right: 15px;
  }

  /* White section */
  .ns-row {
    flex-direction: column;
  }

  .ns-text-max-wrapper {
    max-width: unset;
  }

  .ns-white-section-wrapper .ns-margin-top-150 {
    margin-top: 30px;
  }
}

@media (max-width: 340px) {
  .single-landing-2024 * {
    word-break: break-word;
  }
}

@keyframes closeTop {
  0% {
    top: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    background-color: var(--color-primary-100);
  }
  100% {
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
  }
}

@keyframes closeTop2 {
  0% {
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
  }
  100% {
    top: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    background-color: var(--color-primary-100);
  }
}

@keyframes closeBottom2 {
  0% {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fff;
  }
  100% {
    top: calc(100% - 10px);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    background-color: var(--color-primary-100);
  }
}

@keyframes closeBottom {
  0% {
    top: calc(100% - 10px);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    background-color: var(--color-primary-100);
  }

  100% {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fff;
  }
}
