* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

html, body {
  scroll-behavior: smooth; }

body {
  line-height: 1; }

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit; }

a {
  text-decoration: none; }

.wrap {
  width: 90vw;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px; }
  @media (max-width: 991px) {
    .wrap {
      padding: 0; } }
  @media (max-width: 767px) {
    .wrap {
      margin: 0 auto;
      width: 100%;
      padding: 0 15px; } }

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.italic {
  font-style: italic; }

body {
  font-family: 'Ubuntu', 'Helvetica', Courier;
  font-weight: normal;
  font-style: normal; }

a, button {
  font-family: 'Ubuntu', 'Courier New', Courier, monospace; }

h1 {
  font-size: 70px;
  font-weight: 700; }
  @media (max-width: 1730px) {
    h1 {
      font-size: 55px; } }
  @media (max-width: 991px) {
    h1 {
      font-size: 40px; } }
  @media (max-width: 767px) {
    h1 {
      font-size: 26px; } }

h2 {
  font-size: 50px;
  font-weight: 600; }
  @media (max-width: 1730px) {
    h2 {
      font-size: 44px; } }
  @media (max-width: 991px) {
    h2 {
      font-size: 34px; } }
  @media (max-width: 767px) {
    h2 {
      font-size: 30px; } }

h3 {
  font-size: 36px;
  font-weight: 500; }
  @media (max-width: 1730px) {
    h3 {
      font-size: 22px; } }
  @media (max-width: 767px) {
    h3 {
      font-size: 26px; } }

h4 {
  font-size: 28px;
  font-weight: 500; }
  @media (max-width: 767px) {
    h4 {
      font-size: 24px; } }

.orange-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #d02f06;
  color: #fff;
  padding: 16px 32px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 8px;
  -webkit-transition: background 0.5s ease-in;
  transition: background 0.5s ease-in; }
  @media (max-width: 1730px) {
    .orange-btn {
      font-size: 22px; } }
  .orange-btn:hover {
    -webkit-transform: scale(0.99);
            transform: scale(0.99);
    background: linear-gradient(120deg, #2196f3, transparent) #05a8d1; }

.header {
  position: fixed;
  top: 0px;
  z-index: 1;
  width: 100%;
  border-bottom: gray 1px solid;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear; }
  .header.active {
    background-color: #0a0a0a; }

.header--bio {
  background-color: #0a0a0a; }

.header-logo {
  width: 250px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear; }
  .header-logo.active {
    width: 170px; }
  @media (max-width: 767px) {
    .header-logo {
      width: 130px; }
      .header-logo.active {
        width: 100px; } }

.header-img {
  max-width: 100%; }
  @media (max-width: 767px) {
    .header-img {
      padding: 6px 0 4px 0; } }

@media (max-width: 767px) {
  .nav {
    display: block;
    z-index: 10;
    position: absolute;
    background-color: #d02f06;
    border-bottom: solid 2px grey;
    padding: 50px 20px;
    top: 56px;
    left: 0;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translateX(1200px);
            transform: translateX(1200px);
    -webkit-transition: top 0.5s linear, -webkit-transform 0.7s ease-in-out;
    transition: top 0.5s linear, -webkit-transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out, top 0.5s linear;
    transition: transform 0.7s ease-in-out, top 0.5s linear, -webkit-transform 0.7s ease-in-out; }
    .nav.active {
      top: 45px; } }

.nav.header__hamburger--open {
  -webkit-transform: translateX(0px);
          transform: translateX(0px); }

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  list-style: none; }
  @media (max-width: 991px) {
    .nav__list {
      gap: 15px; } }
  @media (max-width: 767px) {
    .nav__list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 25px; } }

.nav__item {
  position: relative;
  padding: 35px 0px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  font-size: 25px; }
  .nav__item.active {
    padding: 25px 0;
    font-size: 20px; }
  @media (min-width: 767px) {
    .nav__item:hover .nav__submenu {
      display: block; } }
  @media (max-width: 767px) {
    .nav__item:hover .nav__submenu {
      right: 0px; } }
  @media (max-width: 1350px) {
    .nav__item {
      font-size: 19px; } }
  @media (max-width: 767px) {
    .nav__item {
      padding: 0 0 20px 10px;
      font-size: 18px;
      border-bottom: solid 2px grey;
      margin-bottom: 10px; }
      .nav__item.active {
        padding: 0 0 20px 10px;
        font-size: 18px; } }

.nav-link,
.nav__link--lang {
  color: #fff;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .nav-link:hover,
  .nav__link--lang:hover {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
    color: #d02f06; }
    @media (max-width: 767px) {
      .nav-link:hover,
      .nav__link--lang:hover {
        color: #05a8d1; } }

.nav__submenu {
  position: absolute;
  display: none;
  padding: 20px 30px;
  border-radius: 7px;
  background-color: #fff;
  list-style: none;
  text-align: center;
  top: 95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid gray;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear; }
  .nav__submenu.active {
    top: 70px; }
    @media (max-width: 767px) {
      .nav__submenu.active {
        top: 5%; } }
  @media (max-width: 767px) {
    .nav__submenu {
      left: unset;
      top: 5%;
      padding: 10px 15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      right: -1200px;
      border-radius: 7px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 15px; } }

.nav__submenu-item {
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    .nav__submenu-item {
      margin-bottom: 0px; } }
  .nav__submenu-item:last-child {
    margin-bottom: 0px; }

.nav__submenu-link {
  color: #000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: max-content;
  display: inline-block;
  font-size: 20px;
  line-height: 1.1;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .nav__submenu-link:hover {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
    color: #d02f06; }

.nav__submenu-img {
  max-width: 50px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .nav__submenu-img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  @media (max-width: 991px) {
    .nav__submenu-img {
      max-width: 35px; } }

.header__hamburger {
  display: none;
  background-color: transparent; }
  .header__hamburger.header__hamburger--open .header__hamburger-line {
    height: 0; }
    .header__hamburger.header__hamburger--open .header__hamburger-line::before {
      top: 0px;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .header__hamburger.header__hamburger--open .header__hamburger-line::after {
      top: 0px;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
  @media (max-width: 767px) {
    .header__hamburger {
      position: relative;
      display: block;
      width: 40px;
      height: 40px; } }

.header__hamburger-line {
  background-color: #fff;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  right: 0; }
  .header__hamburger-line::before, .header__hamburger-line::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    background-color: #fff;
    -webkit-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
    height: 3px; }
  .header__hamburger-line::before {
    top: 10px;
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  .header__hamburger-line::after {
    bottom: 10px; }

.hero {
  position: relative;
  padding: 300px 0 150px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-image: url(../images/Naslovna_velika.webp);
  background-color: #1d1d1dde;
  background-blend-mode: multiply;
  min-height: 100vh; }
  @media (max-width: 1920px) {
    .hero {
      background-image: url(../images/Naslovna_srednja1920.webp); } }
  @media (max-width: 1730px) {
    .hero {
      padding: 200px 0 100px; } }
  @media (max-width: 991px) {
    .hero {
      background-image: url(../images/Naslovna_mala640.webp);
      padding: 180px 0 100px; } }
  @media (min-width: 767px) {
    .hero {
      background-attachment: fixed; } }
  @media (max-width: 767px) {
    .hero {
      padding: 200px  0 80px;
      min-height: -webkit-fit-content;
      min-height: -moz-fit-content;
      min-height: fit-content; } }

.hero-flex {
  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; }

.hero__title {
  color: #fff;
  text-align: center;
  padding: 0 50px;
  margin-bottom: 100px;
  line-height: 1.2; }
  @media (max-width: 1730px) {
    .hero__title {
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .hero__title {
      margin-bottom: 50px;
      padding: 0; } }

.hero__btn {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .hero__btn {
      font-size: 18px; } }

.arrow-container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 40px; }
  @media (max-width: 767px) {
    .arrow-container {
      display: none; } }

.arrow-down {
  font-size: 50px;
  color: #fff;
  z-index: 100;
  -webkit-animation: scroll 2s infinite ease;
          animation: scroll 2s infinite ease; }

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  65% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  65% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

.hero-list {
  list-style: none; }

.services {
  background-color: #e9e9e9;
  padding: 100px 0; }
  @media (max-width: 767px) {
    .services {
      padding: 50px 0; } }

.services__title {
  text-align: center;
  margin-bottom: 100px; }
  @media (max-width: 1730px) {
    .services__title {
      margin-bottom: 80px; } }
  @media (max-width: 767px) {
    .services__title {
      margin-bottom: 50px; } }

.services__box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 30px; }
  @media (max-width: 991px) {
    .services__box-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.services__box {
  background-color: white;
  border-radius: 8px;
  padding: 20px 30px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 1350px) {
    .services__box {
      padding: 20px; } }
  @media (max-width: 991px) {
    .services__box {
      padding: 0; } }
  @media (max-width: 767px) {
    .services__box {
      padding-bottom: 20px;
      gap: 20px; } }

.services__box-title {
  display: block;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: bold; }
  @media (max-width: 1350px) {
    .services__box-title {
      font-size: 24px; } }
  @media (max-width: 991px) {
    .services__box-title {
      font-size: 28px;
      margin-bottom: 0; } }
  @media (max-width: 767px) {
    .services__box-title {
      margin-bottom: 15px;
      font-size: 24px; } }

.services__box::after {
  content: "";
  background-color: #d02f06;
  height: 100%;
  width: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-radius: 8px; }

.services__box-text {
  font-size: 22px;
  line-height: 110%;
  min-height: 73px; }
  @media (max-width: 1350px) {
    .services__box-text {
      font-size: 18px; } }
  @media (max-width: 991px) {
    .services__box-text {
      font-size: 22px;
      min-height: auto; } }
  @media (max-width: 767px) {
    .services__box-text {
      text-align: center;
      margin-bottom: 0;
      font-size: 18px; } }

.services__box-img {
  width: 100%; }
  @media (max-width: 991px) {
    .services__box-img {
      -o-object-fit: contain;
         object-fit: contain;
      width: 50%; } }
  @media (max-width: 767px) {
    .services__box-img {
      width: 100%; } }

.services__btn {
  font-size: 20px;
  margin-top: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }
  @media (max-width: 1730px) {
    .services__btn {
      font-size: 16px;
      padding: 10px 15px; } }
  @media (max-width: 991px) {
    .services__btn {
      margin-top: 0;
      display: block;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content; } }

@media (max-width: 991px) {
  .services__btn--laptop {
    display: none; } }

@media (max-width: 767px) {
  .services__btn--laptop {
    display: block;
    -ms-flex-item-align: center;
        align-self: center; } }

.services__btn--tablet {
  display: none; }
  @media (max-width: 991px) {
    .services__btn--tablet {
      display: block;
      -ms-flex-item-align: center;
          align-self: center; } }
  @media (max-width: 767px) {
    .services__btn--tablet {
      display: none; } }

.services__link {
  color: #fff; }

.services__box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px; }
  @media (max-width: 991px) {
    .services__box-flex {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  @media (max-width: 767px) {
    .services__box-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;
      gap: 0px; } }

.flex-left {
  margin-bottom: 5px; }
  @media (max-width: 991px) {
    .flex-left {
      width: 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;
      gap: 20px;
      padding: 20px; } }
  @media (max-width: 767px) {
    .flex-left {
      gap: 0px;
      padding: 25px 10px 25px 25px;
      width: 100%;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.service-details {
  padding: 100px 0px;
  background-color: rgba(74, 250, 235, 0.014); }
  @media (max-width: 767px) {
    .service-details {
      padding: 50px 0; } }

.service-details:nth-child(even) {
  background-color: #e9e9e9; }

.service-details__title {
  margin-bottom: 80px;
  text-align: center;
  color: #d02f06; }
  @media (max-width: 1730px) {
    .service-details__title {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .service-details__title {
      margin-bottom: 40px; } }

.service-details__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #fff; }
  @media (max-width: 991px) {
    .service-details__top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.service-details__top-text {
  width: 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;
  padding: 20px; }
  @media (max-width: 991px) {
    .service-details__top-text {
      width: 100%;
      padding-top: 35px;
      padding-bottom: 35px; } }

.service-details__top-img {
  width: 50%;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain; }
  @media (max-width: 991px) {
    .service-details__top-img {
      width: 100%;
      max-height: 70%; } }

.service-details__subtitle {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600; }
  @media (max-width: 1730px) {
    .service-details__subtitle {
      font-size: 26px;
      margin-bottom: 15px; } }
  @media (max-width: 1350px) {
    .service-details__subtitle {
      font-size: 22px; } }

.service-details__text {
  font-size: 25px;
  line-height: 1.2; }
  @media (max-width: 1730px) {
    .service-details__text {
      font-size: 22px;
      line-height: 1.1; } }
  @media (max-width: 1350px) {
    .service-details__text {
      font-size: 18px; } }

.list-container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px; }

.list-box {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 20px 15px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 7px;
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 49%;
          flex: 1 1 49%;
  cursor: pointer;
  -webkit-transition: all 0.3 ease-in;
  transition: all 0.3 ease-in; }
  @media (max-width: 767px) {
    .list-box {
      padding: 10px 10px; } }

.list-box__title {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 10px 0; }
  @media (max-width: 1350px) {
    .list-box__title {
      font-size: 22px; } }
  @media (max-width: 767px) {
    .list-box__title {
      margin-bottom: 10px;
      font-size: 20px; } }

.list-box__title-arrow {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-left: 10px;
  color: #d02f06; }

.list-box__title-arrow.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #05a8d1; }

.list-box__item {
  margin: 20px 15px;
  font-size: 18px; }
  @media (max-width: 1350px) {
    .list-box__item {
      font-size: 16px;
      margin: 10px; } }

.list-box__sublist-title {
  font-size: 21px;
  list-style: none;
  margin-top: 10px; }
  @media (max-width: 1350px) {
    .list-box__sublist-title {
      font-size: 20px; } }

.list-box__ul {
  padding-left: 10px;
  max-height: 0px;
  -webkit-transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s;
  transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s;
  overflow: hidden; }
  .list-box__ul.active {
    max-height: 9999px;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
            transition-timing-function: cubic-bezier(0.5, 0, 1, 0); }

.list-box__ul--p {
  font-size: 18px; }

.list-box__ul--flex {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

@media (max-width: 1350px) {
  .list-box--special {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; } }

.about-us {
  padding: 100px 0; }
  @media (max-width: 767px) {
    .about-us {
      padding: 50px 0; } }

.about-us__title {
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 50px;
  position: relative;
  background-color: #000;
  color: #fff; }
  @media (max-width: 767px) {
    .about-us__title {
      margin-bottom: 40px; } }

.about-us__title-accent {
  color: #d02f06;
  display: inline-block; }

.about-us__title-icon {
  margin-left: 30px; }

.about-us__txt-container {
  margin-bottom: 75px; }
  @media (max-width: 1350px) {
    .about-us__txt-container {
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .about-us__txt-container {
      padding: 0 10px;
      margin-bottom: 35px; } }

.about-us__text {
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 1.05; }
  .about-us__text:last-child {
    margin-bottom: 25px; }
  @media (max-width: 767px) {
    .about-us__text {
      font-size: 18px; } }

.about-us__associates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 130px;
  margin-bottom: 50px; }
  @media (max-width: 1350px) {
    .about-us__associates {
      gap: 50px; } }
  @media (max-width: 767px) {
    .about-us__associates {
      -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; } }

.about-us__associates-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  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;
  border-radius: 30%;
  overflow: hidden; }

.about-us__associates-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  margin-bottom: 20px; }

.about-us__associate-details {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.about-us__associate-name {
  font-size: 22px;
  font-weight: 600;
  display: block; }
  @media (max-width: 767px) {
    .about-us__associate-name {
      font-size: 20px; } }

.about-us__asscoiate-ln {
  font-size: 21px;
  color: #000; }
  .about-us__asscoiate-ln:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    color: #1d1d1d; }
  @media (max-width: 767px) {
    .about-us__asscoiate-ln {
      font-size: 19px; } }

.linkedin-icon {
  margin-left: 12px;
  font-size: 21px;
  color: #d02f06; }

.about-us__associate-bio {
  display: block;
  font-size: 21px;
  font-weight: 400;
  color: #000; }
  .about-us__associate-bio:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    color: #1d1d1d; }
  @media (max-width: 767px) {
    .about-us__associate-bio {
      font-size: 19px; } }

.about-us__associate-bio-icon {
  margin-left: 12px;
  color: #d02f06; }

.acordion {
  padding: 100px 0;
  background-color: #e9e9e9; }
  @media (max-width: 767px) {
    .acordion {
      padding: 50px 0; } }

.acordion__title {
  font-weight: 700;
  color: #05a8d1;
  margin-bottom: 80px;
  text-align: center; }

.acordion__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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 28px 20px 35.5px 0;
  position: relative;
  border-top: 2px solid rgba(0, 0, 0, 0.2); }
  @media (max-width: 767px) {
    .acordion__item {
      padding: 17px 20px 10px 0;
      gap: 15px; } }
  .acordion__item:last-child {
    border-bottom: 2px rgba(0, 0, 0, 0.2) solid; }

.acordion__heading {
  font-weight: 700;
  color: #1d1d1d;
  font-size: 34px; }
  @media (max-width: 1730px) {
    .acordion__heading {
      font-size: 28px; } }
  @media (max-width: 991px) {
    .acordion__heading {
      padding-right: 40px;
      font-size: 24px; } }
  @media (max-width: 991px) {
    .acordion__heading {
      padding-right: 40px;
      font-size: 20px; } }

.acordion__button {
  cursor: pointer;
  position: relative; }
  .acordion__button::before, .acordion__button::after {
    position: absolute;
    right: 0;
    color: #d02f06;
    font-size: 60px;
    top: 50%;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%); }
  .acordion__button::before {
    content: "+"; }
  .acordion__button::after {
    content: "-";
    display: none; }

.acordion__content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in; }

.acordion__item.active .acordion__content {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 15px 0px 0;
  opacity: 1;
  height: auto; }
  @media (max-width: 991px) {
    .acordion__item.active .acordion__content {
      padding-right: 0; } }
  @media (max-width: 767px) {
    .acordion__item.active .acordion__content {
      padding: 10px 0 10px 0; } }

.acordion__item.active .acordion__button::before {
  display: none; }

.acordion__item.active .acordion__button::after {
  display: block; }

.acordion__text {
  font-size: 24px;
  line-height: 28px;
  color: #1d1d1d;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .acordion__text {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 22px; } }
  .acordion__text:last-child {
    margin-bottom: 0; }

.acordion__text--accent {
  color: #d02f06;
  text-decoration: underline;
  font-weight: 700; }

.contact {
  padding: 100px 0;
  background-color: rgba(74, 250, 235, 0.014); }
  @media (max-width: 767px) {
    .contact {
      padding: 50px 0; } }

.contact__title {
  margin-bottom: 80px;
  color: #d02f06;
  text-align: center; }
  @media (max-width: 1730px) {
    .contact__title {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .contact__title {
      margin-bottom: 40px; } }

.contact-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 130px;
  padding: 40px 20px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2); }
  @media (max-width: 1730px) {
    .contact-flex {
      gap: 100px; } }
  @media (max-width: 1350px) {
    .contact-flex {
      gap: 50px; } }
  @media (max-width: 991px) {
    .contact-flex {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 40px; } }

.contact__text-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%; }

.contact__text {
  display: block;
  color: #1d1d1d;
  font-size: 31px;
  line-height: 1.1;
  margin-bottom: 10px; }
  @media (max-width: 1350px) {
    .contact__text {
      font-size: 26px; } }
  @media (max-width: 991px) {
    .contact__text {
      font-size: 24px; } }
  @media (max-width: 767px) {
    .contact__text {
      font-size: 20px;
      text-align: center; } }

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%; }
  @media (max-width: 767px) {
    .contact__form {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      gap: 20px; } }

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px; }
  @media (max-width: 991px) {
    .contact__row {
      gap: 30px; } }
  @media (max-width: 767px) {
    .contact__row {
      -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;
      gap: 20px;
      width: 100%; } }

.contact__input {
  width: 100%;
  padding: 15px 20px 18px;
  font-size: 24px;
  line-height: 25px;
  outline: none;
  border: none;
  border-width: 0 0 2px 0;
  border-style: solid;
  -o-border-image: linear-gradient(to right, #05a8d1, #5390e5, #b066c9, #e12a79, #d02f06) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#05a8d1), color-stop(#5390e5), color-stop(#b066c9), color-stop(#e12a79), to(#d02f06)) 1;
     border-image: linear-gradient(to right, #05a8d1, #5390e5, #b066c9, #e12a79, #d02f06) 1;
  max-width: 600px; }
  .contact__input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px; }
  .contact__input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px; }
  .contact__input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px; }
  .contact__input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px; }
  .contact__input::placeholder {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px; }
  @media (max-width: 991px) {
    .contact__input {
      font-size: 20px;
      line-height: 20px;
      padding: 18px 11px; } }
  @media (max-width: 767px) {
    .contact__input {
      width: 80%;
      font-size: 16px;
      line-height: 16px;
      padding: 10px 10px; } }

.contact__message {
  background-color: #fff;
  color: #000;
  font-size: 24px;
  line-height: 25px;
  border-width: 2px;
  border-style: solid;
  -o-border-image: linear-gradient(to right, #05a8d1, #5390e5, #b066c9, #e12a79, #d02f06) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#05a8d1), color-stop(#5390e5), color-stop(#b066c9), color-stop(#e12a79), to(#d02f06)) 1;
     border-image: linear-gradient(to right, #05a8d1, #5390e5, #b066c9, #e12a79, #d02f06) 1;
  outline: none;
  padding: 18px 20px;
  min-height: 180px;
  margin-top: 20px; }
  .contact__message::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .contact__message::-moz-placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .contact__message:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .contact__message::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .contact__message::placeholder {
    color: rgba(0, 0, 0, 0.6); }
  @media (max-width: 991px) {
    .contact__message {
      font-size: 20px;
      line-height: 20px;
      padding: 18px 11px; } }
  @media (max-width: 767px) {
    .contact__message {
      font-size: 16px;
      line-height: 16px;
      min-height: 160px;
      padding: 16px 10px;
      width: 80%; } }

.contact__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 25px; }

.contact__address-text {
  display: block;
  color: #1d1d1d;
  font-size: 28px;
  line-height: 1.1;
  margin: 10px 10px; }
  @media (max-width: 1350px) {
    .contact__address-text {
      font-size: 26px; } }
  @media (max-width: 991px) {
    .contact__address-text {
      font-size: 24px; } }
  @media (max-width: 767px) {
    .contact__address-text {
      font-size: 20px;
      text-align: center; } }

.bio__address-number,
.bio__address-email {
  color: #05a8d1;
  display: block;
  font-size: 25px;
  font-weight: 700; }
  .bio__address-number:hover,
  .bio__address-email:hover {
    color: #d02f06;
    -webkit-transform: scale(1.01);
            transform: scale(1.01); }
  @media (max-width: 991px) {
    .bio__address-number,
    .bio__address-email {
      font-size: 22px; } }
  @media (max-width: 767px) {
    .bio__address-number,
    .bio__address-email {
      font-size: 18px; } }

.footer {
  background-color: #e9e9e9; }

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.footer__logo {
  padding: 6px 0; }

.footer__logo-img {
  width: 200px; }
  @media (max-width: 767px) {
    .footer__logo-img {
      width: 120px; } }

.footer-nav__list {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 20px; }
  @media (max-width: 767px) {
    .footer-nav__list {
      gap: 10px;
      font-size: 16px; } }

.footer-nav-link {
  color: #000; }
  .footer-nav-link:hover {
    color: #d02f06; }

.footer-nav__item {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .footer-nav__item:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }

.bio {
  padding: 200px 0 0; }
  @media (max-width: 767px) {
    .bio {
      padding: 120px 0 0; } }

.bio-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 30px 20px; }
  @media (max-width: 1730px) {
    .bio-flex {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 1730px) and (max-width: 1350px) {
    .bio-flex {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  @media (max-width: 991px) {
    .bio-flex {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      padding: 20px 10px;
      gap: 30px; } }

.bio-flex__left {
  width: 50%;
  padding-right: 25px; }
  @media (max-width: 1730px) {
    .bio-flex__left {
      width: 60%;
      padding-right: 15px; } }
  @media (max-width: 1350px) {
    .bio-flex__left {
      width: 50%; } }
  @media (max-width: 991px) {
    .bio-flex__left {
      width: 100%;
      padding-right: 0px; } }

.bio__title {
  margin-bottom: 40px;
  text-align: center; }

.bio__text {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.05; }
  @media (max-width: 1730px) {
    .bio__text {
      font-size: 19px; } }

.bio-flex__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px; }
  @media (max-width: 1730px) {
    .bio-flex__right {
      width: 40%;
      padding-left: 15px; } }
  @media (max-width: 1350px) {
    .bio-flex__right {
      width: 50%; } }
  @media (min-width: 991px) {
    .bio-flex__right {
      border-left: 4px solid #d02f06; } }
  @media (max-width: 991px) {
    .bio-flex__right {
      width: 100%;
      padding-left: 0px; } }

.bio__img {
  width: 100%;
  border-radius: 30%;
  -o-object-fit: cover;
     object-fit: cover; }
  @media (min-width: 991px) {
    .bio__img {
      margin-bottom: 10px; } }

.bio__linkedIn {
  display: block;
  font-size: 22px;
  color: #d02f06;
  margin: 0 auto; }
  @media (max-width: 1350px) {
    .bio__linkedIn {
      font-size: 18px; } }
  .bio__linkedIn:hover {
    color: #05a8d1; }

.bio__linkedIn:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02); }
