@import '../assets/fonts/roboto/roboto.css';
@import '../assets/fonts/inter/inter.css';
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-size: 16px;
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 10px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 36px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 30px;
  }
}
@media (max-width: 900px) {
  h1 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 20px;
  }
}
@media (max-width: 425px) {
  h1 {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  h1 {
    font-size: 16px;
  }
}

h2 {
  font-size: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  h2 {
    font-size: 22px;
  }
}

h4 {
  font-size: 18px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 14px;
  }
}

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

img {
  width: 100%;
}

input {
  outline: none;
  border: none;
  background: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
button,
area {
  font-size: 16px;
}
@media (max-width: 1280px) {
  input,
  button,
  area {
    font-size: calc(12px + 4 * (100vw - 425px) / 855);
  }
}

table {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-spacing: 0;
}
table td {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}

.breadcrumb {
  margin-top: 20px;
  margin-bottom: 50px;
  font-family: "Inter", sans-serif;
}
.breadcrumb a {
  color: #000;
  font-weight: 700;
}
.breadcrumb .active {
  color: #112B60;
}

@media (max-width: 500px) {
  .breadcrumb {
    margin-bottom: 30px;
  }
}
.pagination {
  margin-top: 50px;
  text-align: center;
  font-weight: 600;
  color: #000;
}
.pagination a {
  color: #898989;
}
.pagination a:hover {
  color: #000;
  text-decoration: underline;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.fic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.logo {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.logo img {
  width: 46px;
  height: 46px;
}
.logo span {
  max-width: 70%;
}

.top {
  background: #112B60;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  position: relative;
  z-index: 20;
}
.top__container {
  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;
}
.top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.top__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.top__lang a {
  padding: 8.75px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2);
  background: rgb(40, 74, 124);
  opacity: 0.6;
}
.top__lang a:hover {
  opacity: 1;
}
.top__lang .active {
  opacity: 1;
}
.top__visually {
  gap: 10px;
}
.top .burger {
  display: none;
  color: #FFF;
}
.top .burger svg {
  width: 2rem;
  height: 2rem;
}
.top .burger__menu {
  display: block;
}
.top .burger__cross {
  display: none;
}
.top .burger.show .burger__menu {
  display: none;
}
.top .burger.show .burger__cross {
  display: block;
}
@media (max-width: 1024) {
  .top {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .top .burger {
    display: block;
  }
}
@media (max-width: 480px) {
  .top__visually span {
    display: none;
  }
}

.header {
  padding-top: 15px;
  padding-bottom: 20px;
  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;
  gap: 10px;
}
.header__logo {
  color: #000;
}
.header__right {
  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;
  gap: 40px;
}
.header__contact .fic {
  gap: 10px;
  margin-bottom: 5px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-align: left;
}
.header__search {
  margin-left: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgb(209, 209, 209);
  padding: 13px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__input {
  min-width: 216px;
  font-size: 12px;
}
.header__submit {
  margin-left: 25px;
}
@media (max-width: 1024px) {
  .header__search {
    padding: 8px 7px;
  }
  .header__input {
    min-width: auto;
    font-size: 10px;
  }
  .header__right {
    gap: 10px;
  }
}
@media (max-width: 700px) {
  .header {
    display: grid;
    grid-template-columns: 1fr;
  }
  .header__logo {
    font-size: 14px;
  }
  .header__submit {
    margin-left: 0;
  }
  .header__right {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__input {
    font-size: 12px;
  }
  .header__search {
    margin-left: 0;
  }
}
@media (max-width: 425px) {
  .header__right {
    display: grid;
    grid-template-columns: auto auto;
  }
}

.nav {
  background: #112B60;
  padding: 17px 0;
  gap: 50px;
  font-size: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  gap: 50px;
}
.nav__logo {
  margin-top: 40px;
  display: none;
}
@media (max-width: 1024px) {
  .nav__ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: -100%;
    overflow: auto;
    opacity: 0;
    z-index: 10;
  }
  .nav .cross {
    display: block;
  }
  .nav.show {
    opacity: 1;
    top: 0;
  }
  .nav__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #FFF;
  }
  .nav__ul {
    display: block;
    text-align: center;
    margin-top: 100px;
  }
  .nav__item {
    margin-bottom: 10px;
  }
}

.dropdown {
  position: relative;
  cursor: pointer;
}
.dropdown li {
  text-transform: none;
}
.dropdown-title {
  display: grid;
  grid-template-columns: auto 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
}
.dropdown-title svg {
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.dropdown-title.first svg path {
  fill: #BDBABA;
}
.dropdown.active .dropdown-title svg path {
  fill: #FFF;
}
.dropdown ul {
  list-style: none;
  position: absolute;
  width: auto;
  min-width: 100%;
  text-align: center;
  z-index: 11;
  background: #112B60;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #FFF;
}
.dropdown ul a {
  color: #fff;
}
.dropdown ul li {
  padding: 5px;
}
.dropdown ul li:hover {
  background: #607BB0;
}
.dropdown .show {
  visibility: visible;
  opacity: 1;
}
.dropdown .show > .dropdown-title svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dropdown > ul {
  left: 0;
  top: auto;
}
.dropdown.pod > ul {
  top: 0;
  left: 100%;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(255, 255, 255, 0.4);
          box-shadow: 0px 5px 10px 2px rgba(255, 255, 255, 0.4);
}
.dropdown.pod .dropdown-title svg path {
  fill: #BDBABA;
}
.dropdown.pod .show > .dropdown-title svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.dropdown.pod.left > ul {
  top: -10%;
  left: auto;
  right: 100%;
}
@media (max-width: 768px) {
  .dropdown {
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    grid-template-columns: auto;
  }
  .dropdown ul {
    position: static;
    min-width: auto;
    display: none;
  }
  .dropdown ul li:hover {
    background: none;
  }
  .dropdown-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dropdown .show {
    display: block;
  }
  .dropdown .pod .show {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.footer {
  margin-top: 120px;
  background: #112B60;
  padding: 30px 0;
  color: #FFF;
  clear: left;
}
.footer__logo {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #FFF;
}
.footer__logo img {
  width: 46px;
  height: 46px;
}
.footer__logo span {
  max-width: 70%;
}
.footer__content {
  margin-top: 25px;
  border-top: 1px solid #FFF;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.footer__item {
  margin-bottom: 10px;
  display: block;
}
.footer__item svg {
  width: 17px;
  height: 17px;
}
.footer a.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__title {
  font-weight: 700;
}
.footer__metric img {
  width: auto;
  height: auto;
}
.footer__copyright {
  font-size: 14px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .footer__copyright {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */