/*
Theme Name: Accessi
Theme URI: https://websitesworkshop.studio
Author: Websites Workshop studio
Author URI: https://websitesworkshop.studio
Description: Classic WordPress Bootstrap 5 themeF
Version: 1.0
*/

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 odnos za obične videe */
    height: 0;
    overflow: hidden;
}
/* Za Shorts možeš koristiti poseban klasu sa padding-bottom: 177.77% (9:16) */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Roboto Slab", serif;
}

p {
  font-family: "Karla", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

p {
  color: #fff;
}

.container {
  margin: 0 auto;
}

li, a {
  text-underline-offset: 6px;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Roboto Slab", serif;
}

p {
  font-family: "Karla", sans-serif;
}

nav .container {
  max-width: 1700px;
  padding: 0px 16px;
}
@media (max-width: 767px) {
  nav .container {
    padding: 0px 16px;
  }
}
nav .container .navbar-brand {
  width: 200px;
}
@media (max-width: 767px) {
  nav .container .navbar-brand {
    width: 120px;
  }
}


nav .container a {
  color: #fff;
  font-size: 18px;
  transition: color 160ms ease, box-shadow 160ms ease;
}

/* hover ostaje isti */
nav .container a:hover {
  text-decoration: underline 2px solid #3C66FA;
  color: #fff;
}

/* aktivna stavka */
nav .container .nav-link.active {
  color: #fff;
  text-decoration: underline 2px solid #FFAA45;
}

/* keyboard fokus — važno: definisano eksplicitno */
nav .container a:focus,
nav .container a:focus-visible {
  color: #fff; /* zadrži boju */
  text-decoration: underline 2px solid #3C66FA; /* ili drugačija boja ako hoćeš */
  outline: none; /* uklanja browser outline, ali NE preporučujem ostaviti ovo bez zamene */
  box-shadow: 0 0 0 4px rgba(60, 102, 250, 1); /* pristupačan fokus-ring */
  border-radius: 4px; /* daje lepši fokus-ring ako je potrebno */
}

/* ako želiš poseban fokus za aktivnu (current) stavku */
nav .container .nav-link.active:focus,
nav .container .nav-link.active:focus-visible {
  text-decoration: underline 2px solid #FFAA45;
  box-shadow: 0 0 0 4px rgba(255,170,69, 1);
}


#navbarNav ul {
  gap: 5.5rem;
}
@media (max-width: 991px) {
  #navbarNav ul {
    height: 100dvh;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
  #navbarNav ul li {
    padding-inline-start: 3rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  #navbarNav ul li {
    padding-inline-start: 2rem;
  }
}

/* Custom hamburger icon */
.navbar-toggler-icon {
  display: none;
}

.menuline1,
.menuline2,
.menuline3 {
  position: relative;
  margin: 6px auto;
  height: 2px;
  width: 30px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease-in-out;
}

.menuline2 {
  width: 30px;
  margin: 0 auto;
}

.animate .menuline1 {
  top: 8px;
  transform: rotate(45deg);
  transition: transform 0.4s ease-in-out;
}

.animate .menuline2 {
  width: 0;
}

.animate .menuline3 {
  top: -8px;
  transform: rotate(-45deg);
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: 24px;
  line-height: 1;
  color: whitesmoke;
  background-color: transparent;
  border: none;
  border-radius: 0;
  transition: 0.8s;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.img-mambo {
  z-index: -1;
  width: 50%;
  opacity: 30%;
}
@media (max-width: 767px) {
  .img-mambo {
    width: 100%;
    opacity: 67%;
  }
}
.img-mambo img {
  width: 100%;
  height: 100%;
  margin-block-start: -200px;
}

.hero {
  height: 100dvh;
}
@media (max-width: 767px) {
  .hero .row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
.hero .row .col-md-12 {
  padding-block-end: 100px;
}
@media (max-width: 767px) {
  .hero .row .col-md-12 {
    padding-block-end: 50px;
    text-align: center;
  }
}
.hero .row .col-md-12 h1 {
  color: #fff;
  font-size: 100px;
  font-weight: 900;
}
@media (max-width: 1440px) {
  .hero .row .col-md-12 h1 {
    font-size: 80px;
  }
}
@media (max-width: 992px) {
  .hero .row .col-md-12 h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero .row .col-md-12 h1 {
    font-size: 40px;
  }
}
@media (max-width: 410px) {
  .hero .row .col-md-12 h1 {
    font-size: 30px;
  }
}
.hero .row .col-md-12 h1 span {
  color: #FFAA45;
}
.hero .row .col-md-6 p {
  font-size: 20px;
  color: #fff;
}
@media (max-width: 992px) {
  .hero .row .col-md-6 p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero .row .col-md-6 p {
    text-align: center;
  }
}
.hero .row .col-md-4 {
  border: 3px solid #FFAA45;
  border-radius: 100%;
  width: 160px;
  height: 160px;
  font-size: 18px;
  transition: 0.8s;
}
@media (max-width: 767px) {
  .hero .row .col-md-4 {
    margin-block-start: 50px;
  }
}
@media (max-width: 410px) {
  .hero .row .col-md-4 {
    margin-block-start: 30px;
  }
}
.hero .row .col-md-4:hover {
  scale: 1.1;
}
.hero .row .col-md-4 a {
  -webkit-text-decoration: underline 2px solid #FFAA45;
          text-decoration: underline 2px solid #FFAA45;
}

.meet-the-team {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .meet-the-team {
    padding: 50px 10px;
  }
}
.meet-the-team h2 {
  padding-block-end: 100px;
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
}
@media (max-width: 767px) {
  .meet-the-team h2 {
    padding-block-end: 50px;
  }
}
@media (max-width: 410px) {
  .meet-the-team h2 {
    padding-block-end: 50px;
  }
}
.meet-the-team .row {
  flex-wrap: nowrap;
  gap: 3%;
}
@media (max-width: 767px) {
  .meet-the-team .row {
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column-reverse;
    gap: 0;
  }
}
.meet-the-team .row .col-md-6 {
  margin-block-start: 50px;
}
@media (max-width: 767px) {
  .meet-the-team .row .col-md-6 {
    flex: 0 0 99% !important;
    width: 100%;
    margin-block-start: 25px;
  }
}
.meet-the-team .row .col-md-6 h3 {
  background-color: #FFAA45;
  color: #000000;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
  padding: 0.625rem 1rem;
  margin-block-end: 20px;
}
@media (max-width: 410px) {
  .meet-the-team .row .col-md-6 h3 {
    padding: 10px;
  }
}
.meet-the-team .row .col-md-6 p {
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
  font-weight: 300;
  padding-left: 19px;
}
@media (max-width: 410px) {
  .meet-the-team .row .col-md-6 p {
    padding-right: 10px;
  }
}
.meet-the-team .row .col-md-6 a {
  -webkit-text-decoration: underline 1px solid #3C66FA;
          text-decoration: underline 1px solid #3C66FA;
  transition: 0.8s;
  padding-left: 15px;
}
@media (max-width: 410px) {
  .meet-the-team .row .col-md-6 a {
    padding-left: 15px;
  }
}
.meet-the-team .row .col-md-6 a:hover, .meet-the-team .row .col-md-6 a:active {
  -webkit-text-decoration: underline 1px solid #FFAA45;
          text-decoration: underline 1px solid #FFAA45;
}

.team {
  background: #3C66FA;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .team {
    padding: 50px 0;
  }
}
.team h2 {
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
}
@media (max-width: 767px) {
  .team h2 {
    text-align: center;
  }
}

.first-row {
  background: #FFAA45;
  display: flex;
  flex-direction: row;
  gap: 3.1%;
  padding-left: 1.8rem;
  align-items: flex-end;
  margin-block-start: 200px;
  border-radius: 20px;
  min-height: 300px;
}
@media (max-width: 991px) {
  .first-row {
    padding: 0 1rem 1rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .first-row {
    margin-block-start: 150px;
  }
}
@media (max-width: 430px) {
  .first-row {
    padding: 0 0.5rem 1rem;
  }
}

.quote {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex: 0 0 10%;
  align-self: flex-start;
  margin-inline-end: auto;
}

.quote img {
  margin-block-start: -1.125rem;
  width: clamp(3.125rem, 2.1875rem + 4.6875vw, 7.8125rem);
  max-width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .quote {
    flex-direction: row;
    flex: 0 0 70%;
    order: -1;
  }
}

.quote-box {
  margin-block-start: 0.5rem;
  margin-inline-start: 0.5rem;
}
.quote-box h2 {
  font-size: clamp(1.25rem, -0.0543rem + 2.7174vw, 2.1875rem);
  font-family: "Karla", sans-serif;
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 575px) {
  .quote-box h2 {
    margin-block-end: 0.1rem;
  }
}
.quote-box h2,
.quote-box p {
  color: #1A1C1E;
}
.quote-box p {
  font-size: clamp(0.875rem, 0.7011rem + 0.3623vw, 1rem);
  line-height: 1.2;
}

.text {
  flex: 1 1 60%;
  align-self: center;
  padding: .8rem 0;
}

.text p {
  color: #1A1C1E;
  margin-block-end: 0;
}
@media (max-width: 991px) {
  .text {
    order: 3;
    width: 100%;
    padding-inline: 1rem;
  }
}
@media (max-width: 767px) {
  .text {
    padding-inline: 0.625rem;
  }
}

.img-team {
  position: relative;
  flex: 0 0 20%;
  right: 0;
}
@media (max-width: 991px) {
  .img-team {
    order: 2;
  }
}

.img-team img {
  width: 110%;
  max-width: 110%;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0;
}
@media (max-width: 575px) {
  .img-team img {
    bottom: 1rem;
    width: 130%;
    max-width: 130%;
    right: 0.1rem;
  }
}

.testi-btn {
    text-decoration: underline 2px solid #FFAA45;
    transition: 0.8s;
}

.testi-btn:hover {
    text-decoration: underline 2px solid #fff;
}

/*========= TWEEST in SECTION ======*/
.first-row.front-team:nth-child(odd) {
  flex-direction: row-reverse;
  background: #1A1C1E;
  padding-inline: 0px 30px;
}
@media (max-width: 991px) {
  .first-row.front-team:nth-child(odd) {
    padding: 0 1rem 1rem 0;
    flex-wrap: wrap;
  }
}
.first-row.front-team:nth-child(odd) .quote {
  margin-inline-end: 0;
  margin-inline-start: auto;
}
@media (max-width: 991px) {
  .first-row.front-team:nth-child(odd) .quote {
    flex-direction: row-reverse;
  }
}

@media (max-width: 991px) {
  .first-row.front-team:nth-child(odd) .quote-box {
    margin-inline: 0 0.5rem;
  }
}
.first-row.front-team:nth-child(odd) .quote-box h2,
.first-row.front-team:nth-child(odd) .quote-box p {
  color: #fff;
}
.first-row.front-team:nth-child(odd) h2 {
  margin-block: 0.3rem 0.3rem;
}
.first-row.front-team:nth-child(odd) .text > * {
  color: #fff;
}

@media (max-width: 991px) {
  .first-row.front-team:nth-child(odd) .text {
    margin-block-start: 1rem;
    padding-inline: 2rem 1rem;
  }
}
@media (max-width: 575px) {
  .first-row.front-team:nth-child(odd) .img-team img {
    right: unset;
  }
}
/*========= TWEEST on PAGE ======*/
.first-row.team-page:nth-child(2n) {
  flex-direction: row-reverse;
  padding-inline: 0px 30px;
  background: #1A1C1E;
}
@media (max-width: 991px) {
  .first-row.team-page:nth-child(2n) {
    padding: 0 1rem 1rem 0;
    flex-wrap: wrap;
  }
}
.first-row.team-page:nth-child(2n) .quote {
  margin-inline-end: 0;
  margin-inline-start: auto;
}
@media (max-width: 991px) {
  .first-row.team-page:nth-child(2n) .quote {
    flex-direction: row-reverse;
  }
}

@media (max-width: 991px) {
  .first-row.team-page:nth-child(2n) .quote-box {
    margin-inline: 0 0.5rem;
  }
}
.first-row.team-page:nth-child(2n) .quote-box h2,
.first-row.team-page:nth-child(2n) .quote-box p {
  color: #fff;
}
.first-row.team-page:nth-child(2n) h2 {
  margin-block: 0.3rem 0.3rem;
}
.first-row.team-page:nth-child(2n) .text > * {
  color: #fff;
}

@media (max-width: 991px) {
  .first-row.team-page:nth-child(2n) .text {
    margin-block-start: 1rem;
    padding-inline: 2rem 1rem;
  }
}
@media (max-width: 575px) {
  .first-row.team-page:nth-child(2n) .img-team img {
    right: unset;
  }
}
footer {
  padding: 30px 0;
}
footer .footer--logo {
  display: inline-block;
  text-align: center;
  width: clamp(9.375rem, 4.375rem + 13.8889vw, 16.875rem);
}
@media (max-width: 767px) {
  footer .footer--logo {
    margin-block-end: 2rem;
  }
}

footer .container {
  margin-block-start: 20px;
  padding: 10px 0;
  border-block-start: 1px solid #707070;
}
@media (max-width: 767px) {
  footer .container {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    border-block-start: none;
  }
  footer .container .textwidget:first-child {
    border-block-start: 1px solid #707070;
    max-width: clamp(18.75rem, 4.6324rem + 70.5882vw, 30rem);
    margin-block-start: 2rem;
    font-size: clamp(0.875rem, 0.7011rem + 0.3623vw, 1rem);
  }
  footer .container .textwidget {
    width: 100%;
  }
}
footer .container ul {
  display: flex;
  margin-block-end: 0;
}
@media (max-width: 767px) {
  footer .container ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    margin-block-end: 1rem;
  }
}
footer .container ul li {
  padding-right: 35px;
  -webkit-text-decoration: underline 1px solid #FFAA45;
          text-decoration: underline 1px solid #FFAA45;
  transition: 0.8s;
}
footer .container ul li:hover {
  -webkit-text-decoration: underline 1px solid #3C66FA;
          text-decoration: underline 1px solid #3C66FA;
}
@media (max-width: 767px) {
  footer .container ul li {
    padding-right: 0;
    margin-block-start: 1rem;
  }
}

footer .container div {
  color: #fff;
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  font-family: "Karla", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 0.9;
  text-transform: uppercase;
  color: #000;
  background-color: #d38c34;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 9999;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

span#back-to-top {
  transform: rotate(90deg);
}

#back-to-top:hover {
  background-color: #222;
  color: #fff;
}

body {
  background: #131313;
}

.accessibility-index {
  padding: 100px 0;
  background: #3C66FA;
}
@media (max-width: 767px) {
  .accessibility-index {
    padding: 100px 10px;
  }
}
.accessibility-index h2 {
  font-size: 50px;
  padding-block-end: 30px;
}
@media (max-width: 767px) {
  .accessibility-index h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .accessibility-index h2 {
    font-size: 25px;
  }
}
.accessibility-index p {
  font-size: 30px;
}
@media (max-width: 1199px) {
  .accessibility-index p {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .accessibility-index p {
    font-size: 20px;
  }
}
@media (max-width: 410px) {
  .accessibility-index p {
    font-size: 16px;
  }
}
.accessibility-index a {
  display: block;
  text-align: center;
  margin: 50px auto 0 auto;
  -webkit-text-decoration: underline 2px solid #FFAA45;
          text-decoration: underline 2px solid #FFAA45;
  transition: 0.8s;
}
.accessibility-index a:hover {
  -webkit-text-decoration: underline 2px solid #fff;
          text-decoration: underline 2px solid #fff;
}

.accessibility-index .container {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .accessibility-index .container {
    padding: 50px 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.accessibility-index article {
  border-radius: 8px;
  border: 2px solid #FFAA45;
  flex: 0 0 30%;
  padding: 30px;
  flex-wrap: wrap;
}
.accessibility-index article div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991px) {
  .accessibility-index article div {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .accessibility-index article div {
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
  }
}
.accessibility-index article div img {
  width: 100%;
  height: auto;
  max-width: clamp(3.0625rem, 1.2364rem + 3.8043vw, 4.375rem);
}
.accessibility-index article div h3 {
  font-size: clamp(1.125rem, 0.6693rem + 0.9494vw, 1.5rem);
  margin-block-end: 0;
}
.accessibility-index article p {
  font-size: clamp(1rem, 0.4783rem + 1.087vw, 1.375rem);
  margin-block-start: 37px;
}

.accessibility-index article:nth-child(2) .featured-image {
  max-width: clamp(2.375rem, 1.7663rem + 1.2681vw, 2.8125rem);
}

.numbers {
  background: #FFAA45;
}
@media (max-width: 767px) {
  .numbers .row {
    padding: 1rem 0;
  }
}
.numbers .row .border-col {
  border-left: 1px solid #3C66FA;
  border-right: 1px solid #3C66FA;
}
@media (max-width: 767px) {
  .numbers .row .border-col {
    border: none;
  }
}
.numbers .row .col-md-4 {
  flex: 0 0 32%;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .numbers .row .col-md-4 {
    flex: 0 0 90%;
    padding: 2rem 0;
  }
}
@media (max-width: 370px) {
  .numbers .row .col-md-4 {
    padding: 40px 0;
  }
}
.numbers .row .col-md-4 p {
  color: #000000;
  font-weight: 600;
  font-size: 30px;
  font-family: "Karla", sans-serif;
}
@media (max-width: 767px) {
  .numbers .row .col-md-4 p {
    font-size: 24px;
  }
}
.numbers .row .col-md-4 p span {
  color: #fff;
  background: #3C66FA;
  padding: 2px 16px;
}

.ready {
  height: 80vh;
}
.ready img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ready h2 {
  background-color: #FFAA45;
  color: #000000;
  font-size: 50px;
  padding: 15px 10px;
}
@media (max-width: 1199px) {
  .ready h2 {
    font-size: 40px;
  }
}
@media (max-width: 999px) {
  .ready h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .ready h2 {
    font-size: 25px;
  }
}
.ready p {
  font-size: 22px;
  width: 50%;
  margin-block-start: 40px;
}
@media (max-width: 1199px) {
  .ready p {
    font-size: 20px;
  }
}
@media (max-width: 999px) {
  .ready p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ready p {
    width: 100%;
  }
}
.ready a {
  -webkit-text-decoration: underline 2px solid #3C66FA;
          text-decoration: underline 2px solid #3C66FA;
  font-size: 20px;
  transition: 0.8s;
}
.ready a:hover {
  -webkit-text-decoration: underline 2px solid #FFAA45;
          text-decoration: underline 2px solid #FFAA45;
}

/**********************************************/
/*Contact - index*/
/**********************************************/
.contact-index {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .contact-index {
    padding: 50px 5px;
  }
}
@media (max-width: 767px) {
  .contact-index .col-md-6 {
    padding: 50px 15px;
  }
}
.contact-index .col-md-6 h2 {
  background: #3C66FA;
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  margin-block-end: 20px;
}
.contact-index .col-md-6 p {
  font-size: clamp(1.125rem, 0.0815rem + 2.1739vw, 1.875rem);
  padding-left: 15px;
}
.contact-index .col-md-6 p span {
  font-weight: bold;
}
@media (max-width: 767px) {
  .contact-index .col-md-6 p {
    margin-block-end: 2rem;
  }
}
.contact-index .col-md-6 a {
  -webkit-text-decoration: underline 2px solid #FFAA45;
          text-decoration: underline 2px solid #FFAA45;
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
  transition: 0.8s;
  padding-left: 15px;
}
.contact-index .col-md-6 a:hover {
  -webkit-text-decoration: underline 2px solid #3C66FA;
          text-decoration: underline 2px solid #3C66FA;
}
.contact-index .form-index {
  background: #FFAA45;
  padding: 50px 30px;
}
.contact-index .form-index label {
  color: #000000;
  margin-block-end: 10px;
  font-family: "Roboto Slab", serif;
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
  width: 100%;
  font-weight: bold;
}

.contact-index .form-index input,
.contact-index .form-index textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #3C66FA;
  border-radius: 0px;
  padding: 10px;
  font-size: 1rem;
}

.contact-index .form-index input {
  margin-block-end: 10px;
  padding: 10px;
}
.contact-index .form-index textarea {
  height: 110px;
}
.contact-index .form-index a {
  margin-block-start: 30px;
  color: #000000;
  -webkit-text-decoration: underline 2px solid #3C66FA;
          text-decoration: underline 2px solid #3C66FA;
}
.contact-index .form-index a:hover {
  -webkit-text-decoration: underline 2px solid #fff;
          text-decoration: underline 2px solid #fff;
}

.contact-index input[type="submit"] {
	display: inline-block;
	border: none;
	border-radius: 0;
	border-bottom: 2px solid #3C66FA;
	width: auto;
	font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
	font-family: "Roboto Slab", serif;
	font-weight: bold;
	transition: all .4s ease;
}

.contact-index input[type="submit"]:hover {
	border-bottom: 2px solid #000;
}

.wpcf7-not-valid-tip {
    color: #000 !important;
    font-size: 1rem !important;
}
/**************************************/
.about-hero {
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .about-hero {
    margin: 0;
    height: 100dvh;
  }
}
.about-hero .content {
  align-self: center;
  padding-left: 100px;
  padding-block-end: 100px;
}
@media (max-width: 767px) {
  .about-hero .content {
    padding: 10px;
    width: 100%;
    padding-block-start: 200px;
  }
}
.about-hero .content h4 {
  font-family: "Karla", sans-serif;
  font-size: clamp(1.125rem, 0.0815rem + 2.1739vw, 1.875rem);
}
@media (max-width: 767px) {
  .about-hero .content h4 {
    text-align: center;
  }
}
.about-hero .content h1 {
  font-size: clamp(1.875rem, -0.7337rem + 5.4348vw, 3.75rem);
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .about-hero .content h1 {
    text-align: center;
  }
}
.about-hero .content h1 span {
  color: #FFAA45;
}
.about-hero .col-md-5 {
  padding-inline-end: 0;
}
.about-hero .col-md-5 img {
  height: 92vh;
  width: 100vw;
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-hero .col-md-5 img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: black;
    filter: opacity(0.3);
  }
}

.about-us-about-us {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .about-us-about-us {
    padding: 50px 10px;
  }
}
.about-us-about-us .row {
  flex-wrap: nowrap;
  gap: 3%;
}
@media (max-width: 767px) {
  .about-us-about-us .row {
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column-reverse;
    gap: 0;
    margin: 0 auto;
  }
}
.about-us-about-us .row .col-md-6 {
  margin-block-start: 50px;
}
@media (max-width: 767px) {
  .about-us-about-us .row .col-md-6 {
    flex: 0 0 99% !important;
    width: 100%;
    margin-block-start: 25px;
  }
}
.about-us-about-us .row .col-md-6 h2 {
  background-color: #FFAA45;
  color: #000000;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
  padding: 0.625rem 1rem;
  margin-block-end: 20px;
}
@media (max-width: 410px) {
  .about-us-about-us .row .col-md-6 h2 {
    padding: 10px;
  }
}
.about-us-about-us .row .col-md-6 p {
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
  font-weight: 300;
  padding-left: 19px;
}
@media (max-width: 410px) {
  .about-us-about-us .row .col-md-6 p {
    padding-right: 10px;
  }
}
.about-us-about-us .row .col-md-6 a {
  -webkit-text-decoration: underline 1px solid #3C66FA;
          text-decoration: underline 1px solid #3C66FA;
  transition: 0.8s;
  padding-left: 19px;
}
@media (max-width: 410px) {
  .about-us-about-us .row .col-md-6 a {
    padding-left: 19px;
  }
}
.about-us-about-us .row .col-md-6 a:hover, .about-us-about-us .row .col-md-6 a:active {
  -webkit-text-decoration: underline 1px solid #FFAA45;
          text-decoration: underline 1px solid #FFAA45;
}

.why-us {
  background: #3C66FA;
  padding: 200px 0;
}
@media (max-width: 767px) {
  .why-us {
    padding: 50px 10px;
  }
}
.why-us h2 {
  padding-block-end: 100px;
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
}
@media (max-width: 767px) {
  .why-us h2 {
    padding-block-end: 50px;
  }
}

.why-us .row {
  flex-wrap: nowrap;
  gap: 3%;
}

@media (max-width: 767px) {
  .why-us .row {
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
  }
}
.why-us .row .col-md-6 {
  margin-block-start: 50px;
}
@media (max-width: 767px) {
  .why-us .row .col-md-6 {
    flex: 0 0 99% !important;
    width: 100%;
    margin-block-start: 25px;
    padding-inline: 0;
  }
}
.why-us .row .col-md-6 h3 {
  background-color: #FFAA45;
  color: #000000;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
  padding: 0.625rem 1rem;
  margin-block-end: 20px;
}
@media (max-width: 410px) {
  .why-us .row .col-md-6 h3 {
    padding: 10px;
  }
}
.why-us .row .col-md-6 p {
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
  font-weight: 300;
  padding-left: 19px;
}
@media (max-width: 410px) {
  .why-us .row .col-md-6 p {
    padding-right: 10px;
  }
}
.why-us .row .col-md-6 a {
  -webkit-text-decoration: underline 1px solid #3C66FA;
          text-decoration: underline 1px solid #3C66FA;
  transition: 0.8s;
  padding-left: 15px;
}
@media (max-width: 410px) {
  .why-us .row .col-md-6 a {
    padding-left: 15px;
  }
}
.why-us .row .col-md-6 a:hover, .why-us .row .col-md-6 a:active {
  -webkit-text-decoration: underline 1px solid #FFAA45;
          text-decoration: underline 1px solid #FFAA45;
}

.how-we-do-it {
  height: 80vh;
  margin-block-end: 100px;
}
.how-we-do-it h2 {
  font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
  background-color: #FFAA45;
  color: #000000;
  padding: 15px 10px;
  margin-block-start: 100px;
}
.how-we-do-it .container {
  margin-block-start: 35px;
}
.how-we-do-it .container p {
  font-size: clamp(1.125rem, 0.7772rem + 0.7246vw, 1.375rem);
}
.how-we-do-it .container a {
  font-size: 20px;
  -webkit-text-decoration: underline 3px solid #3C66FA;
          text-decoration: underline 3px solid #3C66FA;
  transition: 0.8s;
}
.how-we-do-it .container a:hover {
  -webkit-text-decoration: underline 3px solid #FFAA45;
          text-decoration: underline 3px solid #FFAA45;
}

.how-we-do-it img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-team {
  background: #3C66FA;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .team-team {
    padding: 50px 0;
  }
}

.services-hero {
  padding: 0 !important;
}
@media (max-width: 767px) {
  .services-hero {
    margin: 0;
    height: 60dvh;
  }
}

.services-hero .content {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .services-hero .content {
    padding: 10px;
    text-align: center;
    width: 98%;
    padding-block-start: 80px;
  }
}
.services-hero .content h1 {
  color: #FFAA45;
  font-size: clamp(1.875rem, -1.9511rem + 7.971vw, 4.625rem);
  font-weight: bold;
}

.services-hero-new .content {
    padding-left: 100px;
}

.services-hero-new .content h1 {
  color: #FFF;
  font-size: clamp(1.875rem, -1.9511rem + 7.971vw, 4.625rem);
  font-weight: bold;
}

.services-hero-new .content h1 span {
  color: #FFAA45;
}

@media (max-width: 767px) {
  .services-hero .content h1 {
    text-align: center;
  }
  
  .services-hero-new .content h1 {
      text-align: center;
  }
}
.services-hero .content p {
  font-size: clamp(1.25rem, -0.4891rem + 3.6232vw, 2.5rem);
  width: 87%;
  line-height: 1.4;
  margin-block: 1.5rem 1rem;
}

@media (max-width: 767px) {
  .services-hero .content p {
    text-align: center;
    width: 100%;
  }
}

.services-hero .content a {
  font-size: 22px;
  -webkit-text-decoration: underline 2px solid #FFAA45;
          text-decoration: underline 2px solid #FFAA45;
  transition: 0.8s;
}

.services-hero .content a:hover {
  -webkit-text-decoration: underline 2px solid #3C66FA;
          text-decoration: underline 2px solid #3C66FA;
}

@media (max-width: 767px) {
  .services-hero .content a {
    font-size: 18px;
  }
}

.services-hero .col-md-5 {
  padding-inline-end: 0;
}
.services-hero .col-md-5 img {
  height: 92dvh;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .services-hero .col-md-5 img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: black;
    filter: opacity(0.3);
    height: 70%;
  }
}

.usability-testing {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .usability-testing {
    display: flex !important;
    flex-direction: column-reverse;
    width: 100%;
    padding: 50px 0;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .usability-testing .col-md-6 {
    flex: 0 0 99% !important;
    width: 100%;
  }
}
.usability-testing .col-md-6 h2 {
  font-size: 50px;
  background: #FFAA45;
  color: #000000;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  margin-block-end: 20px;
}
@media (max-width: 767px) {
  .usability-testing .col-md-6 h2 {
    font-size: 25px;
    text-align: center;
  }
}
.usability-testing .col-md-6 p {
  font-size: 18px;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .usability-testing .col-md-6 p {
    padding-left: 20px;
  }
}

.available-packages {
  background: #3C66FA;
  padding: 100px 0;
}
.available-packages h2 {
  font-size: 50px;
}
@media (max-width: 767px) {
  .available-packages h2 {
    font-size: 25px;
  }
}
.available-packages .row {
  margin-block-start: 200px;
  align-items: stretch;
}
@media (max-width: 1401px) {
  .available-packages .row {
    margin-block-start: 50px;
  }
}
@media (max-width: 767px) {
  .available-packages .row {
    margin-block-start: 10px;
  }
}
.available-packages .row .col-md-4 {
  background: #000000;
  flex: 0 0 32%;
  min-height: 500px;
  border-radius: 10px;
}
@media (max-width: 1401px) {
  .available-packages .row .col-md-4 {
    flex: 0 0 100%;
    margin-block-start: 150px;
    min-height: 300px;
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .available-packages .row .col-md-4 {
    flex: 0 0 98%;
    margin-block-start: 150px;
    height: auto;
    padding: 20px 20px 0 20px;
  }
}
.available-packages .row .col-md-4 h3 {
  width: 162px;
  height: 162px;
  border-radius: 100%;
  background: #3C66FA;
  border: 1px solid #FFAA45;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-block-start: 50px;
  font-size: 22px !important;
}
.available-packages .row .col-md-4 ul {
  padding-block-start: 170px;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 1401px) {
  .available-packages .row .col-md-4 ul {
    padding-block-start: 100px;
  }
}
@media (max-width: 767px) {
  .available-packages .row .col-md-4 ul {
    padding: 100px 0;
  }
}
.available-packages .row .col-md-4 ul li i {
  color: #0CC53E;
  font-size: 22px;
  padding-right: 15px;
}
.available-packages .row .col-md-4 ul li p {
  padding-block-start: 4px;
}
.available-packages .row .orange {
  border: 1px solid #FFAA45;
}
@media (max-width: 1441px) {
  .available-packages .row .orange {
    height: auto;
  }
}
.available-packages .row .orange h3 {
  background-color: #FFAA45;
  color: #000000;
}

/****************************************/
/* Full Audit */
/***************************************/

.service-card--container {
  padding-block-start: 6rem;
}
.service-card--content {
  border: 2px solid #FFAA45;
  border-radius: 8px;
  padding: 3rem 3rem 2rem;
  margin-block-end: 1.25rem;
}

@media (max-width: 767px) {
  .service-card--content {
    padding: 1rem;
  }
}

.service-card--subheading h2 {
    font-size: 50px;
    text-align: center;
    padding-block: 3rem 2rem;
}

@media (max-width: 767px) {
    .service-card--subheading h2 {
    font-size: 25px;
    }
}

.service-card--content h2,
.service-card--content h3 {
  background: #1246FF;
  width: 100%;
  padding: 10px 15px;
  font-size: 40px;
  color: #fff;
  margin-block-end: 2rem;
}

@media (max-width: 767px) {
  .service-card--content h2
  .service-card--content h3 {
    font-size: 20px;
  }
}

.service-card--row {
  -moz-column-gap: 6.25rem;
       column-gap: 6.25rem;
}

.service-card--row .legal-support {
    display: inline-block;
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;
    padding-block: 1.25rem 1rem;
}

.service-card--row .fw-bold {
  padding-inline-start: 0;
}
.service-card--row ul {
  padding-inline-start: 0;
  margin-block-end: 0;
}
.service-card--row ul li i {
  color: #0cc53e;
  font-size: 22px;
  padding-inline-end: 15px;
}
.service-card--row ul li p {
  padding-block-start: 4px;
}
.service-card--row .important-details {
  background: #FFAA45;
  width: -moz-max-content;
  width: max-content;
  color: #000000;
}
.service-card--row .book-btn {
  background-color: #1246FF;
  font-family: "Karla", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: center;
  padding: 1.5rem;
  margin-block-start: 5rem;
}

/********** Full AUdit END *********/

.privacy {
  padding: 100px 10px;
}
.privacy h1 {
  font-family: "Karla", sans-serif;
  font-size: clamp(1.5625rem, -0.6114rem + 4.529vw, 3.125rem);
  font-weight: 500;
  color: #000000;
  background-color: #FFAA45;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
}
.privacy h3 {
  font-size: clamp(1.125rem, 0.0815rem + 2.1739vw, 1.875rem);
  font-weight: 600;
  color: #FFAA45;
  margin-block: 2.5rem 1.25rem;
}
.privacy p {
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
}
.privacy span {
  color: #FFAA45;
  font-weight: bold;
}

/**************/
/* SECURITY */
/***************/
.security {
  padding: 100px 10px;
}
.security h1 {
  font-family: "Karla", sans-serif;
  font-size: clamp(1.5625rem, -0.6114rem + 4.529vw, 3.125rem);
  font-weight: 500;
  color: #000000;
  background-color: #FFAA45;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
}
.security h4 {
  font-size: clamp(1.125rem, 0.0815rem + 2.1739vw, 1.875rem);
  font-weight: 600;
  color: #FFAA45;
  margin-block: 2.5rem 1.25rem;
}
.security h2 {
  font-size: clamp(1.875rem, -0.7337rem + 5.4348vw, 3.75rem);
  font-weight: 600;
  padding: 50px 0;
  color: #FFAA45;
}
.security p {
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
}
.security span {
  font-weight: bold;
  color: #FFAA45;
}

.terms {
  padding: 100px 10px;
}
.terms h1 {
  font-family: "Karla", sans-serif;
  font-size: clamp(1.5625rem, -0.6114rem + 4.529vw, 3.125rem);
  font-weight: 500;
  color: #000000;
  background-color: #FFAA45;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
}
.terms h4 {
  font-size: clamp(1.125rem, 0.0815rem + 2.1739vw, 1.875rem);
  font-weight: 600;
  color: #FFAA45;
  margin-block: 2.5rem 1.25rem;
}
.terms p {
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
}
.terms span {
  font-weight: bold;
  color: #FFAA45;
}


/***************************/
/* BLOG page */
/***************************/
.blog-hero {
  padding: 0 !important;
}
@media (max-width: 767px) {
  .blog-hero {
    margin: 0;
    height: 100dvh;
  }
}
.blog-hero .content {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .blog-hero .content {
    padding: 10px;
    text-align: center;
    width: 98%;
    padding-block-start: 150px;
  }
}
.blog-hero .content h1 {
  color: #fff;
  font-size: clamp(1.875rem, -1.9511rem + 7.971vw, 4.625rem);
  font-weight: bold;
}
@media (max-width: 767px) {
  .blog-hero .content h1 {
    text-align: center;
  }
}
.blog-hero .content h1 span {
  color: #FFAA45;
}
.blog-hero .content p {
  font-size: clamp(1.25rem, -0.4891rem + 3.6232vw, 2.5rem);
  width: 87%;
  line-height: 1.4;
  margin-block: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .blog-hero .content p {
    text-align: center;
    width: 100%;
  }
}
.blog-hero .col-md-5 {
  padding-inline-end: 0;
}
.blog-hero .col-md-5 img {
  height: 92dvh;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .blog-hero .col-md-5 img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: #000000;
    filter: opacity(0.3);
  }
}

/**********************************/
/* BLOG list */
/**********************************/
.posts-list {
  padding-block: 8rem 3.5rem;
  padding-inline: clamp(1rem, -6.3043rem + 15.2174vw, 6.25rem);
}

.posts-list article {
  padding: 2rem 3rem;
  border: 2px solid #1246FF;
  border-radius: 8px;
}
@media screen and (max-width: 992px) {
  .posts-list article {
    padding: 1.125rem;
  }
}
.posts-list article .naziv-kategorije {
  background: #FFAA45;
  padding: 4px 6px;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 600;
}
.posts-list article .blog-datum {
  font-size: clamp(1rem, 0.8261rem + 0.3623vw, 1.125rem);
}
.posts-list article h2.post-title {
  font-size: clamp(1.125rem, 0.9511rem + 0.3623vw, 1.25rem);
}
.posts-list article h2.post-title a {
  color: #FFAA45 !important;
  font-family: "Karla", sans-serif !important;
  font-weight: 600;
  text-decoration: none;
}
.posts-list article .post-thumbnail img {
  width: 100%;
  display: block;
}

.post-link a {
  text-transform: uppercase;
  text-decoration: underline;
}
.post-link a:hover, .post-link a:focus {
  color: #FFAA45 !important;
}

/* --- Pagination --- */
.pagination {
--bs-pagination-border-radius: 0 !important;
  margin-block: 2rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.pagination .page-numbers {
  padding: 0.5rem 1rem;
  border: 2px solid #1246FF;
  border-radius: 4px;
}

.pagination .page-numbers.current {
  background-color: #1246FF;
  color: #fff;
}

/********************************/
/* Single Blog Page - single.php */
/********************************/

.single-wrapper {
    padding-block: 8rem 6rem;
}

.single-main .entry-title {
    padding: .5rem;
    font-size: 1.625rem;
    color: #000;
    background: #FFAA45;
}

.single-main .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-block: 1rem 1.5rem;
}

.kat-datum--single {
    margin-block-end: 2rem;
}

.naziv-kategorije--single {
  font-size: 1.125rem;
  padding: 0.2rem 0.4rem;
  background: #FFAA45;
  font-weight: 700;
}

.single-sidebar {
  background: #1246FF;
  border: 2px solid #FFAA45;
  padding: 1.25rem;
  border-radius: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .single-sidebar {
    display: none;
  }
  .single-main {
    width: 100%;
  }
}

.single-sidebar hr {
  --bs-border-width: 2px;
  margin-block: 2rem;
  color: #fff;
}
.recent-posts h3,
.categories-list h3 {
  font-size: 1.125rem;
  padding: 0.6rem;
  background: #FFAA45;
  color: #000;
}

.recent-post-item .recent-post-date {
  font-weight: 700;
}

/*************************/
/* Single Post navigation */
/*************************/
.single-main .post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: 3.5rem;
}

.single-main .post-navigation .nav-previous a,
.single-main .post-navigation .nav-next a {
    text-decoration: underline;
    text-decoration-color: #FFAA45;
    padding: .3rem;
}

.single-main .post-navigation .nav-previous a:focus,
.single-main .post-navigation .nav-next a:focus {
    background: #FFAA45;
}

/***********************/
/* CONTACT page */
/***********************/
.contact-hero {
  display: grid;
  place-items: center;
  place-content: center;
  height: 40vh;
}
@media (max-width: 767px) {
  .contact-hero {
    height: 0;
    padding-block: 25% 10%;
  }
}
.contact-hero h1 {
  font-size: clamp(1.875rem, -1.9511rem + 7.971vw, 4.625rem);
  font-weight: 800;
  color: #FFAA45;
}

.skip-to-main-content-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  
  /* Kada postane vidljiv */
  background-color: #000;
  color: #fff;
  z-index: 9999;
}

.skip-to-main-content-link:focus {
  /* Resetovanje sakrivanja na fokus */
  width: auto;
  height: auto;
  padding: 1em 1.5em;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  
  /* Pozicioniranje na sredinu ekrana */
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  border: 2px solid #fff; /* Dodatni kontrast za 2026 standard */
  outline: 3px solid #000;
}

#main:focus {
    outline: none;
}

/*****************************/
/* WEBINAR page */
/****************************/
.flyer-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(180, 65%, 45%) 0%, hsl(180, 65%, 45%) 50%, hsl(180, 50%, 35%) 100%);
}

.badge-custom {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 8px 24px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-custom p {
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.flyer-container h1 {
    color: white;
    font-size: 3rem;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.divider {
    height: 4px;
    width: 128px;
    background: hsl(45, 90%, 55%);
}

.flyer-container .zakonska-obaveza {
    font-weight: 700;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 576px) {
    .flyer-container .zakonska-obaveza {
        font-size: 1.125rem;
    }
}

.date-time--box {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 2rem;
}

.date-time--right-column, .date-time--left-column {
    gap: 3rem;
}

.icon-custom {
    width: 2.5rem;
    height: 2.5rem;
    stroke: hsl(180, 65%, 45%);
}

@media (max-width: 576px) {
    .icon-custom {
        width: 2rem;
        height: 2rem;
    }
}

.date-time {
    font-size: 1.875rem;
    font-weight: 900;
    color: hsl(180, 65%, 45%);
}

@media (max-width: 576px) {
    .date-time {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.divider-vertical {
    width: 1px;
    height: 80px;
    background: hsl(180, 20%, 85%);
}

.devider-horizontal {
    height: 1px;
    width: 100%;
    background: hsl(180, 20%, 85%);
}

a.btn-custom,
a.btn-green-custom {
    display: inline-block;
    margin: 0 auto;
    background: rgb(244, 192, 37);
    color: rgb(13, 63, 63);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px;
    text-decoration: none;
    transition: transform 0.2s;
}

a.btn-custom:hover,
a.btn-green-custom:hover {
    transform: scale(1.05);
}

a.btn-green-custom {
    background: rgb(40, 189, 189) !important;
    color: #fff !important;
}
.intro-section,
.benefits-section, 
.learn-section {
    max-width: 800px !important;
    margin: 0 auto;
}

.bb-responsive {
    border-bottom-width: 2px !important;
    border-bottom-color: hsl(180, 10%, 90%);
}

@media (min-width: 576px) {
    .bb-responsive {
        border-bottom-width: 4px !important;
    }
}

.benefits-section {
    padding: 40px 48px;
    background: padding: 40px 48px;
    background: hsl(180, 10%, 95%);
}

.benefits-section h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    color: hsl(180, 65%, 45%);
}

.benefits-list {
    display: grid;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-item.yellow-ring {
  background: rgba(255, 200, 0, 0.1) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
  border: 2px solid hsl(45, 90%, 55%) !important;
}

.benefit-item.yellow-ring p {
    font-weight: 700 !important;
    color: hsl(45, 90%, 35%) !important;
}

.icon-small {
    width: 24px;
    height: 24px;
}

.stat-callout p,
.stat-inner p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.stat-callout {
    background: linear-gradient(90deg, hsl(180, 65%, 45%) 0%, hsl(180, 50%, 35%) 100%);
    color: white;
    border-left: 8px solid hsl(45, 90%, 55%);
}

.stat-callout > p:nth-of-type(1) {
    font-size: 18px;
    font-weight: 700;
}

.stat-inner {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}


.stat-inner p:nth-of-type(1) {
    font-size: 20px;
    font-weight: 900;
}
/* Learn Section */

.learn-section h2,
.bio-section h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    color: hsl(180, 65%, 45%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.learn-list {
    display: grid;
    gap: 0.75rem;
}

.learn-item {
    padding: 0.75rem;
}

.learn-item p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.number-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsl(180, 65%, 45%);
    font-weight: 900;
    font-size: 18px;
}


/* BIO- section */
.bio-section {
    max-width: 800px !important;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(180, 10%, 95%) 0%, hsl(180, 10%, 92%) 100%);
    border-top: 4px solid hsl(180, 65%, 45%);
}

.bio-para {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.bio-para:nth-of-type(1) span {
    color: hsl(180, 65%, 45%);
}

.bio-para:nth-of-type(2) span {
    color: hsl(45, 90%, 35%);
}

.bio-para:nth-of-type(2) {
    border-left-color: hsl(45, 90%, 55%) !important;
}

.bio-para:nth-of-type(1) {
    border-left-color: hsl(180, 65%, 45%) !important;
}

.stat-card {
    background: linear-gradient(135deg, hsl(180, 65%, 45%) 0%, hsl(180, 65%, 40%) 100%);
    color: white;
}

.stats-grid .stat-card.yellow {
    background: linear-gradient(135deg, hsl(45, 90%, 55%) 0%, hsl(45, 90%, 50%) 100%);
}


.stat-card .display-4 {
    font-size: 36px;
    font-weight: 700;
}

.icon-large {
    width: 3.5rem;
    height: 3.5rem;
}

.client-list .client-list--heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    color: hsl(180, 65%, 45%);
    letter-spacing: 0.05em;
}
/********************/
/* Final CTA */
/*****************/
.final-cta {
    max-width: 800px !important;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(180, 65%, 45%) 0%, hsl(180, 65%, 45%) 50%, hsl(180, 50%, 35%) 100%);
}


.final-cta h2 {
    font-size: 36px;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.cta-bg-elements::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border: 4px solid white;
    border-radius: 50%;
}

.cta-bg-elements::after {
    content: '';
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    border: 4px solid white;
    border-radius: 50%;
}

.btn-warning-custom {
    display: inline-block;
    background: rgb(244, 192, 37);
    color: rgb(13, 63, 63);
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-warning-custom:hover {
    transform: scale(1.05);
}

/***************************/
/* Testimonials stranica */
/***************************/

.testimonials-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 25vh;
}

.testimonials-header h1 {
    font-size: clamp(1.875rem, -0.7337rem + 5.4348vw, 3.75rem);
    color: #FFAA45;
    font-weight: 700;
}


/******************************************/
/* Accessibility Statement stranica */
/************************************/
.accessibility-section {
    margin-bottom: 4rem;
}

.accessibility-section__title {
    background-color: #FFAA45;
    color: #000000;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(1.75rem, -0.163rem + 3.9855vw, 3.125rem);
    padding: 0.625rem 1rem;
    margin-block-end: 20px;
}

.accessibility-list {
    /*list-style: initial;*/
}

.accessibility-list__item {
    color: #fff;
    padding-bottom: .5rem;
}


#accessibility-standards .accessibility-list__item i,
#feedback-contact .accessibility-list__item i,
#accessibility-testing .accessibility-list__item i {
    margin-right: .5rem;
    color: #0CC53E;
}

#feedback-contact .accessibility-contact-email a {
    display: inline-block;
    background-color: #3C66FA;
    font-size: 18px;
    padding: 0.625rem 1rem;
    margin: 1rem 0;
}


























