@charset "UTF-8";
/* RESOLUTION SETTINGS START*/
/* COLORS =====================================*/
/*====================*/
html,
body {
  height: 100%;
}

body {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #1f3045;
  display: flex;
  flex-direction: column;
  margin: 0;
}

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

*:focus {
  outline: none;
}

ul {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}

a {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  background-color: #FFFFFF;
}

input[type=checkbox]:checked,
input[type=checkbox]:not(:checked),
input[type=radio]:checked,
input[type=radio]:not(:checked) {
  display: none;
}

input[type=checkbox]:checked + label,
input[type=checkbox]:not(:checked) + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 31px;
  min-height: 24px;
  min-width: 24px;
}
input[type=checkbox]:checked + label a,
input[type=checkbox]:not(:checked) + label a {
  color: #164C81;
}
input[type=checkbox]:checked + label a:hover,
input[type=checkbox]:not(:checked) + label a:hover {
  color: #C64F15;
}

input[type=checkbox]:checked + label:before,
input[type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background-color: #ffffff;
  margin-left: -31px;
  border: 1px solid #dfdfdf;
  -webkit-box-shadow: 0 0 8px -1px #dfdfdf inset;
  -moz-box-shadow: 0 0 8px -1px #dfdfdf inset;
  box-shadow: 0 0 8px -1px #dfdfdf inset;
}

input[type=checkbox]:checked + label:after,
input[type=checkbox]:not(:checked) + label:after {
  left: 5px;
  top: 5px;
  width: 11px;
  height: 6px;
  border-radius: 1px;
  border-left: 5px solid #C64F15;
  border-bottom: 5px solid #C64F15;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=radio]:checked + label,
input[type=radio]:not(:checked) + label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-left: 27px;
  height: 100%;
}
input[type=radio]:checked + label span,
input[type=radio]:not(:checked) + label span {
  display: flex;
  min-height: 20px;
  max-height: inherit;
  align-items: center;
}

input[type=radio]:checked + label:before,
input[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #ffffff;
  margin-left: -27px;
  border: 1px solid #dfdfdf;
  -webkit-box-shadow: 0 0 8px -1px #dfdfdf inset;
  -moz-box-shadow: 0 0 8px -1px #dfdfdf inset;
  box-shadow: 0 0 8px -1px #dfdfdf inset;
}

input[type=radio]:checked + label:after,
input[type=radio]:not(:checked) + label:after {
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #C64F15;
}

input[type=checkbox]:checked + label:after,
input[type=checkbox]:not(:checked) + label:after,
input[type=radio]:checked + label:after,
input[type=radio]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=checkbox]:not(:checked) + label:after,
input[type=radio]:not(:checked) + label:after {
  opacity: 0;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
  opacity: 1;
}

select + option {
  background-color: #ffffff;
}

button {
  border: unset;
}

.container {
  min-width: 320px;
  width: 100%;
  padding: 0 5px;
}
@media (min-width: 600px) {
  .container {
    padding: 0 10px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1280px;
    margin: 0 auto;
  }
}
@media (min-width: 1320px) {
  .container {
    padding: 0;
  }
}

.center {
  flex: 1;
}

.body-disable {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  color: #1f3045;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(4, 6, 38, 0.5);
}

.popup-window {
  -moz-user-select: none;
  -webkit-user-select: none;
  font-family: "Gotham Pro", sans-serif;
  position: relative;
  background-color: #f8f8f8;
  padding: 30px 30px 50px 30px;
  width: 90%;
  min-width: 320px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7%;
}
@media (min-width: 600px) {
  .popup-window {
    padding: 30px 40px 50px 40px;
    margin-top: 10%;
    width: 70%;
  }
}
.popup-window h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .popup-window h3 {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  .popup-window h3 {
    font-size: 22px;
  }
}
.popup-window .close-elem {
  position: absolute;
  right: 0;
  margin-top: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.popup-window .close-elem:before {
  font-size: 25px;
}

.try-now-form {
  height: min-content;
  max-width: 600px;
}
.try-now-form select,
.try-now-form input[type=email] {
  font-weight: 400;
  font-size: 13px;
  width: 100%;
  max-width: 500px;
  height: 36px;
  padding: 5px 10px;
  border: 1px solid #f1f1f1;
}
@media (min-width: 600px) {
  .try-now-form select,
.try-now-form input[type=email] {
    font-size: 14px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .try-now-form select,
.try-now-form input[type=email] {
    font-size: 15px;
  }
}
.try-now-form label.question-title {
  line-height: 26px;
}
.try-now-form a:hover {
  color: #C64F15;
}
.try-now-form .close-elem {
  position: absolute;
  right: 0;
  margin-top: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.try-now-form .close-elem:before {
  font-size: 25px;
}
.try-now-form .question-title {
  margin-top: 25px;
  margin-bottom: 3px;
  color: #6f6e6e;
  padding-left: 2px;
  font-size: 13px;
}
.try-now-form .question-field {
  max-width: 600px;
  width: 100%;
  min-height: 36px;
}
@media (min-width: 600px) {
  .try-now-form .question-field {
    min-height: 40px;
  }
}
.try-now-form .question-checkbox {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 600px) {
  .try-now-form .question-checkbox {
    font-size: 14px;
  }
}
@media (min-width: 1280px) {
  .try-now-form .question-checkbox {
    font-size: 15px;
  }
}
.try-now-form .btn-orange {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.hide-element {
  display: none;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}

.flex-element {
  display: flex;
}

.stretch-elem {
  justify-content: space-between;
}

.bold-middle {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.bolder {
  font-weight: 800;
}

.orange {
  color: #C64F15;
}

.blue {
  color: #164C81;
}

.light-grey {
  color: #dfdfdf;
}

.capitalize {
  text-transform: capitalize;
}

.left-arrow {
  display: inline-block;
  position: relative;
  top: 1px;
}
.left-arrow::before {
  font-family: "fontello";
  font-weight: normal;
  font-style: normal;
  content: "";
  font-size: 14px;
  padding-left: 10px;
}

.right-arrow {
  display: inline-block;
  position: relative;
  top: 1px;
}
.right-arrow::before {
  font-family: "fontello";
  font-weight: normal;
  font-style: normal;
  content: "";
  font-size: 14px;
  padding-right: 10px;
}

.down-arrow {
  display: inline-block;
  position: relative;
  top: 2px;
}
.down-arrow::before {
  font-family: "fontello";
  font-weight: normal;
  font-style: normal;
  content: "";
  font-size: 14px;
  padding-right: 10px;
}

.close-elem {
  display: inline-block;
  position: relative;
  top: 2px;
}
.close-elem::before {
  font-family: "fontello";
  font-weight: normal;
  font-style: normal;
  content: "";
  font-size: 14px;
  padding-right: 10px;
}

.checked:before {
  display: inline-block;
  width: 13px;
  height: 13px;
  content: "";
  background: url(../../images/icon/icon-checked-green.svg) center no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  .checked:before {
    width: 14px;
    height: 14px;
  }
}

.btn-orange,
.btn-blue {
  font-family: "Gotham Pro", sans-serif;
  padding: 0;
  min-width: 110px;
  width: max-content;
  height: 32px;
}
@media (min-width: 600px) {
  .btn-orange,
.btn-blue {
    min-width: 130px;
    height: 40px;
  }
}
.btn-orange a,
.btn-orange span,
.btn-blue a,
.btn-blue span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  padding: 0 20px;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-orange a:hover,
.btn-orange span:hover,
.btn-blue a:hover,
.btn-blue span:hover {
  cursor: pointer;
  font-weight: 600;
  background-color: #ffffff;
  letter-spacing: 1.5px;
  box-shadow: unset;
  padding: 0 17px;
}
@media (min-width: 600px) {
  .btn-orange a,
.btn-orange span,
.btn-blue a,
.btn-blue span {
    padding: 0 30px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .btn-orange a:hover,
.btn-orange span:hover,
.btn-blue a:hover,
.btn-blue span:hover {
    padding: 0 26px;
    letter-spacing: 1.5px;
  }
}

.btn-orange a,
.btn-orange span {
  background-color: #C64F15;
}
.btn-orange a:hover,
.btn-orange span:hover {
  color: #C64F15;
  border: 3px solid #C64F15;
}

.btn-blue a,
.btn-blue span {
  background-color: #164C81;
}
.btn-blue a:hover,
.btn-blue span:hover {
  color: #164C81;
  border: 3px solid #164C81;
}

.narrow-btn {
  font-family: "Gotham Pro", sans-serif;
  min-width: 130px;
  height: 26px;
  padding: 0 25px;
  background-color: #f8f8f8;
  text-align: center;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: #6f6e6e;
  box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.narrow-btn:hover {
  background-color: #eeeeee;
  font-weight: 600;
  color: #C64F15;
  letter-spacing: 1.5px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 600px) {
  .narrow-btn {
    height: 31px;
    font-size: 10px;
  }
}

.wide-btn {
  font-family: "Gotham Pro", sans-serif;
  display: block;
  min-width: 300px;
  width: 90%;
  height: 30px;
  font-size: 9px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  color: #6f6e6e;
  letter-spacing: 1px;
  word-spacing: 2px;
  font-weight: 500;
  background-color: #f8f8f8;
  box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.wide-btn:hover {
  background-color: #eeeeee;
  font-weight: 600;
  color: #C64F15;
  letter-spacing: 1.5px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 600px) {
  .wide-btn {
    min-width: unset;
    max-width: 1230px;
    height: 50px;
    font-size: 12px;
  }
}

.heading-orange {
  color: #C64F15;
  display: flex;
  align-items: center;
}
@media (min-width: 1280px) {
  .heading-orange {
    margin-left: 0;
  }
}

.heading__arrow {
  display: none;
}
@media (min-width: 1280px) {
  .heading__arrow {
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #C64F15;
    margin-right: 4px;
    margin-left: -1px;
  }
}

.heading__text {
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 600px) {
  .heading__text {
    font-size: 24px;
  }
}
@media (min-width: 1280px) {
  .heading__text {
    font-size: 25px;
  }
}

.logo-ascon-desktop::before {
  display: inline-block;
  content: "";
  background: url(../../images/logo/ascon-desktop.svg) center no-repeat;
  width: 134px;
  height: 42px;
  background-size: contain;
}

.logo-ascon-mobile::before {
  display: inline-block;
  content: "";
  background: url(../../images/logo/ascon-mobile.svg) center no-repeat;
  width: 108px;
  height: 30px;
  background-size: contain;
}

.logo-ascon::before {
  display: inline-block;
  content: "";
  background: url(../../images/logo/ascon-letter.svg) center no-repeat;
  background-size: contain;
}

.logo-kompas::before {
  display: block;
  content: "";
  background: url(../../images/logo/kompas.svg) center no-repeat;
  background-size: contain;
}

.logo-pilot::before {
  display: block;
  content: "";
  background: url(../../images/logo/pilot.svg) center no-repeat;
  background-size: contain;
}

.logo-pilot-white::before {
  display: block;
  content: "";
  background: url(../../images/logo/pilot-white.svg) center no-repeat;
  background-size: contain;
}

.logo-renga::before {
  display: block;
  content: "";
  background: url(../../images/logo/renga.svg) center no-repeat;
  background-size: contain;
}

.logo-c3d-labs::before {
  display: block;
  content: "";
  background: url(../../images/logo/c3d-labs.svg) center no-repeat;
  background-size: contain;
}

.page__header {
  position: relative;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  background-color: #6f6e6e;
  margin-left: -5px;
  margin-right: -5px;
}
@media (min-width: 600px) {
  .page__header {
    height: 170px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 1280px) {
  .page__header {
    margin-left: 0;
    margin-right: 0;
  }
}

.page__bkg {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100px;
  opacity: 0.95;
}
@media (min-width: 600px) {
  .page__bkg {
    max-width: 1280px;
    height: 170px;
  }
}

.page__name {
  z-index: 1;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-height: 78px;
}
@media (min-width: 600px) {
  .page__name {
    padding: 0 2%;
    max-height: 135px;
  }
}
@media (min-width: 1280px) {
  .page__name {
    padding: 0 25px;
  }
}
.page__name h1 {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 600px) {
  .page__name h1 {
    font-size: 25px;
    margin-top: 10px;
  }
}
@media (min-width: 1280px) {
  .page__name h1 {
    font-size: 30px;
  }
}
.page__name p {
  display: none;
  font-size: 13px;
  line-height: 150%;
  margin: 0;
  width: 95%;
  overflow: hidden;
}
@media (min-width: 600px) {
  .page__name p {
    display: block;
  }
}

.page__nav {
  display: flex;
  z-index: 1;
}
@media (min-width: 1280px) {
  .page__nav {
    margin-left: 0;
    margin-right: 0;
  }
}
.page__nav li {
  min-width: 79px;
  flex: 1;
  margin-right: 1px;
  height: 30px;
  background-color: rgba(80, 80, 80, 0.85);
  cursor: pointer;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.page__nav li:hover {
  background-color: #C64F15;
}
.page__nav li:active, .page__nav li:visited {
  background-color: rgba(80, 80, 80, 0.85);
}
@media (min-width: 600px) {
  .page__nav li {
    min-width: 140px;
    max-width: 180px;
    height: 35px;
  }
}
.page__nav a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0 10px;
  font-size: 9.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: unset;
}
@media (min-width: 600px) {
  .page__nav a {
    padding: 0 25px;
    font-size: 10px;
    word-spacing: 1px;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 1280px) {
  .page__nav a {
    font-size: 11px;
  }
}
.page__nav a span {
  display: none;
}
@media (min-width: 600px) {
  .page__nav a span {
    display: inline-block;
  }
}
.page__nav .active {
  background-color: #C64F15;
}
.page__nav .active:hover {
  cursor: default;
}

.action-box {
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #eeeeee;
  box-shadow: 0px -1px 5px -1px rgba(0, 0, 0, 0.2);
  margin-left: -10px;
  padding-top: 5px;
}
@media (min-width: 600px) {
  .action-box {
    padding: 0 5%;
    margin-left: -20px;
  }
}
@media (min-width: 1280px) {
  .action-box {
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    display: block;
    background-color: #f8f8f8;
    width: 330px;
    position: sticky;
    height: min-content;
    top: 10px;
    margin-left: auto;
    padding: 40px;
  }
}
.action-box h4 {
  display: none;
}
@media (min-width: 1280px) {
  .action-box h4 {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.action-box p {
  display: none;
}
@media (min-width: 1280px) {
  .action-box p {
    display: block;
    font-size: 13px;
    line-height: 150%;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}

.bx_pagination_bottom {
  color: #6f6e6e;
  font-size: 13px;
  padding: 0 10px;
}
.bx_pagination_bottom * {
  vertical-align: baseline;
}
.bx_pagination_bottom .bx_pagination_section_two {
  float: right;
  text-align: right;
}
.bx_pagination_bottom .bx_pg_section {
  display: inline-block;
  height: 30px;
  vertical-align: top;
  line-height: 30px;
}
.bx_pagination_bottom .bx_pagination_select_container {
  display: inline-block;
}
.bx_pagination_bottom .bx_pagination_select_container select {
  position: relative;
  margin: 2px 20px 2px 10px;
  padding: 1px 25px 3px 5px;
  height: 22px;
  outline: none;
  border: 1px solid #eeeeee;
  border-radius: 1px;
  background: #fff url(/local/templates/ascon_eng/images/components-img/select_arrow.png) no-repeat right center;
  color: #6f6e6e;
  font-size: 13px;
  line-height: 16px;
  resize: none;
  -webkit-appearance: none;
}
.bx_pagination_bottom .bx_pagination_page {
  white-space: nowrap;
  font-size: 13px;
}
.bx_pagination_bottom .bx_pagination_page ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.bx_pagination_bottom .bx_pagination_page li {
  display: inline-block;
  min-width: 22px;
  color: #6f6e6e;
  text-align: center;
  line-height: 22px;
}
.bx_pagination_bottom .bx_pagination_page li a {
  display: block;
  min-width: 22px;
  color: #6f6e6e;
  text-align: center;
  text-decoration: none;
  line-height: 22px;
}
.bx_pagination_bottom .bx_pagination_page li a:hover {
  color: #C64F15;
  font-weight: 500;
}
.bx_pagination_bottom .bx_pagination_page li.bx_active {
  border-radius: 3px;
  background: #f8f8f8;
  color: #999999;
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  font-size: 13px;
}
.bx_pagination_bottom .bx_pg_section.bx_pg_pagination_num {
  display: block;
}
.bx_pagination_bottom .bx_pg_section.bx_pg_show_col select {
  margin-right: 5px;
}
.bx_pagination_bottom .bx_wsnw {
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 1px;
}
.bx_pagination_bottom .bx_pagination_section_one, .bx_pagination_bottom .bx_pagination_section_two {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bx_pagination_bottom .bx_pagination_select_container {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bx_pagination_bottom .bx_pagination_select_container select {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bx_pagination_bottom .bx_pg_section, .bx_pagination_bottom .bx_pagination_page {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bx_pagination_bottom .bx_pg_section.bx_pg_pagination_num, .bx_pagination_bottom .bx_pg_section.bx_pg_show_col {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bx_pagination_bottom .bx_pg_text, .bx_pagination_bottom .bx_pg_section.pg_pagination_num .bx_pg_text {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@-moz-document url-prefix() {
  .bx_pagination_bottom .bx_pagination_select_container select {
    background: #fff !important;
    padding-right: 5px;
  }
}
/*3 */
@media (min-width: 480px) and (max-width: 639px) {
  .bx_pagination_bottom .bx_pagination_select_container select {
    margin-right: 10px;
  }
}
/*4 */
@media (max-width: 479px) {
  .bx_pagination_bottom .bx_pagination_section_two {
    float: none;
    text-align: left;
  }
  .bx_pagination_bottom .bx_pagination_select_container {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 47%;
  }
  .bx_pagination_bottom .bx_pagination_select_container select {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 0 !important;
    width: 90%;
  }
  .bx_pagination_bottom .bx_pg_section {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
  }
  .bx_pagination_bottom .bx_pagination_page {
    white-space: normal;
  }
  .bx_pagination_bottom .bx_pg_section.bx_pg_pagination_num {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .bx_pagination_bottom .bx_pg_section.bx_pg_show_col {
    display: none;
  }
  .bx_pagination_bottom .bx_pg_text {
    display: inline-block;
    width: 50%;
  }
  .bx_pagination_bottom .bx_pg_section.pg_pagination_num .bx_pg_text {
    display: none;
  }
}
.header__bkg {
  position: relative;
  background-color: #505050;
}

.header__content {
  -moz-user-select: none;
  -webkit-user-select: none;
  position: relative;
  background-color: #505050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #ffffff;
}
@media (min-width: 600px) {
  .header__content {
    justify-content: flex-end;
    height: 40px;
  }
}

.mobile__logo {
  margin-left: 5px;
  cursor: pointer;
}
.mobile__logo a {
  display: block;
}
@media (min-width: 600px) {
  .mobile__logo {
    display: none;
  }
}
.mobile__logo .close-elem {
  font-size: 23px;
  position: absolute;
  right: 0;
  top: 45px;
  z-index: 999;
  margin-right: 5px;
}

.menu-burger {
  width: 28px;
  margin-right: 12px;
}
.menu-burger:hover {
  cursor: pointer;
}
.menu-burger div {
  border: 2px solid #ffffff;
  margin-top: 4px;
}
@media (min-width: 600px) {
  .menu-burger {
    display: none;
  }
}

.mobile-close {
  cursor: pointer;
}
@media (min-width: 600px) {
  .mobile-close {
    display: none;
  }
}
.mobile-close span::before {
  font-size: 25px;
  margin-left: 0;
  margin-right: 5px;
  top: 5px;
}

.header__menu {
  background-color: #505050;
  display: none;
  flex-direction: column;
  position: absolute;
  z-index: 999;
  top: 50px;
  width: 100%;
  padding-bottom: 20px;
  margin-left: -5px;
}
@media (min-width: 600px) {
  .header__menu {
    background-color: unset;
    position: static;
    z-index: unset;
    top: unset;
    width: unset;
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
    height: 40px;
    align-items: center;
    justify-content: flex-end;
  }
}
.header__menu a {
  display: block;
  text-decoration: none;
}
@media (min-width: 1280px) {
  .header__menu {
    padding-right: 15px;
  }
}

.menu__main {
  padding: 15px 10px 5px 10px;
  font-weight: 500;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 600px) {
  .menu__main {
    padding: 10px 15px 9px 50px;
  }
  .menu__main:hover {
    font-weight: bold;
    text-decoration: underline;
    color: #C64F15;
  }
  .menu__main:hover .menu__drop-down {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .menu__main {
    min-width: 150px;
    margin-left: 10px;
  }
}
.menu__main span {
  display: none;
}
@media (min-width: 600px) {
  .menu__main span {
    display: inline-block;
    padding-left: 10px;
  }
}

.menu__drop-down {
  display: block;
  margin-left: 10px;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .menu__drop-down {
    margin-left: 0;
    margin-top: 0;
    display: none;
    position: absolute;
    z-index: 998;
    justify-content: space-around;
    align-items: baseline;
    left: 0;
    width: 100%;
    background-color: #505050;
    color: #ffffff;
    font-weight: normal;
    padding-top: 35px;
    padding-bottom: 50px;
    padding-left: 2%;
    padding-right: 2%;
    opacity: 0.99;
  }
}
@media (min-width: 1280px) {
  .menu__drop-down {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.drop-down__item {
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px;
  padding-bottom: 10px;
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  .drop-down__item {
    padding: 0;
    margin-bottom: 0;
    font-weight: bold;
    letter-spacing: 0.5px;
    width: 25%;
    margin-left: 3%;
    white-space: nowrap;
  }
  .drop-down__item::before {
    content: "/   ";
  }
}
@media (min-width: 1280px) {
  .drop-down__item {
    margin-left: 5%;
  }
}
.drop-down__item span {
  display: inline-block;
}
@media (min-width: 600px) {
  .drop-down__item span {
    display: none;
  }
}

.drop-down__sub-item {
  text-transform: capitalize;
  font-weight: 500;
  margin-left: 20px;
  padding-top: 10px;
  padding-bottom: 8px;
}
.drop-down__sub-item:hover {
  font-weight: bold;
  color: #C64F15;
}
@media (min-width: 600px) {
  .drop-down__sub-item {
    position: relative;
    font-weight: normal;
    letter-spacing: 0.5px;
    margin-left: 22px;
    padding-top: 16px;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 5px;
  }
  .drop-down__sub-item:hover .drop-down__sub-menu {
    display: block;
  }
}
.drop-down__sub-item span {
  display: inline-block;
}

.item__list {
  margin-top: 8px;
}
@media (min-width: 600px) {
  .item__list {
    display: block;
    margin-top: 0;
    white-space: normal;
  }
}

@media (min-width: 600px) {
  .drop-down__sub-menu {
    display: none;
    position: absolute;
    z-index: 999;
    left: 90%;
    width: 300px;
    background-color: #6f6e6e;
    border: 1px solid #aeaeae6e;
    top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-top: 5px;
    opacity: 0.98;
  }
}

.menu-item {
  text-transform: capitalize;
  font-weight: normal;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 20px;
}
@media (min-width: 600px) {
  .menu-item {
    display: block;
    padding-top: 7px;
    padding-bottom: 0px;
    margin-left: 22px;
    letter-spacing: 0.5px;
  }
}
.menu-item a {
  text-decoration: none;
  cursor: pointer;
  padding-top: 7px;
  padding-bottom: 7px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 600px) {
  .menu-item a {
    padding-top: 8px;
  }
}
.menu-item a:hover {
  color: #C64F15;
  text-decoration: underline;
}

.drop-down__sub-menu {
  margin-top: 10px;
}
@media (min-width: 600px) {
  .drop-down__sub-menu {
    margin-top: -10px;
  }
}
.drop-down__sub-menu .menu-item {
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 600px) {
  .drop-down__sub-menu .menu-item {
    margin-left: 0;
    padding-top: 5px;
    padding-bottom: 3px;
    padding-left: 15px;
    padding-right: 10px;
  }
}
.drop-down__sub-menu .menu-item:hover {
  color: #C64F15;
}

.sub-header {
  -moz-user-select: none;
  -webkit-user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
@media (min-width: 600px) {
  .sub-header {
    padding: 0 15px;
  }
}

.sub-header__left {
  flex: 2;
  display: flex;
  align-items: center;
  font-size: 10px;
  margin-top: 5px;
}
@media (min-width: 600px) {
  .sub-header__left {
    margin-top: 0;
    font-size: 12px;
  }
}
@media (min-width: 1280px) {
  .sub-header__left {
    margin-top: 5px;
  }
}
.sub-header__left span {
  font-weight: bold;
  line-height: 130%;
}
.sub-header__left a {
  display: none;
}
@media (min-width: 600px) {
  .sub-header__left a {
    display: block;
    margin-bottom: 5px;
  }
}
@media (min-width: 1280px) {
  .sub-header__left a {
    margin-bottom: 8px;
    margin-right: 4%;
  }
}
.sub-header__left div {
  display: none;
}
@media (min-width: 1280px) {
  .sub-header__left div {
    display: block;
    line-height: 150%;
  }
}

.sub-header__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 600px) {
  .sub-header__right {
    width: unset;
    justify-content: unset;
    margin-left: 3%;
  }
}
@media (min-width: 1280px) {
  .sub-header__right {
    margin-right: 10px;
  }
}
.sub-header__right .btn-orange {
  margin: 10px 0;
}
@media (min-width: 600px) {
  .sub-header__right .btn-orange {
    margin: 16px 0;
  }
}
@media (min-width: 1280px) {
  .sub-header__right .btn-orange {
    min-width: 160px;
  }
}
.sub-header__right .language {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2px;
}
@media (min-width: 600px) {
  .sub-header__right .language {
    justify-content: flex-end;
  }
}
.sub-header__right .language__icon {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  margin-right: 25px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
@media (min-width: 600px) {
  .sub-header__right .language__icon {
    margin-top: 1px;
    font-size: 13px;
    margin-right: 35px;
  }
}
@media (min-width: 1280px) {
  .sub-header__right .language__icon {
    margin-right: 50px;
    font-size: 14px;
  }
}
.sub-header__right .language__icon:before {
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../../images/icon/icon-language.svg) center no-repeat;
  background-size: contain;
  margin-right: 5px;
}
@media (min-width: 600px) {
  .sub-header__right .language__icon:before {
    width: 23px;
    height: 23px;
  }
}
@media (min-width: 1280px) {
  .sub-header__right .language__icon:before {
    width: 24px;
    height: 24px;
  }
}
.sub-header__right .language__icon .down-arrow {
  margin-left: 5px;
  color: #1f3045;
  top: 1px;
}
.sub-header__right .language__icon .down-arrow:before {
  padding-right: 0;
  padding-left: 1px;
  font-size: 12px;
}
@media (min-width: 600px) {
  .sub-header__right .language__icon .down-arrow:before {
    font-size: 14px;
  }
}
@media (min-width: 1280px) {
  .sub-header__right .language__icon .down-arrow:before {
    font-size: 16px;
  }
}
.sub-header__right .language__change {
  position: absolute;
  z-index: 98;
  min-width: 130px;
  width: 100%;
  background-color: #f8f8f8;
  padding: 18px 30px;
  top: -5px;
  left: -5px;
  margin-right: 20px;
  cursor: default;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .sub-header__right .language__change {
    top: -10px;
    left: unset;
  }
}
.sub-header__right .language__change ul {
  margin-top: 5px;
}
.sub-header__right .language__change ul li {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 6px 0;
  margin-top: 3px;
  cursor: pointer;
}
.sub-header__right .language__change ul li:hover {
  color: #C64F15;
  text-decoration: underline;
}
.sub-header__right .language__change ul li a {
  display: block;
  text-decoration: none;
}
.sub-header__right .language__change .current {
  color: #C64F15;
  font-weight: 600;
  cursor: default;
}
.sub-header__right .language__change .current:hover {
  text-decoration: none;
}
.sub-header__right .language__change .close-elem {
  position: absolute;
  z-index: 99;
  color: #6f6e6e;
  right: 5px;
  top: 8px;
}

.dlay-cookienotice-load {
  background-color: rgba(198, 79, 21, 0.9) !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
}
@media (min-width: 600px) {
  .dlay-cookienotice-load {
    font-size: 14px !important;
  }
}

.dlay-cookienotice-text {
  max-width: 100% !important;
  margin: 0 !important;
  width: unset !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
}
.dlay-cookienotice-text .dlay-cookienotice-p {
  margin-top: 0 !important;
  padding: 0 20px !important;
  padding-top: 10px !important;
}

.dlay-cookienotice-button.cookie-btn {
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  margin-left: 0 !important;
  font-weight: 500 !important;
  letter-spacing: 0.8px !important;
  border-radius: 0 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  padding: 6px 25px 5px 25px !important;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.dlay-cookienotice-button.cookie-btn:hover {
  background-color: #ffffff !important;
  color: #C64F15 !important;
  font-weight: 600 !important;
}

footer {
  z-index: 999;
  background-color: #505050;
  color: #ffffff;
  padding: 40px 0 25px 0;
  font-size: 12px;
}
@media (min-width: 600px) {
  footer {
    font-size: 13px;
    padding: 60px 0;
  }
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
@media (min-width: 600px) {
  footer .container {
    flex-direction: row;
    padding: 0;
  }
}

.footer__left {
  flex: 1;
  order: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  margin-left: 4%;
  margin-right: 4%;
}
@media (min-width: 600px) {
  .footer__left {
    order: 1;
    flex-direction: column;
    margin-top: 0;
    margin-right: 0;
    margin-left: 5%;
  }
}
@media (min-width: 1280px) {
  .footer__left {
    margin-left: 100px;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
}
.footer__logo .logo-ascon::before {
  width: 30px;
  height: 31px;
}
@media (min-width: 600px) {
  .footer__logo .logo-ascon::before {
    width: 41px;
    height: 42px;
  }
}
.footer__logo .group {
  margin-left: 10px;
}
@media (min-width: 600px) {
  .footer__logo .group {
    margin-left: 15px;
  }
}
.footer__logo .group div:last-child {
  margin-top: 4px;
}
@media (min-width: 600px) {
  .footer__logo .group div:last-child {
    margin-top: 8px;
  }
}

.footer__sm-icon {
  display: flex;
  align-items: center;
}
.footer__sm-icon .sm-icon {
  width: 20px;
  height: 18px;
  cursor: pointer;
  margin-right: 10px;
  margin-left: 20px;
}
@media (min-width: 600px) {
  .footer__sm-icon .sm-icon {
    margin-right: 25px;
    margin-left: 10px;
  }
}
.footer__sm-icon i {
  font-size: 20px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.footer__sm-icon i:hover {
  font-size: 21px;
  color: #C64F15;
}

.footer__right {
  flex: 3;
  order: 1;
  display: flex;
  justify-content: space-around;
  letter-spacing: 0.5px;
}
@media (min-width: 600px) {
  .footer__right {
    order: 2;
    margin-right: 5%;
  }
}
@media (min-width: 1280px) {
  .footer__right {
    margin-right: 100px;
  }
}

.footer_column a {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  margin-left: 18px;
  text-decoration: none;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.footer_column a:hover {
  text-decoration: underline;
  color: #C64F15;
}
@media (min-width: 600px) {
  .footer_column a {
    margin-left: 23px;
  }
}

.footer__heading {
  text-transform: uppercase;
  /*width: 28%;*/
  font-weight: bold;
}
.footer__heading::before {
  content: "/  ";
}
@media (min-width: 600px) {
  .footer__heading {
    /*margin-left: 6%;*/
    content: "/   ";
  }
}

.article__content ol li {list-style-type:alpha}