<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body .header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: black;
  color: white;
  padding: 5px;
}

body .header #hamburger {
  display: none;
}
.secondHeader{
  color: white !important;
}

body .header #close {
  display: none;
}

body .header__title h1 {
  font-size: 17pt;
  font-weight: 900;
}

body .header__navbar a {
  margin-right: 1rem;
  cursor: pointer;
  -webkit-transition: 450ms;
  transition: 450ms;
}

body .header__navbar a:hover {
  color: #1e74e4;
}

.secondHeader {
  width: 100%;
  background: #1e74e4;
  padding: 3px;
}

.secondHeader h2 {
  color: black;
  text-align: center;
}

/*kraj headera */
body .sectionOne {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: whitesmoke;
}

body .sectionOne h2 {
  text-align: center;
}

body .sectionOne__gridbox {
  margin-top: 2rem;
  width: 70%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
}

body .sectionOne__gridbox img {
  width: 70%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

body .sectionOne__gridbox__left {
  font-size: 19pt;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .sectionOne__gridbox__left ul li {
  margin-top: 2rem;
  font-weight: 500;
}

body .sectionOne__gridbox__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .sectionOne__gridbox__right h3 {
  color: red;
}

body .sectionOne__gridbox__right input {
  width: 70%;
  margin-bottom: 1rem;
  height: 3rem;
  padding: 5px;
  border-radius: 1rem;
  border: none;
  border-bottom: 2px solid #1e74e4;
}

body .sectionOne__gridbox__right button {
  width: 70%;
  margin-top: 1rem;
  font-size: 20pt;
  padding: 5px;
  font-weight: 900;
  background: #1e74e4;
  border-radius: 1rem;
  border: none;
  -webkit-box-shadow: 0px 0px 8px gray;
          box-shadow: 0px 0px 8px gray;
  color: white;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
}

body .sectionOne__gridbox__right button:hover {
  background: transparent;
  color: #1e74e4;
}

/*kraj sekcije 1 */
body .sectionTwo {
  padding-top: 2rem;
  background: linear-gradient(-45deg, black, #1e74e4, #a799e4, blue);
  background-size: 400% 400%;
  -webkit-animation: gradient 10s ease infinite;
          animation: gradient 10s ease infinite;
  color: white;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body .sectionTwo h1 {
  text-align: center;
}

body .sectionTwo__gridbox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
}

body .sectionTwo__gridbox__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

body .sectionTwo__gridbox__left strong {
  font-size: 20pt;
  margin-top: 1.3rem;
}

body .sectionTwo__gridbox__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .sectionTwo__gridbox__right img {
  margin-bottom: 1rem;
  width: 50%;
  border-radius: 1rem;
  border: 3px solid whitesmoke;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* kraj sekcije 2 */
body .sectionThree {
  background: whitesmoke;
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  padding-top: 2rem;
  width: 100%;
  padding-bottom: 2rem;
}

body .sectionThree p {
  font-size: 20pt;
  text-align: center;
  font-weight: 900;
  color: #1e74e4;
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

body .sectionThree__box {
  width: 45%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 0px 8px whitesmoke;
          box-shadow: 0px 0px 8px whitesmoke;
  padding-top: 1rem;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 4rem;
  border-radius: 0 0 5rem 5rem;
  background: #1e74e4;
  -webkit-box-shadow: 0px 0px 8px gray;
          box-shadow: 0px 0px 8px gray;
}

body .sectionThree__box ul {
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: white;
}

body .sectionThree__box ul li {
  font-size: 20pt;
  margin-top: 2rem;
  font-weight: 300;
}

/* KRAJ SEKCIJE 4 */
body .sectionFour {
  width: 100%;
  padding-top: 2rem;
  background: linear-gradient(-45deg, black, #1e74e4, #a799e4, blue);
  background-size: 400% 400%;
  -webkit-animation: gradient 10s ease infinite;
          animation: gradient 10s ease infinite;
  color: whitesmoke;
  padding-bottom: 2rem;
}

body .sectionFour h1 {
  font-size: 20pt;
  font-weight: 900;
  text-align: center;
}

body .sectionFour__gridbox {
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

body .sectionFour__gridbox__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 5px solid whitesmoke;
  padding: 10px;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 0px 8px black;
          box-shadow: 0px 0px 8px black;
  background: #2164bd;
}

body .sectionFour__gridbox__item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid whitesmoke;
  -o-object-fit: cover;
     object-fit: cover;
}

body .sectionFour__gridbox__item h2 {
  margin-top: 1rem;
  text-align: center;
}

body .sectionFour__gridbox__item p {
  font-size: 14pt;
  font-weight: 300;
}

body .sectionFour__gridbox__item:hover {
  -webkit-transition: 400ms;
  transition: 400ms;
  opacity: 0.8;
}

/*kraj sekcije 4*/
body .sectionFive {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: whitesmoke;
}

body .sectionFive h1 {
  text-align: center;
  color: #2164bd;
}

body .sectionFive__gridbox {
  margin-top: 2rem;
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-left: auto;
  margin-right: auto;
}

body .sectionFive__gridbox__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 8px gray;
          box-shadow: 0px 0px 8px gray;
  padding: 10px;
  background: rgba(219, 217, 217, 0.575);
}

body .sectionFive__gridbox__item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid whitesmoke;
  margin-bottom: 1rem;
}

body .sectionFive__gridbox__item p {
  font-style: italic;
  font-size: 14pt;
  font-weight: 300;
}

/*kraj sekcije 5 */
body .sectionSix {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: linear-gradient(-45deg, #1e74e4, #db6262, #1e74e4, #1e74e4);
  background-size: 400% 400%;
  color: whitesmoke;
}

body .sectionSix h1 {
  text-align: center;
}

body .sectionSix__gridbox {
  margin-top: 2rem;
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  gap: 4rem;
}

body .sectionSix__gridbox__item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px dashed whitesmoke;
  -webkit-box-shadow: 0px 0px 8px black;
          box-shadow: 0px 0px 8px black;
  border-radius: 5rem 0.2rem 1rem 1rem;
}

body .sectionSix__gridbox__item img {
  width: 100px;
  height: 100px;
}

body .sectionSix__gridbox__item h3 {
  text-align: center;
  margin-top: 1rem;
}

/* kraj sekcije 6 */
body .sectionSeven {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

body .sectionSeven h1, body .sectionSeven h2 {
  text-align: center;
  color: #2164bd;
}

body .sectionSeven__gridbox {
  margin-top: 2rem;
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
  margin-left: auto;
  margin-right: auto;
}

body .sectionSeven__gridbox__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

body .sectionSeven__gridbox__left img {
  width: 50%;
}

body .sectionSeven__gridbox__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .sectionSeven__gridbox__right .circle {
  background: red;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-weight: 900;
  font-size: 17pt;
  padding: 10px;
  margin-bottom: 1rem;
}

body .sectionSeven__gridbox__right input {
  width: 80%;
  height: 3rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 5px;
  border: none;
  border-bottom: 3px solid #2164bd;
}

body .sectionSeven__gridbox__right button {
  width: 80%;
  font-size: 20pt;
  padding: 10px;
  border-radius: 10px;
  margin-top: 1rem;
  cursor: pointer;
  background: #2164bd;
  border: none;
  color: white;
}

body .sectionSeven__gridbox__right button:hover {
  background: transparent;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: #1e74e4;
  -webkit-box-shadow: 0px 0px 8px gray;
          box-shadow: 0px 0px 8px gray;
}

@media screen and (max-width: 1557px) {
  body .sectionTwo__gridbox {
    width: 70%;
  }
  body .sectionFour__gridbox {
    width: 70%;
  }
  body .sectionFive__gridbox {
    width: 70%;
  }
  body .sectionSeven__gridbox {
    width: 70%;
  }
  body .sectionOne__gridbox {
    width: 90%;
  }
  body .sectionSix__gridbox {
    width: 70%;
  }
}

@media screen and (max-width: 920px) {
  body .sectionOne__gridbox {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body .sectionOne__gridbox img {
    width: 30%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  body .sectionTwo__gridbox__right img {
    width: 70%;
  }
  body .sectionThree__box {
    width: 90%;
  }
  body .sectionThree p {
    width: 90%;
  }
  body .sectionFour__gridbox {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body .sectionFive__gridbox {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body .sectionSeven__gridbox {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body .sectionSeven__gridbox__left img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 712px) {
  body .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header__title h1 {
    margin-right: 1rem;
  }
  body .sectionTwo__gridbox__left {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body .sectionTwo__gridbox {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 90%;
  }
  body .sectionTwo__gridbox__right {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  body .sectionTwo__gridbox__right img {
    width: 100%;
    height: 200px;
  }
  body .sectionTwo__gridbox__left strong {
    margin-top: 0;
  }
  body .sectionSix__gridbox {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 488px) {
  body .header__navbar a {
    font-size: 9pt;
  }
  body .sectionOne__gridbox__left ul li {
    font-size: 14pt;
  }
  body .sectionOne__gridbox__left ul {
    margin-left: 3rem;
  }
  body .sectionTwo__gridbox__left strong {
    font-size: 12pt;
  }
  body .sectionTwo__gridbox__right img {
    height: 150px;
  }
  body .sectionThree__box ul li {
    font-size: 14pt;
  }
  body .sectionThree p {
    font-size: 17pt;
  }
  body .sectionFour__gridbox {
    width: 90%;
  }
  body .sectionFive__gridbox {
    width: 90%;
  }
  body .sectionSeven h1, body .sectionSeven h2 {
    font-size: 17pt;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  body .sectionSix h1 {
    font-size: 17pt;
  }
  .secondHeader h2 {
    font-size: 14pt;
  }
  .header__navbar {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    background: black;
    top: 2rem;
    padding: 1rem;
  }
  .header__navbar a {
    text-align: center;
    margin-top: 1rem;
    font-size: 14pt;
  }
  body .header #hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
  }
  body .header #close {
    width: 25px;
  }
  body .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

body .footer {
  width: 100%;
  background: #2164bd;
  padding: 1rem;
  text-align: center;
}

body .footer a {
  color: white;
  font-size: 12pt;
}

input {
  outline: 0;
}
.feedback {
  width: 75px;
  height: 70px;
  position: fixed;
  right: -15px;
  top: 15%;
  display: flex;
  align-items: center;
justify-content: center;
  background-color: #1e74e4;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: -2px 3px 11px rgb(0 0 0 / 30%);
  transition: all 0.5s;
}

.feedback:hover {
  right: 0;
}

.feedback img {
  width: 50px;
  height: 50px;
}

.popup-window {
font-family: sans-serif;
  font-family: inherit;
  display: none;
  width: 300px;
  position: fixed;
  right: 0;
  top: 15%;
  padding: 35px 10px;
  background: #fff;
  border-radius: 5px 0 0 5px;
  z-index: 2000;
box-shadow: -2px 3px 11px rgb(0 0 0 / 17%);
}

.popup-window form {
  width: 100%;
  min-height: auto;
  padding: 0;
  background: inherit;
  box-shadow: none;
height: auto;
}

.popup-window label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

.popup-window input {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #333;
}

.popup-window input::placeholder {
font-size: 16px;
}

.popup-window button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #1e74e4;
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
  border-radius: 20px;
}

.close-popup {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 27px;
  height: 27px;
  background-color: #fff;
  cursor: pointer;
}

.close-popup:before {
  content: "";
  background: #333;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 4px;
  transform: rotate(-45deg);
}

.close-popup:after {
  content: "";
  background: #333;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 4px;
  transform: rotate(45deg);
}

@media screen and (max-width: 576px) {
  .feedback {
    top: 35%;
  }
  .popup-window {
    top: 35%;
  }
}</pre></body></html>