@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  min-width: 300px;
}

:root {
  --primary: #6686d4;
  --text: rgb(54, 54, 54);
}

.header {
  background-color: transparent;
  position: absolute;
  z-index: 3;
  width: 100%;
  padding: 0px;
  top: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.header li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  font-size: 15px;
  color: white;
}

.header li a:hover {
  color: var(--text);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .logo {
  display: block;
  float: left;
  font-size: 1.5em;
  padding: 20px;
  margin-left: 30px;
  text-decoration: none;
  /* color: #6fc44e; */
  color: white;
}

.header .logo img {
  width: 200px;
}

/* menu */
.header .menu {
  clear: both;
  margin: 0 auto;
  width: 70%;
  text-align: center;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header .menu-icon .navicon {
  background: white;
  display: block;
  height: 2px;
  position: relative;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: white;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */
@media screen and (max-width: 500px) {
  .header .logo {
    margin-top: 3px;
    font-size: 17px;
    margin-left: 0px;
  }

  .header .logo img {
    width: 150px;
  }
}

.home {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 5rem;
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.home .image {
  padding: 0px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  text-align: center;
}

.home .image img {
  height: 80vh;
  padding-top: 4rem;
  /* max-width: 900px; */
  /* width: 100%; */
}

.home .content {
  padding: 1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20rem;
  flex: 1 1 20rem;
  margin: 0 100px 0 100px;
}

.home .content h1 {
  font-size: 55px;
  background: -webkit-linear-gradient(#c0cae2 10%, #4181ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* line-height: 35px; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.home .content p {
  /* line-height: 28px; */
  font-size: 36px;
  color: white;
  padding: 5px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.home .content .list {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
  position: relative;
  max-width: 385px;
  margin-top: 10px;
  padding-left: 0;
}

.home .content .list .item {
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
  position: relative;
  z-index: 9;
  margin-bottom: 15px;
  padding-left: 32px;
  font-size: 20px;
  line-height: 19px;
  color: white;
  padding-top: 20px;
}

.home .content .list .item:before {
  top: 5px;
  background-size: 20px;
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 32px;
  height: 27px;
  background: url("../img/mark.png") no-repeat center;
}

.home .content .timer-in-button {
  font-family: "Roboto", sans-serif;
}

.home .content .timer-in-button b {
  color: white;
  padding: 10px;
  font-size: 20px;
}

.home .content .timer-in-button b .timerp {
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 10px;
}

.home .content .timer-in-button b .timerp .ped {
  font-size: 20px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00ce40),
    to(#07a634)
  );
  background: linear-gradient(#00ce40, #07a634);
  font-weight: 700;
}

.home .content .timer-in-button b span {
  color: white;
  margin-top: 13px;
  font-size: 30px;
  padding: 3px 5px;
  background: #000;
  border-radius: 5px;
}

.home {
  height: auto;
}

.home .button-19 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00ce40),
    to(#07a634)
  );
  background: linear-gradient(#00ce40, #07a634);
  -webkit-box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border: none;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 20px 20px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  margin-top: 20px;
}

.home button:hover {
  cursor: pointer;
  opacity: 0.7;
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .home {
    /* text-align: center; */
    margin: 0 auto;
  }

  .home .content {
    /* text-align: center; */
    margin: 0 auto;
    margin-top: 20px;
  }

  .core .row .image {
    display: none;
    margin: 0 auto;
  }

  .contact .content {
    padding: 3rem 0;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 40%;
  }

  .home {
    height: auto;
  }

  .home .content a {
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
  }

  .home .content .button-19 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }

  .home .content {
    text-align: left;
    padding: 20px;
  }

  .home .content .list .item {
    font-size: 18px;
  }

  .home .content h1 {
    font-size: 5rem;
    line-height: 45px;
  }

  .home .image img {
    height: auto;
    width: 90%;
  }

  .home .content .imgage {
    margin-bottom: 30px;
  }

  .home .content p {
    font-size: 20px;
    line-height: 18px;
  }

  .home {
    background-position: -240px;
  }

  .home .content .timer-in-button b .timerp {
    margin-bottom: 10px;
  }
}

@media (max-width: 830px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 50%;
  }

  /* .home {
    margin-top: 5rem;
  }*/
  .home .content h1 {
    font-size: 4rem;
    text-align: left;
    line-height: 40px;
  }

  .home .content p {
    font-size: 18px;
  }
}

.pluca {
  font-family: "Poppins", sans-serif;
  background-image: url("../img/cloudbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
}

.pluca h1 {
  font-size: 36px;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.pluca .pluca-slika {
  margin-top: 30px;
  text-align: center;
  padding: 20px;
}

.pluca .pluca-slika img {
  max-width: 600px;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .pluca .pluca-slika {
    padding: 0px;
  }

  .pluca .pluca-slika img {
    width: 100%;
  }

  .pluca h1 {
    font-size: 30px;
  }
}

.o-nama {
  padding: 25px;
  text-align: center;
  margin: 0 auto;
}

.o-nama h1 {
  font-size: 36px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.o-nama p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  width: 70%;
  font-size: 20px;
}

@media screen and (max-width: 500px) {
  .o-nama p {
    width: 100%;
    text-align: left;
    font-size: 17px;
    padding: 10px;
  }

  .o-nama h1 {
    font-size: 30px;
  }
}

.about {
  background-image: url("../img/bgopis.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 25px;
}

.about h1 {
  text-align: center;
  padding: 20px;
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about .row .image {
  -webkit-box-flex: 3;
  -ms-flex: 3 1 30rem;
  flex: 3 1 30rem;
  margin-left: 110px;
}

.about .row .image img {
  width: 60%;
}

.about .row .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.about .row .content {
  font-size: 30px;
  color: var(--text-color);
}

.about .row .content p {
  font-size: 20px;
  color: var(--text-color);
  padding: 1rem 0;
  line-height: 1.8;
}

.about .content button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00ce40),
    to(#07a634)
  );
  background: linear-gradient(#00ce40, #07a634);
  -webkit-box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border: none;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 20px 20px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  margin-top: 20px;
}

.about .content button:hover {
  cursor: pointer;
  opacity: 0.8;
}

@media screen and (max-width: 500px) {
  .about {
    padding: 10px;
    font-size: 17px;
  }

  .about .row .image {
    margin: 0 auto;
    text-align: center;
  }

  .about .row .image img {
    width: 90%;
    margin: 0 auto;
  }

  .about .row .content p {
    font-size: 17px;
    padding: 10px;
    text-align: left;
  }

  .about .content {
    margin: 0 auto;
    text-align: center;
    padding: 10px;
  }

  .about .content button {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
  }
}

.main {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 20px;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.cards_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .main {
    margin: 0 auto;
    text-align: center;
  }

  .main .cards {
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    font-size: 20px;
    padding: 0px;
  }

  .main .cards .cards_item {
    font-size: 20px;
    width: 95%;
    text-align: center;
  }

  .main .cards .cards_item .main .cards .cards_item .card .card_text {
    font-size: 30px;
  }
}

.card {
  background-color: transparent;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.card_content {
  padding: 1rem;
  color: #000000;
}

.card_title {
  color: var(--main-color);
  font-size: 23px;
  padding: 10px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.card_text {
  color: var(--primary);
  font-size: 17px;
  line-height: 18px;
  margin-bottom: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.kako-naruciti {
  text-align: center;
  padding: 20px;
  background-image: url("../img/cloudbg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.kako-naruciti h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: black;
  padding: 20px;
  font-size: 36px;
}

.kako-naruciti .kako-slika {
  margin-top: 50px;
  text-align: center;
}

.kako-naruciti .kako-slika img {
  max-width: 600px;
  width: 100%;
}

.kako-naruciti button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00ce40),
    to(#07a634)
  );
  background: linear-gradient(#00ce40, #07a634);
  -webkit-box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border: none;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 20px 20px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  margin-top: 30px;
}

.kako-naruciti button:hover {
  cursor: pointer;
  opacity: 0.8;
}

@media screen and (max-width: 500px) {
  .kako-naruciti h1 {
    font-size: 30px;
  }

  .kako-naruciti .kako-slika img {
    width: 100%;
  }
}

.doktor {
  background-image: url("../img/doktorbg.png");
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.doktor h1 {
  text-align: center;
  padding: 60px;
  font-size: 35px;
  color: var(--primary);
}

.doktor .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.doktor .row .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 40rem;
  flex: 1 0 40rem;
}

.doktor .row .image img {
  width: 80%;
}

.doktor .row .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 10rem;
  flex: 1 1 10rem;
  padding: 2rem;
}

.doktor .row .content .potpis {
  color: var(--primary);
}

.doktor .row .content {
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.doktor .row .content span {
  font-weight: 800;
}

.doktor .row .content .potpis {
  font-weight: 800;
  font-style: normal;
}

.doktor .row .content p {
  color: var(--main-color);
  padding: 1rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  width: 80%;
}

@media screen and (max-width: 750px) {
  .doktor .row .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
  }

  .doktor .row .image img {
    width: 100%;
  }

  .doktor .row .content h1 {
    width: 100%;
    padding: 0px;
  }

  .doktor .row .content p {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    margin-top: 20px;
    margin-left: 0px;
    width: 100%;
    text-align: center;
    font-size: 20px;
  }

  .doktor .row .content .potpis {
    padding: 10px;
    margin-top: 10px;
  }
}

.doktor .content button {
  width: 150px;
  padding: 10px;
  border-radius: 20px;
  border-style: none;
  color: white;
  font-weight: 600;
  font-size: 20px;
  background-color: var(--secondary);
  margin-top: 30px;
}

.doktor .content button:hover {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 500px) {
  .doktor .row .content p {
    font-size: 20px;
  }

  .doktor h1 {
    font-size: 30px;
    padding: 20px;
  }
}

@media screen and (max-width: 365px) {
  .doktor h1 {
    text-align: center;
    padding: 40px;
    font-size: 35px;
  }
}

.block-9 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  outline: none !important;
  padding: 10px 0 30px;
  background-image: url("../img/doktorbg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper9 {
  font-size: 18px;
  outline: none !important;
  width: 1000px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
}

.b9-left {
  font-size: 18px;
  outline: none !important;
  width: 440px;
  float: left;
}

.b9-left .doco {
  font-size: 18px;
  outline: none !important;
  position: relative;
  left: -30px;
  margin-top: 20px;
  max-width: 500px;
}

.b9-right {
  font-size: 18px;
  outline: none !important;
  width: 520px;
  float: right;
}

.b9-right h2 {
  outline: none !important;
  text-transform: uppercase;
  line-height: 1;
  font-size: 56px;
  color: var(--primary);
  margin: 50px 0 20px;
}

.b9-right p {
  outline: none !important;
  font-size: 17px;
  margin: 20px 0 0;
  z-index: 100000;
}

.clearfix {
  font-family: OpenSans, sans-serif;
  font-size: 18px;
  outline: none !important;
  clear: both;
}

@media (max-width: 991px) {
  .block-9 .wrapper9 {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 320px;
  }

  .block-9 .wrapper9 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 500px) {
  .block-9 {
    background-position: -1000px;
  }

  .b9-left {
    width: 100%;
  }

  .b9-left .doco {
    width: 100%;
    margin-left: 20px;
  }

  .b9-right {
    width: 100%;
    padding: 10px;
  }

  .b9-right h2 {
    font-size: 30px;
    margin-top: 20px;
  }

  .b9-right p {
    padding: 0px;
    font-size: 17px;
    margin: 0px;
  }

  .wrapper9 {
    width: 100%;
    font-size: 20px;
    outline: none !important;
    margin: 0 auto;
    padding: 0px;
  }
}

.testimonial {
  background-color: var(--primary);
}

.testimonial .dugme {
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

.testimonial button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: white;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--primary);
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 0 auto;
  outline: none;
  overflow: visible;
  padding: 17px 20px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.testimonial button:hover {
  cursor: pointer;
  opacity: 0.8;
}

.testimonial .container {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 16px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 30px;
}

.testimonial {
  padding: 20px;
}

.testimonial .th-text {
  width: 80%;
  margin-bottom: 20px;
  color: white;
}

.testimonial span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 5px;
}

.testimonial h3 {
  text-align: center;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 36px;
  margin-top: 20px;
}

.testimonial p {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  line-height: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.testimonial .ime .rating {
  font-size: 17px;
  color: var(--primary);
  padding: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.testimonial .container::after {
  content: "";
  clear: both;
  display: table;
}

.testimonial .container img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

.testimonial .container span {
  font-size: 20px;
  margin-right: 15px;
}

@media (max-width: 500px) {
  .testimonial .container {
    text-align: center;
    width: 90%;
    color: var(--text-color);
  }

  .testimonial .th {
    font-size: 30px;
  }

  .testimonial .th-text {
    width: 100%;
    margin-top: 20px;
  }

  .testimonial .container img {
    margin: auto;
    float: none;
    display: block;
    padding: 5px;
  }

  .testimonial .container span {
    padding: 5px;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: var(--text-color);
  }

  .testimonial .container .ime {
    text-align: center;
    color: var(--text-color);
  }

  .testimonial .container .iskustvo {
    color: var(--text-color);
  }
}

.about2 {
  background-color: white;
  color: var(--primary);
  padding: 25px;
}

.about2 h1 {
  text-align: center;
  padding: 20px;
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.about2 .row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about2 .row2 .image2 {
  -webkit-box-flex: 3;
  -ms-flex: 3 1 30rem;
  flex: 3 1 30rem;
  margin-left: 110px;
}

.about2 .row2 .image2 img {
  width: 60%;
}

.about2 .row2 .content2 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 30px;
}

.about2 .row2 .content2 {
  font-size: 30px;
  color: var(--text-color);
}

.about2 .row2 .content2 p {
  font-size: 20px;
  color: black;
  padding: 1rem 0;
  line-height: 1.8;
}

.about2 a {
  text-decoration: none;
}

.about2 button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00ce40),
    to(#07a634)
  );
  background: linear-gradient(#00ce40, #07a634);
  -webkit-box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border: none;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 0 auto;
  outline: none;
  overflow: visible;
  padding: 20px 20px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.about2 .content2 button:hover {
  cursor: pointer;
  opacity: 0.8;
}

@media screen and (max-width: 500px) {
  .about2 {
    padding: 10px;
    font-size: 17px;
  }

  .about2 .row2 .image2 {
    margin: 0 auto;
    text-align: center;
  }

  .about2 .row2 .image2 img {
    width: 90%;
    margin: 0 auto;
  }

  .about2 .row2 .content2 p {
    font-size: 17px;
    padding: 10px;
    text-align: left;
  }

  .about2 .content2 {
    margin: 0 auto;
    text-align: center;
    padding: 10px;
  }

  .about2 .content2 button {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
  }
}

.kako-piti {
  padding: 20px;
  font-family: "Poppins", sans-serif;
  background-color: var(--primary);
}

.kako-piti h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: white;
}

.kako-piti .kako-slika {
  margin-top: 20px;
  text-align: center;
}

.kako-piti .kako-slika img {
  width: 500px;
}

@media screen and (max-width: 500px) {
  .kako-piti h1 {
    font-size: 30px;
  }

  .kako-piti .kako-slika .desktop {
    display: none;
  }

  .kako-piti .kako-slika .mob {
    width: 100%;
  }
}

@media screen and (min-width: 500px) {
  .kako-piti h1 {
    font-size: 30px;
  }

  .kako-piti .kako-slika .mob {
    display: none;
  }
}

.djelovanje {
  /*  background-image: url("image 38.png");*/
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  margin-top: 30px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.djelovanje h1 {
  font-size: 36px;
  padding: 24px;
  color: var(--primary);
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card1 {
  max-width: 300px;
  background-color: white;
  border: 3px solid var(--primary);
  padding: 30px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  margin: 20px;
}

.card1 img {
  width: 200px;
  border-radius: 10px;
}

.card-title {
  margin-top: 0;
  font-size: 18px;
  padding: 5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--primary);
}

.card-content {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 18px;
  color: var(--text);
}

.card-btn:hover {
  color: #02b875;
  background: #fff;
}

.card1:nth-child(2) .card-btn:hover {
  color: #4181ee;
  background: #fff;
}

.card1:last-child .card-btn:hover {
  color: #673ab7;
  background: #fff;
}

.cijena {
  padding: 20px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background-color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: white;
}

.cijena .timer-in-button {
  font-family: "Roboto", sans-serif;
}

.cijena .timer-in-button b {
  color: white;
  font-size: 30px;
}

.cijena .timer-in-button b .timerp {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 10px;
}

.cijena .timer-in-button b span {
  color: white;
  font-size: 30px;
  padding: 3px 5px;
  background: #000;
  border-radius: 5px;
}

@media screen and (max-width: 500px) {
  .cijena h1 {
    width: 100%;
    font-size: 18px;
  }
}

.forma {
  padding: 20px 20px 48px;
  /*  background-image: url("69W3UT.jpg");*/
  background-repeat: no-repeat;
  background-size: cover;
}

.forma h1 {
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  color: var(--primary);
}

.forma .im {
  float: left;
  margin-right: 20px;
}

.forma .im img {
  width: 400px;
}

.form-container {
  background-color: var(--main-color);
  border-radius: 10px;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 30px;
}

.form-container h1 {
  padding: 0px;
  font-size: 30px;
}

form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-gap: 12px;
  padding: 20px;
  background-color: white;
  border: 3px solid var(--primary);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--text);
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.form-field p {
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
}

input[type="text"],
select,
input[type="tel"] {
  height: 2.4em;
  font-size: 1em;
  padding-left: 5px;
  width: 100%;
  outline: none;
  border: 3px solid var(--primary);
  border-radius: 5px;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.buy .form-container form select .buy .form-container form select option {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.buy .form-container form select .buy .form-container form select option span {
  text-decoration: line-through;
  color: #76b366;
}

.submit {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00ce40),
    to(#07a634)
  );
  background: linear-gradient(#00ce40, #07a634);
  -webkit-box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border: solid transparent;
  border-radius: 16px;
  border: none;
  border-width: 0 0 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 0 auto;
  outline: none;
  overflow: visible;
  padding: 17px 40px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Poppins", sans-serif;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  outline: none;
  margin-top: 10px;
  text-decoration: none;
}

.submit:hover {
  cursor: pointer;
  opacity: 0.8;
}

@media screen and (max-width: 1390px) {
  .forma .im {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .forma .im img {
    width: 100%;
  }

  .form-container {
    width: 70%;
    font-size: 17px;
  }
}

footer {
  background-color: var(--primary);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 12px;
  padding: 25px;
}

footer p {
  margin-bottom: 0px;
}

footer p a {
  color: white;
}

.sweetalert {
  background-color: var(--primary);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border-radius: 16px;
}

.swal-title {
  margin: 0px;
  font-size: 30px;
  margin-bottom: 28px;
  color: white;
}

.komadih {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.komadih #komadi {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

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

/* -------------------------------------------price-------------------------------------------*/
/*.price {
    display: flex;
    margin: 20px 20px 0;
    line-height: 30px;
    white-space: nowrap;
}

.price_form {
    position: absolute;
    left: 298px;
    top: -19px;
    margin: 20px auto;
    justify-content: center;
}

.old {
    color: #fa0000;
    text-align: center;
    padding-bottom: 0;
    font-size: 38px;
    font-weight: 700;
    text-decoration: line-through;
    margin: 15px;
}

.old-form {
    color: #a6a6a6;
    position: absolute;
    top: 18px;
    font-size: 24px;
}

.new {
    color: #569907;
    text-align: center;
    padding-bottom: 0;
    font-size: 51px;
    font-weight: 700;
    margin: 15px;
}

.new-form {
    color: #6686d4;
    position: absolute;
    top: 78px;
    font-size: 30px;
}

@media screen and (max-width: 986px) {
    .form {
        width: 450px;
        margin: 0 auto
    }
}

@media screen and (max-width: 767px) {
    .price {
        justify-content: center;
        margin: 20px auto;
    }

    .form {
        max-width: 100%;
    }

    .old {
        font-size: 21px;
    }

    .new {
        font-size: 19px;
        top: 68px;
    }
}

@media screen and (max-width: 370px) {
    .main_form {
        padding: 0px 10px 0;
    }

    .old-form {
        font-size: 18px;
    }

    .new-form {
        ;
        font-size: 18px;
        top: 58px;
    }

    .form-container {
        width: 90%;
        font-size: 17px;
    }

    .old {
        font-size: 21px;
    }

    .new {
        font-size: 31px;
    }
}*/

/* -------------------------------------------price-------------------------------------------*/
.price {
  display: flex;
  margin: 20px;
  line-height: 30px;
  white-space: nowrap;
}

.price_form {
  margin: 0px auto;
  justify-content: center;
}

.old {
  color: #fa0000;
  text-align: center;
  padding-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  text-decoration: line-through;
  margin: 15px;
}

.old-form {
  color: #fa0000;
  font-size: 30px;
}

.new {
  color: #fff;
  text-align: center;
  padding-bottom: 0;
  font-size: 51px;
  font-weight: 700;
  margin: 15px;
}

.new-form {
  color: #2056be;
  font-size: 40px;
}

@media screen and (max-width: 1100px) {
  .header .menu {
    display: none;
  }

  .about .row .image img {
    width: 40%;
    margin-left: 25%;
  }

  .form-container {
    width: 100%;
    font-size: 17px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .home .image img {
    height: auto;
    padding-top: 4rem;
    max-width: 500px;
  }
}

@media screen and (max-width: 833px) {
  .about .row .image img {
    width: 60%;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .price {
    justify-content: center;
    margin: 20px auto;
  }

  .main_form .btn_wrap {
    text-align: center;
    margin: 0 auto 20px;
  }

  .about .row .image img {
    width: 60%;
    margin-left: 0;
  }

  .old {
    font-size: 30px;
  }

  .new {
    font-size: 37px;
  }

  .home .image img {
    max-width: 260px;
  }
}

@media screen and (max-width: 370px) {
  .old {
    font-size: 21px;
  }

  .new {
    font-size: 31px;
  }

  .main_form {
    padding: 0px 10px 0;
  }
}

/* -------------------------------------------adaptive-------------------------------------------*/
.forma .im {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
}

@media screen and (max-width: 1574px) {
  .home .content h1 {
    font-size: 41px;
  }
}

@media screen and (max-width: 1472px) {
  .home .image {
    flex: 0;
  }
}

@media screen and (max-width: 1472px) {
  .home {
    height: auto;
  }

  .home .image {
    flex: 0;
  }
}

@media screen and (max-width: 424px) {
  .forma .im {
    width: 300px;
    height: 300px;
  }

  .price_form {
    left: 236px;
    top: -29px;
  }

  .main_form {
    padding: 16px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .form-field {
    align-items: center;
  }
}
