*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  list-style: none;
  text-decoration: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.l-container {
  max-width: 1600px;
  margin: 0px auto;
}

.m-cta {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: none;
  color: white;
  border-radius: 5px;
}

.m-cta--orange {
  background-color: #ff8520;
  padding: 23px 5px;
  width: 240px;
  height: 70px;
  color: #ffffff;
  font-size: 20px;
  font-family: Roboto-Black;
  line-height: 24px;
}

.m-cta--orange:hover {
  text-decoration: none;
  color: white;
  background-color: #CC6510;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.m-cta--stepper {
  background-color: #ff8520;
  padding: 20px 0px;
  width: 173px;
  height: 60px;
}

.m-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.m-modal-active {
  display: block;
}

.m-modal__close {
  color: #001f33;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
}

.m-modal__close:hover, .m-modal__close:focus {
  cursor: pointer;
}

.m-modal__content {
  max-width: 500px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  margin: 15% auto;
  padding: 40px;
  border: 1px solid red;
  width: 80%;
}

.m-modal__title {
  font-family: Roboto-Black;
  padding-bottom: 20px;
}

.m-modal__description {
  padding-bottom: 20px;
  text-align: center;
  font-family: Roboto-Medium;
  font-size: 24px;
}

@-webkit-keyframes openTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes closedTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes openMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes openMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes closedMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes closedMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes openBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes closedBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto-Medium";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto-Black";
  src: url("../fonts/Roboto-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/Muli-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "PTSans-Regular";
  src: url("../fonts/PTSans-Regular.ttf") format("truetype");
}

.b-nav {
  position: relative;
  z-index: 3;
  height: 85px;
  background-color: #132730;
}

@media only screen and (max-width: 1300px) {
  .b-nav {
    height: 100px;
  }
}

.b-nav__nav {
  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;
  height: 85px;
  background-color: #132730;
}

@media only screen and (max-width: 1300px) {
  .b-nav__nav {
    height: 100px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.b-nav__logo {
  position: relative;
  top: 16px;
  left: 95px;
}

@media only screen and (max-width: 1300px) {
  .b-nav__logo {
    left: 43px;
  }
}

@media only screen and (max-width: 992px) {
  .b-nav__logo {
    left: 18px;
  }
}

.b-nav__logo svg {
  height: 27px;
}

.b-nav__up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 51px;
}

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

.b-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  margin-right: 10px;
}

.b-nav__link {
  display: block;
  color: #ffffff;
  font-family: Roboto-Bold;
  text-transform: uppercase;
  font-size: 18px;
  margin-right: 56px;
}

@media (max-width: 1200px) {
  .b-nav__link {
    margin-right: 56x;
  }
}

@media only screen and (max-width: 992px) {
  .b-nav__link {
    font-size: 16px;
    margin-right: 36x;
  }
}

@media only screen and (max-width: 768px) {
  .b-nav__link {
    font-size: 16px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: phone) {
  .b-nav__link {
    font-size: 16px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 458px) {
  .b-nav__link {
    font-size: 14px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 376px) {
  .b-nav__link {
    font-size: 12px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 341px) {
  .b-nav__link {
    font-size: 10px;
    margin-right: 5px;
  }
}

.b-nav__item {
  text-decoration: none;
}

.b-nav__link:hover {
  text-decoration: none;
  color: #ee8f44;
}

.b-nav__item:last-child a {
  margin-right: 0px;
}

.b-nav__link-active {
  text-decoration: none;
  position: relative;
  color: #ee8f44;
}

.b-nav__link-active:after {
  color: #ee8f44;
  content: "";
  width: 100%;
  position: absolute;
  top: 28px;
  left: 0;
  bottom: -8px;
  border-width: 0 0 6px;
  border-style: solid;
}

@media only screen and (max-width: 1300px) {
  .b-nav__link-active:after {
    top: 29px;
  }
}

@media only screen and (max-width: 992px) {
  .b-nav__link-active:after {
    top: 26px;
  }
}

@media only screen and (max-width: 458px) {
  .b-nav__link-active:after {
    top: 15px;
  }
}

@media only screen and (max-width: 375px) {
  .b-nav__link-active:after {
    top: 15px;
  }
}

@media only screen and (max-width: 341px) {
  .b-nav__link-active:after {
    top: 5px;
  }
}

.b-nav__moje-delo {
  color: #ee8f44;
  font-size: 15px;
  margin-top: 13px;
  margin-right: 100px;
}

@media only screen and (max-width: 1300px) {
  .b-nav__moje-delo {
    margin-right: 50px;
  }
}

.b-nav__moje-delo:hover {
  text-decoration: none;
  color: #ee8f44;
}

@media only screen and (max-width: 992px) {
  .b-nav__moje-delo {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 768px) {
  .b-nav__moje-delo {
    font-size: 12px;
  }
}

@media only screen and (max-width: phone) {
  .b-nav__moje-delo {
    font-size: 12px;
  }
}

@media only screen and (max-width: 341px) {
  .b-nav__moje-delo {
    font-size: 10px;
  }
}

.b-footer {
  min-height: 450px;
  background-color: #1b374a;
}

.b-footer__container {
  padding-top: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.b-footer__logo {
  display: block;
  margin-left: 100px;
}

.b-footer__logo svg {
  height: 27px;
}

@media only screen and (max-width: 1748px) {
  .b-footer__logo {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 772px) {
  .b-footer__logo {
    display: none;
  }
}

.b-footer__up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 269px;
}

.b-footer__content {
  padding-left: 98px;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 135px;
}

@media only screen and (max-width: 1748px) {
  .b-footer__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1284px) {
  .b-footer__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    padding-left: 20px;
  }
}

@media only screen and (max-width: 772px) {
  .b-footer__content {
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    padding-left: 30px;
    margin-bottom: 20px;
    padding-left: 40px;
  }
}

@media only screen and (max-width: 628px) {
  .b-footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 420px) {
  .b-footer__content {
    padding-left: 30px;
  }
}

.b-footer__list {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 230px;
  margin-right: 10px;
}

@media only screen and (max-width: 1286px) {
  .b-footer__list {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 420px) {
  .b-footer__list {
    padding-right: 0px;
    width: 150px;
  }
}

.b-footer__list-contact {
  width: 260px;
}

@media only screen and (max-width: 618px) {
  .b-footer__list-contact {
    width: 200px;
  }
}

@media only screen and (max-width: 1286px) {
  .b-footer__list {
    padding-bottom: 20px;
  }
}

.b-footer__item-head {
  display: block;
  text-align: left;
  font-family: Roboto-Bold;
  color: #ffffff;
  font-size: 18px;
  position: relative;
  color: #ffffff;
  margin-bottom: 33px;
}

.b-footer__item-head:hover {
  color: white;
  text-decoration: none;
}

@media only screen and (max-width: 1284px) {
  .b-footer__item-head {
    margin-bottom: 18px;
  }
}

.b-footer__item-head:after {
  color: #ee8f44;
  content: "";
  width: 200px;
  position: absolute;
  left: 0px;
  bottom: -18px;
  border-width: 0 0 1px;
  border-style: solid;
}

@media only screen and (max-width: 1284px) {
  .b-footer__item-head:after {
    bottom: -8px;
  }
}

.b-footer__item {
  margin-bottom: 0px;
  display: block;
  font-family: Roboto-Regular;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  max-width: 236px;
  padding-right: 15px;
  line-height: 35px;
  -webkit-text-decoration-color: #ee8e4400;
          text-decoration-color: #ee8e4400;
}

@media only screen and (max-width: 618px) {
  .b-footer__item {
    font-size: 14px;
    padding-right: 10px;
  }
}

.b-footer__item:hover {
  color: #ee8f44;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.b-footer__contact {
  color: #ffffff;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 26px;
  max-width: 260px;
  padding-right: 15px;
}

@media only screen and (max-width: 618px) {
  .b-footer__contact {
    font-size: 10px;
    padding-right: 10px;
    max-width: 200px;
  }
}

.b-footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 60px;
  padding-right: 100px;
  padding-bottom: 95px;
}

.b-footer__logos a {
  display: block;
  padding-bottom: 25px;
}

.b-footer__logos a svg:hover {
  background-color: white;
  border-radius: 50%;
}

.b-footer__logos a svg:hover path {
  fill: #1b374a;
}

@media only screen and (max-width: 1748px) {
  .b-footer__logos {
    padding-right: 20px;
  }
}

.b-footer__down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 100px;
  margin-right: 100px;
  padding-top: 28px;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1058px) {
  .b-footer__down {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 25px;
    margin-right: 25px;
  }
}

.b-footer__left {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1058px) {
  .b-footer__left {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.b-footer__left-item {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: Roboto-Regular;
  padding-right: 30px;
  text-decoration: none;
}

@media only screen and (max-width: 628px) {
  .b-footer__left-item {
    font-size: 12px;
  }
}

.b-footer__left-item:hover {
  color: white;
  text-decoration: none;
}

.b-footer__left-item:first-child {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: Roboto-Regular;
  padding-right: 30px;
}

@media only screen and (max-width: 628px) {
  .b-footer__left-item:first-child {
    font-size: 12px;
  }
}

.b-footer__left-item:first-child:hover {
  color: #ee8f44;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.b-footer__right {
  color: white;
  font-family: Muli-Bold;
  font-size: 16px;
}

@media only screen and (max-width: 510px) {
  .b-footer__right {
    font-size: 12px;
  }
}

.b-cta-boxes {
  z-index: -3;
  background-color: #e2ecef;
  min-height: 779px;
}

.b-cta-boxes__section {
  min-height: 771px;
  position: relative;
}

.b-cta-boxes__background {
  position: absolute;
  min-height: 771px;
  max-width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.b-cta-boxes__title {
  max-width: 850px;
  padding-top: 105px;
  padding-left: 160px;
  font-family: Roboto-Black;
  font-size: 48px;
}

@media only screen and (max-width: 906px) {
  .b-cta-boxes__title {
    padding-top: 35px;
    padding-left: 35px;
    font-size: 42px;
  }
}

@media only screen and (max-width: 524px) {
  .b-cta-boxes__title {
    padding-left: 15px;
    font-size: 36px;
  }
}

.b-cta-boxes__text {
  color: #001f33;
  padding-top: 23px;
  padding-left: 160px;
  font-family: Roboto-Medium;
  font-size: 24px;
  max-width: 850px;
  letter-spacing: 0.96px;
  line-height: 28px;
  padding-right: 25px;
  padding-bottom: 53px;
}

@media only screen and (max-width: 906px) {
  .b-cta-boxes__text {
    padding-top: 25px;
    padding-left: 35px;
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 524px) {
  .b-cta-boxes__text {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
  }
}

.b-cta-boxes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 100px 75px;
}

@media only screen and (max-width: 1354px) {
  .b-cta-boxes__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .b-cta-boxes__cards .b-cta-boxes__card-input-1 {
    margin-right: 0px;
  }
}

.b-cta-boxes__card {
  position: relative;
  padding: 74px 40px 0;
  background-color: rgba(245, 251, 255, 0.9);
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 680px;
  border-radius: 5px;
}

.b-cta-boxes__card-input {
  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;
  width: 100%;
}

.b-cta-boxes__card-input-1 {
  margin-right: 10px;
}

@media only screen and (max-width: 650px) {
  .b-cta-boxes__card-input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.b-cta-boxes__card-input .card-input-select {
  width: 280px;
  background-color: #ffffff;
  position: relative;
  border-radius: 5px;
  border: 1px solid #f0f6fa;
}

.b-cta-boxes__card-input .card-input-select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.b-cta-boxes__card-input .card-input-select-box-text {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #7a8d99;
  margin-bottom: 0;
  font: normal normal medium 18px/23px Mulish;
}

@media only screen and (max-width: 650px) {
  .b-cta-boxes__card-input .card-input-select {
    margin-bottom: 25px;
  }
  .b-cta-boxes__card-input .card-input-select:last-child {
    margin-bottom: 0px;
  }
}

.b-cta-boxes__card-input .card-input-select-dropdown {
  display: none;
  z-index: 999;
  position: absolute;
  width: 100%;
  margin-top: 4px;
  overflow: auto;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 20px #3061af33;
          box-shadow: 0px 10px 20px #3061af33;
}

.b-cta-boxes__card-input .card-input-select-dropdown.show {
  display: block;
}

.b-cta-boxes__card-input .card-input-select-dropdown.hide {
  display: none;
}

.b-cta-boxes__card-input .card-input-select-filter {
  padding: 15px 20px;
  background-color: #ffffff;
}

.b-cta-boxes__card-input .card-input-select-filter > img {
  margin-right: 10px;
}

.b-cta-boxes__card-input .card-input-select-filter > input {
  border: 0;
  outline: none;
}

.b-cta-boxes__card-input .card-input-select-filter > input::-webkit-input-placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.b-cta-boxes__card-input .card-input-select-filter > input:-ms-input-placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.b-cta-boxes__card-input .card-input-select-filter > input::-ms-input-placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.b-cta-boxes__card-input .card-input-select-filter > input::placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.b-cta-boxes__card-input .card-input-select-names {
  height: 240px;
  overflow-y: scroll;
  background-color: #ffffff;
  padding: 10px;
}

.b-cta-boxes__card-input .card-input-select-names-item > p {
  padding: 8px 15px;
  margin-bottom: 1px;
  cursor: pointer;
  font: normal normal normal 16px/19px Roboto;
  text-transform: uppercase;
  color: #001f33;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.b-cta-boxes__card-input .card-input-select-names-item > p:hover {
  background-color: #f0f6fa;
}

.b-cta-boxes__card-input .card-input-select-info {
  margin: 0;
  padding: 5px;
  font: normal normal normal 16px/19px Roboto;
  background-color: #f0f6fa;
  color: #7a8d99;
}

@media only screen and (max-width: 706px) {
  .b-cta-boxes__card {
    width: 100%;
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.b-cta-boxes__card:last-child {
  margin-left: 20px;
  margin-right: 0px;
}

@media only screen and (max-width: 1354px) {
  .b-cta-boxes__card:last-child {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 80px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 906px) {
  .b-cta-boxes__card:last-child {
    margin-bottom: 100px;
    margin-right: 0px;
  }
}

.b-cta-boxes__card-text {
  font-size: 18px;
  font-family: Roboto-Bold;
  color: #7a8d99;
  text-transform: uppercase;
}

.b-cta-boxes__card-text-down {
  font-family: Roboto-Bold;
  color: #001f33;
  font-size: 24px;
  text-align: center;
  line-height: 28px;
  margin-bottom: 0px;
}

.b-cta-boxes__card-title {
  font-size: 32px;
  line-height: 34px;
  font-family: Roboto-Bold;
  color: #001f33;
  padding-bottom: 6px;
}

.b-cta-boxes__card-btn {
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 30px;
}

.b-cta-boxes__card-btn.read-more {
  margin: 25px 0 35px;
}

.b-cta-boxes__input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 865px) {
  .b-cta-boxes__input {
    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;
  }
}

.b-cta-boxes__input-1 {
  padding: 0px 20px 0px 0px;
}

@media only screen and (max-width: 865px) {
  .b-cta-boxes__input-1 {
    padding-right: 0px;
    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;
    padding-bottom: 10px;
  }
}

.b-cta-boxes__input-2 {
  padding: 0px 20px 0px 0px;
}

@media only screen and (max-width: 865px) {
  .b-cta-boxes__input-2 {
    padding-right: 0px;
  }
}

.b-cta-boxes__svg {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 0px;
  left: 50%;
  background-color: rgba(245, 251, 255, 0.9);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}

.b-cta-boxes__svg img {
  position: relative;
  width: 48px;
}

.b-news__container .news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.b-news__container .news-content .item-container {
  width: 320px;
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
}

.b-news__container .news-content .item-container:hover {
  cursor: pointer;
}

.b-news__container .news-content .item-container:hover .news-item-content {
  background-color: #ee8f44;
}

.b-news__container .news-content .item-container:hover .news-item-content-created-date, .b-news__container .news-content .item-container:hover .news-item-content-author, .b-news__container .news-content .item-container:hover .news-item-content-title, .b-news__container .news-content .item-container:hover .news-item-content-text {
  color: #ffffff;
}

.b-news__container .news-content .item-container:hover .news-item-content-time-clock {
  background-image: url(../images/landing/time-hover.svg);
}

.b-news__container .news-content .item-container:hover .news-item-content-time-read {
  color: #ffffff;
}

.b-news__container .news-content .item-container:hover .news-item-content-author::after {
  background-color: #ffffff;
}

.b-news__container .news-content .item-container:nth-child(3n) {
  margin-right: 40px;
}

.b-news__container .news-content .item-container:nth-child(4n) {
  margin-right: 0;
}

.b-news__container .news-content .item-container .news-item-img > img {
  width: 100%;
}

.b-news__container .news-content .item-container .news-item-content {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  padding: 16px;
  background-color: #ffffff;
}

.b-news__container .news-content .item-container .news-item-content-created-date {
  font: normal normal bold 16px/19px Roboto;
  color: #001f33;
  text-transform: uppercase;
  margin: 0;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.b-news__container .news-content .item-container .news-item-content-author {
  font: normal normal bold 14px Roboto;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #7a8d99;
  margin-bottom: 30px;
  position: relative;
}

.b-news__container .news-content .item-container .news-item-content-author::after {
  height: 4px;
  position: absolute;
  content: "";
  width: 32px;
  background-color: #ee8f44;
  left: 0;
  bottom: -100%;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.b-news__container .news-content .item-container .news-item-content-title {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  font: normal normal bold 24px/28px Roboto;
  color: #001f33;
  margin-bottom: 15px;
}

.b-news__container .news-content .item-container .news-item-content-text {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #48555e;
  font: normal normal normal 18px/26px Roboto;
  margin-bottom: 45px;
}

.b-news__container .news-content .item-container .news-item-content-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.b-news__container .news-content .item-container .news-item-content-time-clock {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  background-image: url(../images/landing/time.svg);
  width: 19px;
  height: 19px;
}

.b-news__container .news-content .item-container .news-item-content-time-read {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  font: normal normal bold 12px Roboto;
  color: #7a8d99;
  margin-bottom: 0;
  margin-left: 8px;
}

@media only screen and (max-width: 1600px) {
  .b-news__container .news-content {
    width: 100%;
  }
  .b-news__container .news-content .item-container {
    width: 300px;
  }
  .b-news__container .news-content .item-container:nth-child(odd) {
    margin-right: 20px;
  }
  .b-news__container .news-content .item-container:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  .b-news__container .news-content .item-container:nth-child(4n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1440px) {
  .b-news__container .news-content {
    margin: 0 auto;
    width: calc((320px * 2) + 40px);
  }
  .b-news__container .news-content .item-container {
    width: 320px;
  }
  .b-news__container .news-content .item-container:nth-child(odd) {
    margin-right: 40px;
  }
  .b-news__container .news-content .item-container:nth-child(3n) {
    margin-right: 40px;
  }
  .b-news__container .news-content .item-container:nth-child(even) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .b-cta-boxes__card-input {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .b-news__all-news {
    width: 100%;
    margin: 0 auto;
  }
  .b-news__container .news-content {
    width: 100%;
  }
  .b-news__container .news-content .item-container {
    width: 45%;
  }
  .b-news__container .news-content .item-container:nth-child(odd) {
    margin-right: 20px;
  }
  .b-news__container .news-content .item-container:nth-child(3n) {
    margin-right: 20px;
  }
  .b-news__container .news-content .item-container:nth-child(4n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  .b-news__all-news {
    padding-bottom: 40px;
    width: 100%;
  }
  .b-cta-boxes__card-input {
    width: 100%;
    -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;
  }
  .b-cta-boxes__card-input .card-input-select {
    margin-bottom: 10px;
  }
  .b-news__container .news-content {
    width: 100%;
    margin: 0 auto;
  }
  .b-news__container .news-content .item-container {
    width: 100%;
  }
  .b-news__container .news-content .item-container:nth-child(odd) {
    margin-right: 0;
  }
  .b-news__container .news-content .item-container:nth-child(3n) {
    margin-right: 0;
  }
  .b-news__container .news-content .item-container:nth-child(4n) {
    margin-right: 0;
  }
  .b-news__container .news-content .item-container:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.card-input-select-required {
  display: none;
  position: absolute;
  bottom: -40px;
  padding-left: 2px;
  color: #7a8d99;
  font-size: 10px;
  line-height: 11px;
  margin-bottom: 24px;
  padding-top: 9px;
  color: #b0433e;
  font-family: Roboto-Regular;
}

.card-input-select-required-active {
  display: block;
  z-index: 100;
}

.card-input-select-border {
  border: 1px solid #b0433e !important;
}

/**
 * Swiper 6.5.9
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 30, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
> .swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal
> .swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl
> .swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl
.swiper-pagination-progressbar
.swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.b-ribbon {
  background-color: #f0f6fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.b-ribbon-arrow-left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 60px;
}

@media only screen and (max-width: 992px) {
  .b-ribbon-arrow-left {
    margin-right: 20px;
  }
}

.b-ribbon-arrow-right {
  margin-left: 60px;
}

@media only screen and (max-width: 992px) {
  .b-ribbon-arrow-right {
    margin-left: 20px;
  }
}

.b-ribbon__container {
  height: 200px;
  max-width: 100vw;
  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;
}

.b-ribbon__wrapper {
  height: 200px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.b-ribbon__anchor {
  width: 150px;
  height: 90px;
}

.swiper-container {
  width: 1161px;
  height: 100%;
}

.swiper-slide {
  margin-bottom: 20px;
  margin-top: 55px;
  background: red;
  width: 200px !important;
  height: 92px !important;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media only screen and (max-width: 768px) {
  .swiper-slide {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: phone) {
  .swiper-slide {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.swiper-slide:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.swiper-button-next-u {
  color: orange;
  font-size: 30px;
  margin-left: 10px;
  margin-right: 30px;
}

.swiper-button-prev-u {
  color: orange;
  font-size: 30px;
  margin-right: 10px;
  margin-left: 30px;
}

.b-cross-products {
  background-color: #e2ecef;
  z-index: -10;
  padding-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .b-cross-products {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: phone) {
  .b-cross-products {
    padding-bottom: 30px;
  }
}

.b-cross-products__title {
  padding-top: 20px;
  font-size: 48px;
  font-family: Roboto-Bold;
  text-align: center;
}

.b-cross-products__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1226px) {
  .b-cross-products__cards {
    -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;
  }
}

.b-cross-products__card {
  position: relative;
  height: 500px;
  width: 1000px;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media only screen and (max-width: 1070px) {
  .b-cross-products__card {
    width: 85vw;
    height: 350px;
  }
}

.b-cross-products__card:hover .b-cross-products__card-head {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
  top: 30px;
  left: 50%;
  background-color: white;
  width: 410px;
  height: 220px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}

@media only screen and (max-width: 630px) {
  .b-cross-products__card:hover .b-cross-products__card-head {
    width: 60vw;
    height: 200px;
  }
}

.b-cross-products__card:hover .b-cross-products__card-down {
  position: absolute;
  border-radius: 5px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  bottom: 30px;
  left: 50%;
  background-color: white;
  width: 410px;
  height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 3;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}

@media only screen and (max-width: 630px) {
  .b-cross-products__card:hover .b-cross-products__card-down {
    width: 60vw;
    height: 200px;
  }
}

.b-cross-products__card-1 {
  margin: 150px 20px 0px 20px;
}

.b-cross-products__card-1-analysis {
  margin: 30px 20px 80px 20px;
}

@media only screen and (max-width: 1232px) {
  .b-cross-products__card-1-analysis {
    margin-bottom: 150px;
  }
}

@media only screen and (max-width: 768px) {
  .b-cross-products__card-1-analysis {
    margin-top: 10px;
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: phone) {
  .b-cross-products__card-1-analysis {
    margin-top: 10px;
    margin-bottom: 100px;
  }
}

.b-cross-products__card-2 {
  margin: 200px 20px 0px 20px;
}

.b-cross-products__card-2-analysis {
  margin: 140px 20px 80px 20px;
}

@media only screen and (max-width: 768px) {
  .b-cross-products__card-2-analysis {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: phone) {
  .b-cross-products__card-2-analysis {
    margin-bottom: 0px;
  }
}

.b-cross-products__card-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  border-radius: 5px;
}

.b-cross-products__card-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  border-radius: 5px;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  border-radius: 5px;
}

.b-cross-products__card-title {
  margin: 23px;
  max-width: 150px;
  font-size: 24px;
  line-height: 28px;
  color: #001f33;
  font-family: Roboto-Bold;
  text-align: center;
}

.b-cross-products__card-head {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
  top: 0px;
  left: 50%;
  background-color: white;
  width: 410px;
  height: 220px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
}

@media only screen and (max-width: 630px) {
  .b-cross-products__card-head {
    width: 60vw;
    height: 200px;
  }
}

.b-cross-products__card-down {
  position: absolute;
  border-radius: 5px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  bottom: 0px;
  left: 50%;
  background-color: white;
  width: 410px;
  height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 3;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
}

@media only screen and (max-width: 630px) {
  .b-cross-products__card-down {
    width: 60vw;
    height: 200px;
  }
}

.b-news {
  min-height: 800px;
  z-index: -3;
  background-color: #e2ecef;
}

.b-news__container {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 1184px) {
  .b-news__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.b-news__all-news {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 70px;
  padding-top: 10px;
}

.b-news__title {
  color: #001f33;
  font-family: Roboto-Bold;
  font-size: 48px;
  margin-bottom: 0px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media only screen and (max-width: 645px) {
  .b-news__title {
    font-size: 23px;
    line-height: 38px;
  }
}

.b-news__cta {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #001f33;
  font-family: Roboto-Bold;
  -webkit-text-decoration-color: #ee8e4400;
          text-decoration-color: #ee8e4400;
  font-size: 16px;
  margin-bottom: 13px;
}

@media only screen and (max-width: 645px) {
  .b-news__cta {
    font-size: 16px;
    line-height: 18px;
  }
}

.b-news__cta:hover {
  color: #001f33;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-text-decoration-color: #ee8f44;
          text-decoration-color: #ee8f44;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.b-news__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1538px) {
  .b-news__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

@media only screen and (max-width: 895px) {
  .b-news__cards {
    grid-gap: 25px;
  }
}

@media only screen and (max-width: 687px) {
  .b-news__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.b-news__card {
  max-width: 325px;
  min-height: 575px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
  background-color: white;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
}

@media only screen and (max-width: 1538px) {
  .b-news__card {
    max-width: 600px;
  }
}

.b-news__card a:hover {
  text-decoration: none;
}

.b-news__card:hover {
  background-color: #ee8f44;
}

.b-news__card:hover .b-news__card-name::after {
  color: white;
  content: "";
  width: 32px;
  position: absolute;
  left: 0px;
  top: 33px;
  border-width: 0 0 4px;
  border-style: solid;
}

@media only screen and (max-width: 1284px) {
  .b-news__card:hover .b-news__card-name::after {
    bottom: -8px;
  }
}

.b-news__card:hover .b-news__card-time::before {
  position: absolute;
  top: -1px;
  left: 0px;
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background-image: url(../images/landing/time-hover.svg);
  background-size: cover;
  color: white;
}

.b-news__card:hover .b-news__card-hover {
  color: white;
}

.b-news__card-img {
  border-radius: 5px 5px 0px 0px;
  width: 100%;
  height: 180px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

@media only screen and (max-width: 1538px) {
  .b-news__card-img {
    height: 250px;
  }
}

@media only screen and (max-width: 879px) {
  .b-news__card-img {
    height: 180px;
  }
}

@media only screen and (max-width: 687px) {
  .b-news__card-img {
    height: 250px;
  }
}

@media only screen and (max-width: 477px) {
  .b-news__card-img {
    height: 180px;
  }
}

.b-news__card-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 18px 20px;
}

.b-news__card-date {
  max-width: 286px;
  color: #001f33;
  font-family: Roboto-Bold;
  font-size: 16px;
  margin-bottom: 0;
}

.b-news__card-name {
  max-width: 286px;
  position: relative;
  font-family: Roboto-Medium;
  color: #7a8d99;
  font-size: 14px;
  text-decoration: none;
}

.b-news__card-name:after {
  color: #ee8f44;
  content: "";
  width: 32px;
  position: absolute;
  left: 0px;
  top: 33px;
  border-width: 0 0 4px;
  border-style: solid;
}

@media only screen and (max-width: 1284px) {
  .b-news__card-name:after {
    bottom: -8px;
  }
}

.b-news__card-title {
  padding-top: 30px;
  padding-right: 20px;
  font-size: 24px;
  line-height: 28px;
  color: #001f33;
  font-family: Roboto-Bold;
}

.b-news__card-body {
  color: #48555e;
  font-size: 18px;
  line-height: 26px;
  font-family: Roboto-Regular;
  padding-right: 20px;
  padding-bottom: 23px;
  margin-bottom: 0px;
}

.b-news__card-time {
  font-family: Roboto-Medium;
  bottom: 17px;
  left: 17px;
  padding-left: 30px;
  margin-bottom: 0px;
  font-size: 14px;
  color: #7a8d99;
  position: absolute;
}

.b-news__card-time::before {
  position: absolute;
  top: -1px;
  left: 0px;
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background-image: url(../images/landing/time.svg);
  background-size: cover;
}

.news {
  background-color: #e2ecef;
  padding-top: 70px;
  padding-bottom: 107px;
}

.news .main-title {
  margin-left: calc((100% - (440px * 3 + 80px)) / 2);
  margin-bottom: 70px;
  font: normal normal bold 48px/57px Roboto;
}

.news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  width: calc((440px * 3) + 80px);
}

.news-content .item-container {
  width: 440px;
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
}

.news-content .item-container:hover {
  cursor: pointer;
}

.news-content .item-container:hover .news-item-content {
  background-color: #ee8f44;
}

.news-content .item-container:hover .news-item-content-created-date, .news-content .item-container:hover .news-item-content-author, .news-content .item-container:hover .news-item-content-title, .news-content .item-container:hover .news-item-content-text {
  color: #ffffff;
}

.news-content .item-container:hover .news-item-content-time-clock {
  background-image: url(../images/landing/time-hover.svg);
}

.news-content .item-container:hover .news-item-content-time-read {
  color: #ffffff;
}

.news-content .item-container:hover .news-item-content-author::after {
  background-color: #ffffff;
}

.news-content .item-container:not(:nth-child(3n)) {
  margin-right: 40px;
}

.news-content .item-container .news-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.news-content .item-container .news-item-img > img {
  width: 100%;
}

.news-content .item-container .news-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  padding: 16px;
  background-color: #ffffff;
}

.news-content .item-container .news-item-content-created-date {
  font: normal normal bold 16px/19px Roboto;
  color: #001f33;
  text-transform: uppercase;
  margin: 0;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.news-content .item-container .news-item-content-author {
  font: normal normal bold 14px Roboto;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #7a8d99;
  margin-bottom: 30px;
  position: relative;
}

.news-content .item-container .news-item-content-author::after {
  height: 4px;
  position: absolute;
  content: "";
  width: 32px;
  background-color: #ee8f44;
  left: 0;
  bottom: -100%;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.news-content .item-container .news-item-content-title {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  font: normal normal bold 32px/38px Roboto;
  color: #001f33;
  margin-bottom: 15px;
}

.news-content .item-container .news-item-content-text {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #48555e;
  font: normal normal normal 18px/26px Roboto;
  margin-bottom: 45px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-content .item-container .news-item-content-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-content .item-container .news-item-content-time-clock {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  background-image: url(../images/landing/time.svg);
  width: 19px;
  height: 19px;
}

.news-content .item-container .news-item-content-time-read {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  font: normal normal bold 12px Roboto;
  color: #7a8d99;
  margin-bottom: 0;
  margin-left: 8px;
}

.news-pagi-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.news-pagi-box > img {
  cursor: pointer;
}

.news-pagi-box-numbers {
  margin: 0 20px;
  cursor: pointer;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: normal normal bold 16px/27px Muli;
  color: #001f33;
}

.news-pagi-box-numbers .news-pagi-number {
  margin: 0 20px;
}

.news-pagi-box-numbers .news-pagi-number.active {
  position: relative;
}

.news-pagi-box-numbers .news-pagi-number.active::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 2px;
  background-color: #ee8f44;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 1440px) {
  .news {
    padding-top: 50px;
  }
  .news .main-title {
    margin-left: calc((100% - (440px * 2 + 40px)) / 2);
    margin-bottom: 50px;
  }
  .news-content {
    width: calc((440px * 2) + 40px);
  }
  .news-content .item-container:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .news-content .item-container:nth-child(odd) {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 1024px) {
  .news {
    padding-top: 50px;
  }
  .news .main-title {
    margin-left: calc((100% - (440px * 2 + 40px)) / 2);
    margin-bottom: 50px;
  }
  .news-content {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .news-content .item-container {
    width: 45%;
  }
  .news-content .item-container:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .news-content .item-container:nth-child(odd) {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .news {
    padding-top: 40px;
  }
  .news .main-title {
    margin-left: 5%;
    margin-bottom: 40px;
    font: normal normal bold 24px Roboto;
  }
  .news-content {
    width: 100%;
  }
  .news-content .item-container {
    margin-right: 0;
    width: 45%;
  }
  .news-content .item-container:nth-child(3n) {
    margin-right: 0;
  }
  .news-content .item-container:nth-child(odd) {
    margin-right: 20px;
  }
  .news-content .item-container .news-item-content-title {
    font: normal normal bold 22px Roboto;
  }
  .news-content .item-container .news-item-content-text {
    font: normal normal normal 18px Roboto;
  }
  .news-content .item-container .news-item-content-created-date {
    font: normal normal bold 14px Roboto;
  }
  .news-pagi {
    margin: 25px 0 50px;
  }
}

@media only screen and (max-width: 480px) {
  .news {
    padding-top: 30px;
  }
  .news .main-title {
    margin-left: 5%;
    margin-bottom: 30px;
    font: normal normal bold 24px Roboto;
  }
  .news-content {
    width: 90%;
  }
  .news-content .item-container {
    margin-right: 0;
    width: 100%;
  }
  .news-content .item-container:nth-child(3n) {
    margin-right: 0;
  }
  .news-content .item-container:nth-child(odd) {
    margin-right: 0;
  }
  .news-content .item-container .news-item-content-title {
    font: normal normal bold 22px Roboto;
  }
  .news-content .item-container .news-item-content-text {
    font: normal normal normal 18px Roboto;
  }
  .news-content .item-container .news-item-content-created-date {
    font: normal normal bold 14px Roboto;
  }
  .news-pagi {
    margin: 25px 0 50px;
  }
}

.news-det-cover {
  padding-top: 375px;
  position: relative;
}

.news-det-cover > img {
  width: 920px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.news-det-box {
  width: 680px;
  margin: 0 auto;
}

.news-det-box .news-det-head {
  background-color: #ffffff;
  width: 100%;
  padding: 50px 80px;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
}

.news-det-box .news-det-head-title {
  font: normal normal bold 32px/38px Roboto;
  color: #001f33;
  text-align: center;
  margin-bottom: 30px;
}

.news-det-box .news-det-head-text {
  font: normal normal normal 18px/26px Roboto;
  text-align: center;
  color: #48555e;
  margin-bottom: 35px;
}

.news-det-box .news-det-head-info {
  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;
}

.news-det-box .news-det-head-info-author {
  font: normal normal bold 14px/16px Roboto;
  color: #7a8d99;
  margin-bottom: 0;
}

.news-det-box .news-det-head-info-date {
  font: normal normal bold 16px/19px Roboto;
  text-transform: uppercase;
  color: #001f33;
  margin-bottom: 0;
}

.news-det-box .news-det-breadcrump {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 0 20px;
}

.news-det-box .news-det-breadcrump > * {
  margin-right: 15px;
}

.news-det-box .news-det-breadcrump a {
  text-decoration: none;
  font: normal normal medium 14px/16px Roboto;
  color: #7a8d99;
}

@media only screen and (max-width: 1024px) {
  .news-det-cover {
    padding-top: 400px;
    position: relative;
  }
  .news-det-cover > img {
    width: 100%;
  }
  .news-det-head {
    width: 100%;
    padding: 20px 40px;
    top: 150px;
  }
  .news-det-head-title {
    font: normal normal bold 22px Roboto;
  }
  .news-det-head-text {
    font: normal normal normal 17px Roboto;
  }
  .news-det-head-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-det-head-info-author {
    font: normal normal bold 14px/16px Roboto;
  }
  .news-det-head-info-date {
    font: normal normal bold 16px/19px Roboto;
  }
}

@media only screen and (max-width: 992px) {
  .news-det-cover {
    padding-top: 350px;
  }
}

@media only screen and (max-width: 768px) {
  .news-det-cover {
    padding-top: 300px;
    position: relative;
  }
  .news-det-cover > img {
    width: 100%;
  }
  .news-det-box {
    width: 90%;
  }
  .news-det-box .news-det-head {
    width: 100%;
    padding: 20px 40px;
    top: 150px;
  }
  .news-det-box .news-det-head-title {
    font: normal normal bold 22px Roboto;
  }
  .news-det-box .news-det-head-text {
    font: normal normal normal 17px Roboto;
  }
  .news-det-box .news-det-head-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-det-box .news-det-head-info-author {
    font: normal normal bold 14px/16px Roboto;
  }
  .news-det-box .news-det-head-info-date {
    font: normal normal bold 16px/19px Roboto;
  }
}

@media only screen and (max-width: 640px) {
  .news-det-cover {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 480px) {
  .news-det-cover {
    padding-top: 100px;
    position: relative;
  }
  .news-det-cover > img {
    width: 100%;
  }
  .news-det-breadcrump {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 25px auto 20px;
    padding: 0 10px;
  }
  .news-det-breadcrump > * {
    margin-right: 15px;
    font-size: 14px;
  }
  .news-det-breadcrump a {
    text-decoration: none;
    font: normal normal medium 12px Roboto;
    color: #7a8d99;
  }
  .news-det-box {
    width: 100%;
  }
  .news-det-box .news-det-head {
    width: 90%;
    padding: 20px 10px;
    top: 100px;
    margin: 0 auto;
  }
  .news-det-box .news-det-head-title {
    font: normal normal bold 22px Roboto;
  }
  .news-det-box .news-det-head-text {
    font: normal normal normal 17px Roboto;
  }
  .news-det-box .news-det-head-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-det-box .news-det-head-info-author {
    font: normal normal bold 14px/16px Roboto;
  }
  .news-det-box .news-det-head-info-date {
    font: normal normal bold 16px/19px Roboto;
  }
}

.news-det-main {
  width: 680px;
  margin: 0 auto;
}

.news-det-main-box h2.news-det-main-box-title {
  font: normal normal bold 32px/38px Roboto;
  color: #001f33;
  margin-bottom: 16px;
}

.news-det-main-box h3.news-det-main-box-title {
  font: normal normal bold 24px/28px Roboto;
  color: #001f33;
  margin-bottom: 16px;
}

.news-det-main-box p.news-det-main-box-title {
  font: normal normal bold 16px/19px Roboto;
  color: #001f33;
  margin-bottom: 16px;
}

.news-det-main-box-text {
  margin-bottom: 40px;
}

.news-det-main-box-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.news-det-main-box-image .img-title {
  font: italic normal normal 16px/24px Roboto;
  color: #7a8d99;
  display: inline-block;
  margin: 15px 0;
}

.news-det-main-box-quotes {
  margin-bottom: 40px;
}

.news-det-main-box-quotes img {
  float: left;
  margin-right: 20px;
}

.news-det-main-box-quotes p {
  padding-top: 15px;
  font: normal normal bold 20px/26px Roboto;
  color: #48555e;
  position: relative;
}

.news-det-main-box-quotes p::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 2px;
  width: calc(100% - 100px);
  background-color: #ee8f44;
}

.news-det-main-box-list ul > li {
  font: normal normal normal 18px/26px Roboto;
  color: #48555e;
  margin-bottom: 25px;
  padding-left: 25px;
  position: relative;
}

.news-det-main-box-list ul > li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ee8f44;
  left: 0;
  top: 9px;
}

.news-det-main-table {
  margin-bottom: 40px;
}

.news-det-main-table-thead {
  background-color: #ee8f44;
  color: #ffffff;
  border-radius: 5px 5px 0px 0px;
}

.news-det-main-table-thead tr > th {
  padding: 12px 24px;
  font: normal normal bold 16px/19px Roboto;
}

.news-det-main-table-thead tr > th:first-child {
  border-top-left-radius: 5px;
  padding: 12px 0 12px 24px;
}

.news-det-main-table-thead tr > th:last-child {
  border-top-right-radius: 5px;
  text-align: right;
  text-align: right;
  padding: 12px 24px 12px 0;
}

.news-det-main-table-thead tr > th:nth-child(2), .news-det-main-table-thead tr > th:nth-child(3) {
  text-align: center;
  width: 30%;
}

.news-det-main-table-tbody tr:nth-child(even) {
  background-color: #f0f6fa;
}

.news-det-main-table-tbody tr > td {
  padding: 12px 0;
}

.news-det-main-table-tbody tr > td:last-child {
  text-align: right;
  padding: 12px 24px 12px 0;
}

.news-det-main-table-tbody tr > td:first-child {
  padding: 12px 0 12px 24px;
}

.news-det-main-table-tbody tr > td:nth-child(2), .news-det-main-table-tbody tr > td:nth-child(3) {
  text-align: center;
  width: 30%;
}

@media only screen and (max-width: 768px) {
  .news-det-main {
    width: 90%;
    margin: 0 auto;
  }
  .news-det-main-box {
    padding: 0 10px;
  }
  .news-det-main-box h2.news-det-main-box-title {
    font: normal normal bold 32px/38px Roboto;
    color: #001f33;
    margin-bottom: 16px;
  }
  .news-det-main-box h3.news-det-main-box-title {
    font: normal normal bold 24px/28px Roboto;
    color: #001f33;
    margin-bottom: 16px;
  }
  .news-det-main-box p.news-det-main-box-title {
    font: normal normal bold 16px/19px Roboto;
    color: #001f33;
    margin-bottom: 16px;
  }
  .news-det-main-box-text {
    margin-bottom: 40px;
  }
  .news-det-main-box-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .news-det-main-box-image .img-box {
    width: 100%;
  }
  .news-det-main-box-image .img-box > img {
    width: 100%;
  }
  .news-det-main-box-quotes {
    margin-bottom: 40px;
  }
  .news-det-main-box-quotes p {
    font: normal normal bold 20px/26px Roboto;
    color: #48555e;
  }
  .news-det-main-table {
    margin-bottom: 40px;
  }
  .news-det-main-table-thead tr > th:first-child {
    padding: 12px;
  }
  .news-det-main-table-thead tr > th:last-child {
    padding: 12px;
  }
  .news-det-main-table-thead tr > th:nth-child(2), .news-det-main-table-thead tr > th:nth-child(3) {
    width: 28%;
  }
  .news-det-main-table-tbody tr > td:last-child {
    padding: 12px 12px 12px 0;
  }
  .news-det-main-table-tbody tr > td:first-child {
    padding: 12px 0 12px 12px;
  }
  .news-det-main-table-tbody tr > td:nth-child(2), .news-det-main-table-tbody tr > td:nth-child(3) {
    width: 25%;
  }
}

@media only screen and (max-width: 480px) {
  .news-det-main {
    width: 90%;
    margin: 0 auto;
  }
  .news-det-main-box {
    padding: 0 10px;
  }
  .news-det-main-box h2.news-det-main-box-title {
    font: normal normal bold 32px/38px Roboto;
    color: #001f33;
    margin-bottom: 16px;
  }
  .news-det-main-box h3.news-det-main-box-title {
    font: normal normal bold 24px/28px Roboto;
    color: #001f33;
    margin-bottom: 16px;
  }
  .news-det-main-box p.news-det-main-box-title {
    font: normal normal bold 16px/19px Roboto;
    color: #001f33;
    margin-bottom: 16px;
  }
  .news-det-main-box-text {
    margin-bottom: 40px;
  }
  .news-det-main-box-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .news-det-main-box-image .img-box {
    width: 100%;
  }
  .news-det-main-box-image .img-box > img {
    width: 100%;
  }
  .news-det-main-box-quotes {
    margin-bottom: 40px;
  }
  .news-det-main-box-quotes p {
    font: normal normal bold 20px/26px Roboto;
    color: #48555e;
  }
  .news-det-main-table {
    margin-bottom: 40px;
  }
  .news-det-main-table-thead tr > th:first-child {
    padding: 12px;
  }
  .news-det-main-table-thead tr > th:last-child {
    padding: 12px;
  }
  .news-det-main-table-thead tr > th:nth-child(2), .news-det-main-table-thead tr > th:nth-child(3) {
    width: 28%;
  }
  .news-det-main-table-tbody tr > td:last-child {
    padding: 12px 12px 12px 0;
  }
  .news-det-main-table-tbody tr > td:first-child {
    padding: 12px 0 12px 12px;
  }
  .news-det-main-table-tbody tr > td:nth-child(2), .news-det-main-table-tbody tr > td:nth-child(3) {
    width: 25%;
  }
}

.news-det-others {
  width: calc((320px * 4) + 120px);
  margin: 80px auto 60px;
}

.news-det-others-title {
  font: normal normal bold 48px/57px Roboto;
  color: #001f33;
  margin-bottom: 60px;
}

.news-det-others-articles .news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.news-det-others-articles .news-content .item-container {
  width: 320px;
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
}

.news-det-others-articles .news-content .item-container:hover {
  cursor: pointer;
}

.news-det-others-articles .news-content .item-container:hover .news-item-content {
  background-color: #ee8f44;
}

.news-det-others-articles .news-content .item-container:hover .news-item-content-created-date, .news-det-others-articles .news-content .item-container:hover .news-item-content-author, .news-det-others-articles .news-content .item-container:hover .news-item-content-title, .news-det-others-articles .news-content .item-container:hover .news-item-content-text {
  color: #ffffff;
}

.news-det-others-articles .news-content .item-container:hover .news-item-content-time-clock {
  background-image: url(../images/landing/time-hover.svg);
}

.news-det-others-articles .news-content .item-container:hover .news-item-content-time-read {
  color: #ffffff;
}

.news-det-others-articles .news-content .item-container:hover .news-item-content-author::after {
  background-color: #ffffff;
}

.news-det-others-articles .news-content .item-container:nth-child(3n) {
  margin-right: 40px;
}

.news-det-others-articles .news-content .item-container:nth-child(4n) {
  margin-right: 0;
}

.news-det-others-articles .news-content .item-container .news-item-img > img {
  width: 100%;
}

.news-det-others-articles .news-content .item-container .news-item-content {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  padding: 16px;
  background-color: #ffffff;
}

.news-det-others-articles .news-content .item-container .news-item-content-created-date {
  font: normal normal bold 16px/19px Roboto;
  color: #001f33;
  text-transform: uppercase;
  margin: 0;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.news-det-others-articles .news-content .item-container .news-item-content-author {
  font: normal normal bold 14px Roboto;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #7a8d99;
  margin-bottom: 30px;
  position: relative;
}

.news-det-others-articles .news-content .item-container .news-item-content-author::after {
  height: 4px;
  position: absolute;
  content: "";
  width: 32px;
  background-color: #ee8f44;
  left: 0;
  bottom: -100%;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.news-det-others-articles .news-content .item-container .news-item-content-title {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  font: normal normal bold 24px/28px Roboto;
  color: #001f33;
  margin-bottom: 15px;
}

.news-det-others-articles .news-content .item-container .news-item-content-text {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #48555e;
  font: normal normal normal 18px/26px Roboto;
  margin-bottom: 45px;
}

.news-det-others-articles .news-content .item-container .news-item-content-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-det-others-articles .news-content .item-container .news-item-content-time-clock {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  background-image: url(../images/landing/time.svg);
  width: 19px;
  height: 19px;
}

.news-det-others-articles .news-content .item-container .news-item-content-time-read {
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  font: normal normal bold 12px Roboto;
  color: #7a8d99;
  margin-bottom: 0;
  margin-left: 8px;
}

@media only screen and (max-width: 1440px) {
  .news-det-others {
    width: 100%;
    margin: 30px auto;
  }
  .news-det-others-title {
    margin-left: 2%;
    font: normal normal bold 30px Roboto;
    margin-bottom: 20px;
  }
  .news-det-others-articles .news-content .item-container {
    width: 30%;
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(3n) {
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(4n) {
    margin: 0 auto 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .news-det-others {
    width: 100%;
    margin: 30px auto;
  }
  .news-det-others-title {
    margin-left: 2%;
    font: normal normal bold 30px Roboto;
    margin-bottom: 20px;
  }
  .news-det-others-articles .news-content .item-container {
    width: 30%;
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(3n) {
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(4n) {
    margin: 0 auto 10px;
  }
}

@media only screen and (max-width: 768px) {
  .news-det-others {
    width: 100%;
    margin: 30px auto;
  }
  .news-det-others-title {
    margin-left: 2%;
    font: normal normal bold 30px Roboto;
    margin-bottom: 20px;
  }
  .news-det-others-articles .news-content .item-container {
    width: 45%;
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(3n) {
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(4n) {
    margin: 0 auto 10px;
  }
}

@media only screen and (max-width: 480px) {
  .news-det-others {
    width: 100%;
    margin: 30px auto;
  }
  .news-det-others-title {
    margin-left: 5%;
    font: normal normal bold 30px Roboto;
    margin-bottom: 20px;
  }
  .news-det-others-articles .news-content .item-container {
    width: 90%;
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(3n) {
    margin: 0 auto 10px;
  }
  .news-det-others-articles .news-content .item-container:nth-child(4n) {
    margin: 0 auto 10px;
  }
}

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

.orange-checkbox {
  -webkit-appearance: none;
  background-color: #fafafa;
  padding: 9px;
  display: inline-block;
  position: relative;
  width: 55px;
  height: 21px;
  border: 1px solid #EE8F44;
  border-radius: 5px;
}

.orange-checkbox:active, .orange-checkbox:checked:active {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.orange-checkbox:checked {
  background-color: #ee8f44;
}

.orange-checkbox:checked:after {
  content: '\2714';
  font-size: 14px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #ffffff;
}

.layout {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e2ecef;
  background-image: url(/views/images/analysis_inquiry/background.svg);
  background-repeat: no-repeat;
  background-position: right top;
}

.layout__title {
  margin: 80px;
  margin-bottom: 40px;
}

.title {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  color: #001f33;
  font-weight: bold;
}

.text {
  font: normal normal normal 16px/26px "Roboto";
  letter-spacing: 0px;
  color: #001f33;
  opacity: 1;
}

#signup-text::after {
  content: " ";
  height: 4px;
  width: 20px;
  background: #ee8f44;
}

.signup {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-shadow: 0px 5px 10px #066AA029;
          box-shadow: 0px 5px 10px #066AA029;
  opacity: 1;
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 50px;
}

.signup__layout {
  width: 40%;
}

.signup__layout .mail-sent {
  min-height: 0;
}

.signup__text-layout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 80px;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input .mail-not-sent {
  margin-top: 0;
}

.input .mail-sent {
  margin-top: 0;
}

#form-email {
  width: 100%;
  min-width: 280px;
  margin-left: 25px;
}

.checkbox-with-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  justify-items: space-between;
  margin-left: 18%;
  width: 65%;
  font-size: 12px;
}

#signup-button {
  width: 30%;
  text-align: center;
  font: normal normal 900 18px/21px "Roboto";
  color: #ffffff;
  background: #ee8f44;
  border: 0px;
  border-radius: 5px;
  padding: 10px 30px;
  margin-right: 0;
  margin-left: 40%;
}

#red-text {
  margin-left: 20%;
}

.salary-signup {
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.salary-signup::after {
  position: absolute;
  background: #ee8f44;
  content: "";
  width: 5%;
  height: 4px;
  bottom: -10%;
}

.signup-text-container {
  margin-left: 18%;
  width: 100%;
}

#signup-button:hover {
  background: #c9732e;
}

.md-link-container {
  margin-top: 15%;
  margin-bottom: 10%;
  width: 70%;
  background-image: url(/views/images/business-2.png);
  border-radius: 5px;
  background-size: cover;
  position: relative;
  height: 450px;
}

.md-link-container #md-link-button {
  position: absolute;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -25%;
  left: 35%;
  padding: 3%;
  width: 30%;
  height: 50%;
  -webkit-box-shadow: 0px 5px 10px #066AA029;
          box-shadow: 0px 5px 10px #066AA029;
  border-radius: 5px;
  background: #ffffff;
  font: normal normal bold 20px/22px "Roboto";
  text-align: center;
}

.md-link-container #md-link-button img {
  margin-bottom: 20px;
}

.md-link-container #md-link-button:hover {
  background: #e2ecef;
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  .checkbox-with-text {
    width: 80%;
    margin-left: 10%;
  }
}

@media only screen and (max-width: 1200px) {
  .signup-text-container {
    padding-left: 20px;
  }
  .signup-text-container .salary-signup .salary {
    font: normal normal bold 22px/26px "Roboto";
  }
  .md-link-container {
    margin-bottom: 15%;
  }
}

@media only screen and (max-width: 992px) {
  .md-link-container #md-link-button {
    left: 30%;
    width: 40%;
    height: 50%;
  }
  .signup__layout img {
    height: 80px;
    width: 80px;
  }
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
  .input #email {
    width: 100%;
    margin-bottom: 10px;
  }
  .input #signup-button {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .checkbox-with-text {
    width: 80%;
    margin-left: 10%;
  }
  .layout__title {
    margin: 20px;
  }
  .title {
    font-size: 26px;
  }
  .md-link-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    margin-bottom: 150px;
  }
  .md-link-container #md-link-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    left: 10%;
    width: 80%;
    font-size: 22px;
  }
  .md-link-container #md-link-button img {
    margin-bottom: 10px;
    padding-top: 5px;
    width: 120px;
    height: 120px;
    margin-top: 10px;
  }
  .signup {
    padding-top: 0;
    padding-bottom: 0;
  }
  .signup__layout {
    width: 100%;
  }
  .signup img {
    height: 50px;
    width: 50px;
  }
  .signup__text-layout {
    margin-left: 10%;
  }
  .signup__text-layout .signup-text-container .salary-signup .salary {
    font-size: 16px;
  }
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
  .input #form-email {
    width: 180%;
    margin-left: -40%;
    margin-bottom: 10px;
  }
  .input #signup-button {
    width: 80%;
    margin-left: 0;
  }
}

@media only screen and (max-width: phone) {
  .checkbox-with-text {
    width: 80%;
    margin-left: 10%;
  }
  .layout__title {
    margin: 20px;
  }
  .title {
    font-size: 26px;
  }
  .md-link-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    margin-bottom: 150px;
  }
  .md-link-container #md-link-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    left: 10%;
    width: 80%;
    font-size: 22px;
  }
  .md-link-container #md-link-button img {
    margin-bottom: 10px;
    padding-top: 5px;
    width: 120px;
    height: 120px;
    margin-top: 10px;
  }
  .signup {
    padding-top: 0;
    padding-bottom: 0;
  }
  .signup__layout {
    width: 100%;
  }
  .signup img {
    height: 50px;
    width: 50px;
  }
  .signup__text-layout {
    margin-left: 10%;
  }
  .signup__text-layout .signup-text-container .salary-signup .salary {
    font-size: 16px;
  }
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
  .input #form-email {
    width: 180%;
    margin-left: -40%;
    margin-bottom: 10px;
  }
  .input #signup-button {
    width: 80%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 480px) {
  .layout__title {
    margin: 20px;
  }
  .title {
    font-size: 26px;
  }
  .md-link-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 80px;
    width: 100%;
    height: 250px;
  }
  .md-link-container #md-link-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    left: 10%;
    width: 80%;
    font-size: 18px;
  }
  .md-link-container #md-link-button img {
    margin-bottom: 10px;
    padding-top: 5px;
    width: 70px;
    height: 70px;
    margin-top: 10px;
  }
  .signup {
    padding-top: 0;
    padding-bottom: 0;
  }
  .signup__layout {
    width: 100%;
  }
  .signup img {
    height: 50px;
    width: 50px;
  }
  .signup__text-layout .signup-text-container .salary-signup .salary {
    font-size: 16px;
  }
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
  .input #form-email {
    margin-left: 0;
    width: 80%;
    margin-bottom: 10px;
  }
  .input #signup-button {
    width: 70%;
  }
}

@media only screen and (max-width: small-phone) {
  .layout__title {
    margin: 20px;
  }
  .title {
    font-size: 26px;
  }
  .md-link-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 80px;
    width: 100%;
    height: 250px;
  }
  .md-link-container #md-link-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    left: 10%;
    width: 80%;
    font-size: 18px;
  }
  .md-link-container #md-link-button img {
    margin-bottom: 10px;
    padding-top: 5px;
    width: 70px;
    height: 70px;
    margin-top: 10px;
  }
  .signup {
    padding-top: 0;
    padding-bottom: 0;
  }
  .signup__layout {
    width: 100%;
  }
  .signup img {
    height: 50px;
    width: 50px;
  }
  .signup__text-layout .signup-text-container .salary-signup .salary {
    font-size: 16px;
  }
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
  .input #form-email {
    margin-left: 0;
    width: 80%;
    margin-bottom: 10px;
  }
  .input #signup-button {
    width: 70%;
  }
}

@media only screen and (max-width: 330px) {
  .md-link-container {
    margin-bottom: 70px;
  }
  .md-link-container #md-link-button img {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    padding-top: 5px;
  }
  .md-link-container #md-link-button .md-link-container {
    height: 150px;
  }
  .signup__text-layout {
    margin-left: 5%;
  }
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
  .input #form-email {
    width: 80%;
  }
  .input #signup-button {
    width: 90%;
  }
}

.salary-results {
  width: 80%;
  position: relative;
  -webkit-box-shadow: 0px 5px 10px #066AA029;
          box-shadow: 0px 5px 10px #066AA029;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
}

.salary-results::after {
  content: "";
  width: 100%;
  height: 8px;
  background: #ee8f44;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.salary-results__struct-title {
  width: 90%;
}

.salary-results {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .salary-results {
    width: 100%;
  }
  .salary-results .salary {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) and (max-width: 376px) {
  .salary-results .salary {
    font-size: 14px;
  }
}

@media only screen and (max-width: phone) {
  .salary-results {
    width: 100%;
  }
  .salary-results .salary {
    font-size: 20px;
  }
}

@media only screen and (max-width: phone) and (max-width: 376px) {
  .salary-results .salary {
    font-size: 14px;
  }
}

.normal-dist-graph {
  position: relative;
  width: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
}

.normal-dist-graph__canvas-container {
  padding-left: 3%;
  padding-right: 3%;
  width: 82.5%;
  background: #f0f6fa;
}

.normal-dist-graph__canvas-container canvas {
  pointer-events: none;
  background: #f0f6fa;
}

.normal-dist-graph__canvas-container .avg-salary {
  position: absolute;
  bottom: 0;
  left: 47%;
  bottom: 10%;
}

.normal-dist-graph__canvas-container .avg-salary p {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #001f33;
}

.normal-dist-graph__occupation {
  font-size: 32px;
  color: #001f33;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 0px;
}

.normal-dist-graph__region {
  font-size: 24px;
  color: #7a8d99;
  font-weight: bold;
}

.normal-dist-graph__salary {
  width: 82.5%;
  font: normal normal bold 32px/38px "Roboto";
}

.normal-dist-graph select {
  position: absolute;
  left: 10%;
  margin-top: 15px;
  width: 112px;
  height: 7%;
  font-size: 16px;
  border: 1px solid var(--icon-gray);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #D5DBE1;
  border-radius: 5px;
  opacity: 1;
}

.salary {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #001f33;
}

@media only screen and (max-width: 992px) {
  .normal-dist-graph .avg-salary {
    margin-left: -40px;
  }
}

@media only screen and (max-width: 768px) {
  .normal-dist-graph .salary {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: bold;
  }
  .normal-dist-graph__occupation {
    font-size: 20px;
    margin-top: 15px;
  }
  .normal-dist-graph__region {
    font-size: 18px;
  }
  .normal-dist-graph .avg-salary {
    bottom: 5px;
  }
  .normal-dist-graph .avg-salary p {
    font-size: 16px;
  }
  .normal-dist-graph select {
    position: relative;
    left: 0;
  }
}

@media only screen and (max-width: phone) {
  .normal-dist-graph .salary {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: bold;
  }
  .normal-dist-graph__occupation {
    font-size: 20px;
    margin-top: 15px;
  }
  .normal-dist-graph__region {
    font-size: 18px;
  }
  .normal-dist-graph .avg-salary {
    bottom: 5px;
  }
  .normal-dist-graph .avg-salary p {
    font-size: 16px;
  }
  .normal-dist-graph select {
    position: relative;
    left: 0;
  }
}

@media only screen and (max-width: 480px) {
  .normal-dist-graph .avg-salary {
    bottom: 0;
    margin-left: 0;
    left: 40%;
  }
  .normal-dist-graph .avg-salary p {
    font-size: 14px;
  }
  .normal-dist-graph select {
    position: relative;
    left: 0;
  }
}

@media only screen and (max-width: small-phone) {
  .normal-dist-graph .avg-salary {
    bottom: 0;
    margin-left: 0;
    left: 40%;
  }
  .normal-dist-graph .avg-salary p {
    font-size: 14px;
  }
  .normal-dist-graph select {
    position: relative;
    left: 0;
  }
}

.salary-structure {
  position: relative;
  width: 90%;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f0f6fa;
}

.salary-structure__labels {
  margin-top: 6%;
  margin-left: 50px;
  width: 35%;
}

.salary-structure__pie-chart-container {
  position: relative;
  width: 65%;
  margin: 5%;
}

.salary-structure__pie-chart-container #chartjs-tooltip {
  left: 35%;
  right: 0;
  bottom: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 30%;
  max-height: 100px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0;
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px #066AA029;
          box-shadow: 0px 5px 10px #066AA029;
  background: #ffffff;
  font: normal normal 16px/19px "Roboto";
  text-align: center;
  align-items: center;
}

.salary-structure__pie-chart-container #chartjs-tooltip #fl {
  color: #ee8f44;
}

.salary-structure__pie-chart-container #chartjs-tooltip #sl {
  color: #001f33;
  font-weight: bold;
}

.salary-structure__pie-chart-container canvas {
  background: #f0f6fa;
  position: relative;
}

.salary-structure ol {
  position: relative;
  z-index: 10;
  padding-left: 20px;
}

.salary-structure li::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  top: 32%;
  left: -10%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  border-radius: 50%;
}

.salary-structure li {
  position: relative;
  padding-bottom: 20px;
  font: normal normal bold 16px/19px "Roboto";
  color: #001f33;
}

.salary {
  margin-top: 3%;
  font: normal normal bold 32px/38px "Roboto";
  color: #001f33;
}

#base-salary::before {
  background: #4e8abe;
}

#christmas-bonus::before {
  background: #d3d9de;
}

#yearly-reward::before {
  background: #577d93;
}

#additional-monthly-income::before {
  background: #1a374b;
}

#pension::before {
  background: #b0433e;
}

#health-insurance::before {
  background: #cdb23d;
}

#meal::before {
  background: #65ab67;
}

#regres::before {
  background: #ee8f44;
}

@media only screen and (max-width: 1200px) {
  .salary-structure__pie-chart-container #chartjs-tooltip {
    bottom: 30%;
  }
}

@media only screen and (max-width: 992px) {
  .salary-structure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .salary-structure__pie-chart-container #chartjs-tooltip {
    font: normal normal 12px/15px "Roboto";
    max-height: 75px;
    padding: auto;
  }
  .salary-structure ol {
    margin-left: -180px;
  }
  .salary-structure li {
    white-space: nowrap;
    padding-right: 10px;
    color: #001f33;
  }
  .salary-structure li::before {
    left: -20%;
  }
}

@media only screen and (max-width: 768px) {
  .salary-structure__pie-chart-container #chartjs-tooltip {
    font: normal normal 12px/15px "Roboto";
    max-height: 90px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .salary-structure__pie-chart-container #chartjs-tooltip p {
    margin: 10px;
  }
  .salary-structure__labels {
    margin-top: 0;
    margin-left: -10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .salary-structure ol {
    padding-left: 0;
    margin-left: -100px;
  }
  .salary-structure li {
    position: relative;
    padding-bottom: 0;
    white-space: nowrap;
    font: normal normal bold 14px/17px "Roboto";
    padding-right: 10px;
    color: #001f33;
  }
  .salary-structure li::before {
    width: 10px;
    height: 10px;
    top: 15%;
    left: -8%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media only screen and (max-width: phone) {
  .salary-structure__pie-chart-container #chartjs-tooltip {
    font: normal normal 12px/15px "Roboto";
    max-height: 90px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .salary-structure__pie-chart-container #chartjs-tooltip p {
    margin: 10px;
  }
  .salary-structure__labels {
    margin-top: 0;
    margin-left: -10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .salary-structure ol {
    padding-left: 0;
    margin-left: -100px;
  }
  .salary-structure li {
    position: relative;
    padding-bottom: 0;
    white-space: nowrap;
    font: normal normal bold 14px/17px "Roboto";
    padding-right: 10px;
    color: #001f33;
  }
  .salary-structure li::before {
    width: 10px;
    height: 10px;
    top: 15%;
    left: -8%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media only screen and (max-width: 480px) {
  .salary-structure__pie-chart-container #chartjs-tooltip {
    font: normal normal 8px/11px "Roboto";
    max-height: 40px;
  }
  .salary-structure__pie-chart-container #chartjs-tooltip p {
    padding: 0;
    margin: 0;
    white-space: nowrap;
  }
  .salary-structure__labels {
    margin-top: 0;
    margin-left: -45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .salary-structure ol {
    -webkit-columns: 1;
            columns: 1;
    padding-left: 0;
    margin-left: 0;
  }
  .salary-structure li {
    position: relative;
    padding-bottom: 0;
    font: normal normal bold 10px/13px "Roboto";
    color: #001f33;
  }
  .salary-structure li::before {
    width: 10px;
    height: 10px;
    top: 10%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media only screen and (max-width: small-phone) {
  .salary-structure__pie-chart-container #chartjs-tooltip {
    font: normal normal 8px/11px "Roboto";
    max-height: 40px;
  }
  .salary-structure__pie-chart-container #chartjs-tooltip p {
    padding: 0;
    margin: 0;
    white-space: nowrap;
  }
  .salary-structure__labels {
    margin-top: 0;
    margin-left: -45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .salary-structure ol {
    -webkit-columns: 1;
            columns: 1;
    padding-left: 0;
    margin-left: 0;
  }
  .salary-structure li {
    position: relative;
    padding-bottom: 0;
    font: normal normal bold 10px/13px "Roboto";
    color: #001f33;
  }
  .salary-structure li::before {
    width: 10px;
    height: 10px;
    top: 10%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media only screen and (max-width: 375px) {
  .salary-structure li {
    white-space: pre;
  }
}

@media only screen and (max-width: 330px) {
  .salary-structure ol {
    -webkit-columns: 1;
            columns: 1;
  }
}

.compare-salary {
  position: relative;
  width: 90%;
  height: 200px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10%;
  margin-top: 2%;
}

.compare-salary__inner-block {
  padding: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 45%;
  height: 200px;
  background: #f0f6fa;
}

.img-container {
  margin-right: 30px;
}

.compare-salary-black {
  font: normal normal bold 16px/19px "Roboto";
  margin-bottom: 0;
}

.compare-salary-title {
  margin-bottom: 10px;
  position: relative;
}

.compare-salary-title::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 4px;
  background: #ee8f44;
  left: 0;
  right: 0;
}

.compare-salary-grey {
  font: normal normal normal 16px/26px "Roboto";
  color: #7a8d99;
}

@media only screen and (max-width: 992px) {
  .compare-salary {
    margin-bottom: 20px;
  }
  .img-container {
    margin-right: 20px;
  }
  .img-container img {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (max-width: 768px) {
  .compare-salary {
    height: 150px;
    margin-bottom: 0;
  }
  .compare-salary__inner-block {
    padding-bottom: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 48%;
    margin-bottom: 10px;
    height: 120px;
  }
  .img-container {
    margin-right: 20px;
  }
  .img-container img {
    width: 80px;
    height: 80px;
  }
  .compare-salary-black {
    font: normal normal bold 10px/13px "Roboto";
  }
  .compare-salary-grey {
    font: normal normal normal 10px/20px "Roboto";
  }
}

@media only screen and (max-width: phone) {
  .compare-salary {
    height: 150px;
    margin-bottom: 0;
  }
  .compare-salary__inner-block {
    padding-bottom: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 48%;
    margin-bottom: 10px;
    height: 120px;
  }
  .img-container {
    margin-right: 20px;
  }
  .img-container img {
    width: 80px;
    height: 80px;
  }
  .compare-salary-black {
    font: normal normal bold 10px/13px "Roboto";
  }
  .compare-salary-grey {
    font: normal normal normal 10px/20px "Roboto";
  }
}

@media only screen and (max-width: 480px) {
  .compare-salary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  .compare-salary__inner-block {
    padding-bottom: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 90%;
    margin-bottom: 10px;
    height: auto;
  }
  .img-container {
    margin-right: 20px;
  }
  .img-container img {
    width: 60px;
    height: 60px;
  }
  .compare-salary-black {
    font: normal normal bold 10px/13px "Roboto";
  }
  .compare-salary-grey {
    font: normal normal normal 10px/20px "Roboto";
  }
}

@media only screen and (max-width: small-phone) {
  .compare-salary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  .compare-salary__inner-block {
    padding-bottom: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 90%;
    margin-bottom: 10px;
    height: auto;
  }
  .img-container {
    margin-right: 20px;
  }
  .img-container img {
    width: 60px;
    height: 60px;
  }
  .compare-salary-black {
    font: normal normal bold 10px/13px "Roboto";
  }
  .compare-salary-grey {
    font: normal normal normal 10px/20px "Roboto";
  }
}

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
  background: transparent;
}
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  -webkit-filter: inherit;
          filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1), -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #0078a8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

.b-about {
  background-color: #e2ecef;
}

.b-about__container {
  padding: 80px 100px 160px;
}

@media only screen and (max-width: 1060px) {
  .b-about__container {
    padding: 40px 100px 60px;
  }
}

@media only screen and (max-width: 602px) {
  .b-about__container {
    padding: 20px;
  }
}

.b-about__title {
  color: #001f33;
  font-family: Roboto-Bold;
  padding-bottom: 35px;
  margin-bottom: 0px;
  font-size: 48px;
  line-height: 48px;
}

.b-about__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1354px) {
  .b-about__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
        grid-template-areas: "card-1 card-2" "card-3 card-3";
  }
}

@media only screen and (max-width: 1060px) {
  .b-about__cards {
    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;
  }
}

.b-about__card-1 {
  grid-area: card-1;
  max-width: 320px;
  margin-right: 40px;
  background-color: #ffffff;
  padding: 45px 53px 55px 40px;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
  border-radius: 5px;
}

.b-about__card-1:hover a {
  text-decoration: none;
}

@media only screen and (max-width: 1354px) {
  .b-about__card-1 {
    max-width: 600px;
    margin-right: 0px;
  }
}

@media only screen and (max-width: 432px) {
  .b-about__card-1 {
    max-width: 300px;
    padding: 45px 10px 55px 10px;
  }
}

.b-about__card-1-title {
  min-width: 300px;
  font-family: Roboto-Bold;
  color: #001f33;
  font-size: 24px;
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 17px;
}

.b-about__card-1-title:after {
  color: #ee8f44;
  content: "";
  width: 32px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-width: 0 0 4px;
  border-style: solid;
}

.b-about__card-1-address {
  font-family: Roboto-Regular;
  margin-bottom: 0px;
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #000000;
  position: relative;
  padding-left: 35px;
}

.b-about__card-1-address::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  background-image: url(../images/about/adress.svg);
  background-size: cover;
}

.b-about__card-1-mail {
  font-family: Roboto-Regular;
  margin-bottom: 0px;
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #000000;
  position: relative;
  padding-left: 35px;
}

.b-about__card-1-mail::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  background-image: url(../images/about/mail.svg);
  background-size: cover;
}

.b-about__card-1-phone {
  font-family: Roboto-Regular;
  margin-bottom: 0px;
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #000000;
  position: relative;
  padding-left: 35px;
}

.b-about__card-1-phone::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  background-image: url(../images/about/phone.svg);
  background-size: cover;
}

.b-about__card-1-fax {
  font-family: Roboto-Regular;
  margin-bottom: 0px;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #000000;
  position: relative;
  padding-left: 35px;
}

.b-about__card-1-fax::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  background-image: url(../images/about/fax.svg);
  background-size: cover;
}

.b-about__card-2 {
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  grid-area: card-2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 40px;
  background-color: #ffffff;
  padding: 45px 53px 55px 40px;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
  border-radius: 5px;
}

@media only screen and (max-width: 1354px) {
  .b-about__card-2 {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 1060px) {
  .b-about__card-2 {
    min-width: 403px;
  }
}

@media only screen and (max-width: 432px) {
  .b-about__card-2 {
    max-width: 300px;
    min-width: 300px;
    padding: 45px 10px 55px 10px;
  }
}

.b-about__card-2:last-child {
  margin-right: 0px;
}

.b-about__card-2-up {
  border-bottom: 2px solid #f0f6fa;
  margin-bottom: 17px;
}

.b-about__card-2-title {
  font-family: Roboto-Bold;
  color: #001f33;
  font-size: 24px;
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 17px;
}

.b-about__card-2-title:after {
  color: #ee8f44;
  content: "";
  width: 32px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-width: 0 0 4px;
  border-style: solid;
}

.b-about__card-2-person {
  font-family: Roboto-Regular;
  margin-bottom: 0px;
  padding-bottom: 5px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #000000;
  position: relative;
  padding-left: 35px;
}

.b-about__card-2-person::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  background-image: url(../images/about/contact.svg);
  background-size: cover;
}

.b-about__card-2-mail {
  font-family: Roboto-Regular;
  margin-bottom: 0px;
  padding-bottom: 13px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #000000;
  position: relative;
  padding-left: 35px;
}

.b-about__card-2-mail::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  background-image: url(../images/about/mail.svg);
  background-size: cover;
}

.b-about__card-3 {
  grid-area: card-3;
  max-width: 680px;
  margin-right: 40px;
  background-color: #ffffff;
  padding: 45px 53px 55px 40px;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
  border-radius: 5px;
}

.b-about__card-3:last-child {
  margin-right: 0px;
}

@media only screen and (max-width: 1354px) {
  .b-about__card-3 {
    max-width: 1300px;
  }
}

@media only screen and (max-width: 1060px) {
  .b-about__card-3 {
    max-width: 403px;
  }
}

@media only screen and (max-width: 432px) {
  .b-about__card-3 {
    max-width: 300px;
    min-width: 300px;
    padding: 45px 10px 55px 10px;
  }
}

.b-about__card-3 a {
  color: #ee8f44;
  text-decoration: underline;
}

.b-about__card-3 a:hover {
  color: #ee8f44;
  text-decoration: underline;
}

.b-about__card-3-title {
  font-family: Roboto-Bold;
  color: #001f33;
  font-size: 24px;
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 10px;
}

.b-about__card-3-title:after {
  color: #ee8f44;
  content: "";
  width: 32px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-width: 0 0 4px;
  border-style: solid;
}

.b-about__card-3-text-up {
  font-family: Roboto-Regular;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 10px;
}

.b-about__card-3-text-down {
  font-family: Roboto-Regular;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
}

.b-promo-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ee8f44;
  padding: 11px 0px;
}

@media only screen and (max-width: 768px) {
  .b-promo-code {
    padding: 2px 0px;
  }
}

@media only screen and (max-width: phone) {
  .b-promo-code {
    padding: 2px 0px;
  }
}

@media only screen and (max-width: 500px) {
  .b-promo-code {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.b-promo-code__link:hover {
  text-decoration: none;
}

.b-promo-code__text-black {
  color: #1b374a;
  font-family: Roboto-Medium;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .b-promo-code__text-black {
    font-size: 11px;
    line-height: 12px;
  }
}

@media only screen and (max-width: phone) {
  .b-promo-code__text-black {
    font-size: 11px;
    line-height: 12px;
  }
}

.b-promo-code__text-white {
  padding: 0px 7px;
  color: #ffffff;
  font-family: Roboto-Medium;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .b-promo-code__text-white {
    font-size: 11px;
    line-height: 12px;
  }
}

@media only screen and (max-width: phone) {
  .b-promo-code__text-white {
    font-size: 11px;
    line-height: 12px;
  }
}

.b-compare-your-salary {
  padding-top: 40px;
  height: 100%;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e2ecef;
}

.b-compare-your-salary__checkbox {
  background-color: #f0f6fa;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 440px;
  font-family: Roboto;
  font-size: 16px;
  margin-bottom: 12px;
  padding: 12px;
}

.b-compare-your-salary__checkbox input {
  width: 21px;
  height: 21px;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 999;
}

.b-compare-your-salary__checkbox input + .checkmark {
  border: 2px solid #ee8f44;
  border-radius: 5px;
  background-color: #fff;
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  top: 0;
  position: relative;
}

.b-compare-your-salary__checkbox input:checked + .checkmark {
  background-color: #ee8f44;
}

.b-compare-your-salary__checkbox input:checked + .checkmark:after {
  content: "\2714";
  font-size: 14px;
  position: absolute;
  top: -1px;
  left: 4px;
  color: #f9f9fa;
}

.b-compare-your-salary__checkbox label {
  padding-left: 8px;
}

.b-compare-your-salary__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.b-compare-your-salary__title {
  font-family: Roboto-Bold;
  font-size: 28px;
  padding-top: 56px;
  position: relative;
  margin-bottom: 28px;
  color: #001f33;
}

.b-compare-your-salary__title:after {
  color: #ee8f44;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 32px;
  position: absolute;
  top: 110px;
  left: 50%;
  bottom: -6px;
  border-width: 0 0 4px;
  border-style: solid;
}

.b-compare-your-salary__text {
  text-align: start;
  font-size: 16px;
  max-width: 466px;
  font-family: Roboto-Regular;
  margin-bottom: 0px;
  line-height: 25px;
  color: #001f33;
}

.b-compare-your-salary__subtitle {
  text-align: start;
  font-family: Roboto-Bold;
  font-size: 24px;
  margin-bottom: 18px;
  margin-top: 18px;
}

.b-compare-your-salary__subSubTitle {
  text-align: start;
  font-family: Roboto-Bold;
  font-size: 16px;
  margin-bottom: 7px;
  margin-top: 18px;
}

.b-compare-your-salary .bottom-spacing {
  margin-bottom: 32px;
}

.b-compare-your-salary select {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 30px !important;
}

.b-compare-your-salary label {
  font-family: "Roboto-Regular";
  font-size: 16px;
  margin: 0;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 58px;
  width: 680px;
}

@media only screen and (max-width: 768px) {
  .form {
    padding: 0;
  }
}

@media only screen and (max-width: phone) {
  .form {
    padding: 0;
  }
}

.main {
  max-width: 680px;
}

.stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 0.5rem;
}

@media only screen and (max-width: 680px) {
  .stepper {
    width: 680px;
  }
}

.step {
  width: 25%;
  padding: 0.5rem 0;
  text-align: center;
  height: 100%;
}

.stepper-step.form {
  /* // top: 90px; */
  background: #fff;
  text-align: center;
  position: relative;
  display: none;
  padding-left: 80px;
  padding-right: 80px;
}

.stepper-step {
  width: 680px;
}

.stepper-step.stepper-step-3 .stepper-content {
  padding: 30px 0;
}

.stepper-step.stepper-step-3 .stepper-content > * {
  padding: 0 40px;
}

.stepper-step .box-info-wrapp {
  margin-top: 30px;
}

.stepper-step .box-info-wrapp .box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 440px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stepper-step .box-info-wrapp .box-info-name {
  font: normal normal bold 16px/19px Roboto;
}

.stepper-step .box-info-wrapp .box-info label.unrequired {
  font-weight: medium;
  font-size: 14px;
  color: #7a8d99;
}

.stepper-step-btn-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 40px;
}

.stepper-step .stepper-content {
  padding: 40px;
}

.form--header-container {
  color: #fff;
  height: 6rem;
  margin-bottom: 3rem;
}

.form--header-title {
  /* top: 0px;
    margin: auto; */
  font-size: 2rem;
}

.form-slider input[type="text"] {
  width: 4rem;
  height: 100%;
  outline: none;
  border: none;
}

.form__btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: none;
  color: white;
  border-radius: 5px;
  background-color: #ff8520;
  padding: 20px 0px;
  width: 173px;
  height: 60px;
  font-size: 18px;
  line-height: 21px;
  font-family: Roboto-Black;
  margin-left: 20px;
}

.form__btn:hover {
  text-decoration: none;
  color: white;
  background-color: #976741;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.prev-step {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: none;
  color: black;
  border-radius: 5px;
  background-color: white;
  padding: 20px 0px;
  width: 81px;
  height: 60px;
  font-size: 18px;
  font-family: Roboto-Black;
  margin-right: 20px;
  margin-left: 20px;
}

.prev-step::before {
  position: absolute;
  top: 23px;
  left: -10px;
  content: "";
  display: block;
  height: 13px;
  width: 20px;
  background-image: url(../images/left.svg);
  background-size: cover;
}

.prev-step:hover {
  color: black;
  background-color: #fff;
  text-decoration: none;
}

.old-age {
  margin-top: 20px;
}

.form-active.stepper-step {
  z-index: 1000;
  display: block;
}

.form-active-animate {
  -webkit-animation: moveRight 1s;
  animation: moveRight 1s;
}

.form-inactive {
  display: block;
  -webkit-animation: moveLeft 1s;
  animation: moveLeft 1s;
}

.step-active {
  background: orange;
}

.step-inactive {
  background: #f8e2b9;
}

@-webkit-keyframes moveRight {
  0% {
    -webkit-transform: translateX(-27rem) scale(0.9);
    transform: translateX(-27rem) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0rem) scale(1);
    transform: translateX(0rem) scale(1);
    opacity: 1;
  }
}

@keyframes moveRight {
  0% {
    -webkit-transform: translateX(-27rem) scale(0.9);
    transform: translateX(-27rem) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0rem) scale(1);
    transform: translateX(0rem) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes moveLeft {
  0% {
    -webkit-transform: translateX(0rem) scale(1);
    transform: translateX(0rem) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(27rem) scale(0.9);
    transform: translateX(27rem) scale(0.9);
    opacity: 0;
  }
}

@keyframes moveLeft {
  0% {
    -webkit-transform: translateX(0rem) scale(1);
    transform: translateX(0rem) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(27rem) scale(0.9);
    transform: translateX(27rem) scale(0.9);
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}

.field-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  width: 100%;
}

@media only screen and (max-width: 680px) {
  .field-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.field-container label {
  padding-left: 8px;
  padding-top: 12px;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #48555e;
}

.money-input {
  position: relative;
  height: 50px;
  width: 95px;
  padding-right: 15px;
  background-color: #ffffff;
  border: 1px solid #d5dbe1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px #1b374a1a;
          box-shadow: 0px 5px 10px #1b374a1a;
}

.money-input input {
  font-size: 16px;
  font-family: Roboto-Regular;
  padding-left: 8px;
  color: #48555e;
}

.money-input img {
  position: absolute;
  top: 16px;
  right: 14px;
  content: url("../images/pencil.svg");
}

@media only screen and (max-width: 680px) {
  .form-slider-1 {
    width: 370px !important;
    height: 200px;
    padding: 0px;
  }
  .slider-visible-container {
    width: 325px !important;
  }
  .slider-range-visible {
    width: 300px !important;
  }
  #slider-visible {
    display: block !important;
    width: 320px !important;
  }
}

@media only screen and (max-width: 680px) {
  .form-slider-flexbox {
    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 !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
    width: 335px !important;
    margin-right: 0px !important;
  }
}

.slidecontainer.nmb-employees {
  width: 100% !important;
}

.slidecontainer.nmb-employees > input {
  width: calc(100% - 50px) !important;
}

@media only screen and (max-width: 680px) {
  .slidecontainer.nmb-employees > input {
    width: 300px !important;
  }
}

.slidecontainer.nmb-employees .slider {
  margin-left: 0;
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--val) - var(--min)) / var(--range));
  --sx: calc(0.5 * 1.2em + var(--ratio) * (100% - 1em));
}

.slidecontainer.nmb-employees .slider-numbers {
  width: 100% !important;
}

.slidecontainer.nmb-employees .slider-numbers > span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 7);
          flex: 0 0 calc(100% / 7);
}

.slidecontainer {
  position: relative;
  width: 285px;
}

.slidecontainer .company-size {
  bottom: -100px;
}

.slidecontainer input {
  width: 285px;
}

@media only screen and (max-width: 680px) {
  .slidecontainer {
    display: none;
  }
}

.slidecontainer .slider-numbers {
  position: absolute;
  width: 321px;
}

.slidecontainer .slider-numbers span {
  font-size: 12px;
  color: #48555e;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.slider {
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--val) - var(--min)) / var(--range));
  --sx: calc(0.5 * 1.5em + var(--ratio) * (100% - 1em));
}

.slider {
  -webkit-appearance: none;
  width: 680px;
  margin-top: 11px;
  margin-left: 17px;
  border-radius: 5px;
  background: #d3d3d3;
}

.Gender {
  display: inline;
  padding: 20px;
  border: 1px solid #9696a3;
  border-radius: 2px;
}

.slider::-webkit-slider-runnable-track {
  background: -webkit-gradient(linear, left top, left bottom, from(#ee8f44), to(#ee8f44)) 0/var(--sx) 100% no-repeat #ccc;
  background: linear-gradient(#ee8f44, #ee8f44) 0/var(--sx) 100% no-repeat #ccc;
  border-radius: 5px;
  height: 5px;
}

.slider::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  -webkit-transform: translate(0%, -41%);
          transform: translate(0%, -41%);
  width: 22px;
  height: 22px;
  background: url("../images/contrasticon.svg");
  cursor: pointer;
  z-index: 5;
}

.slider-steps {
  position: relative;
  z-index: 0;
  --slider-offset: 18;
  height: 11px;
  width: 283px;
  margin-left: calc(var(--slider-offset) * 1px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 415px) {
  .slider-steps {
    width: 200px;
  }
}

@media (max-width: 415px) {
  #BiggerSlider {
    width: 200px;
  }
}

#BiggerSlider div:nth-child(odd) {
  height: 40px;
  border-right: solid 1px #d5dbe1;
}

.slider-steps div {
  border-right: solid 1px #d5dbe1;
  -webkit-box-flex: 14%;
  -ms-flex: 14%;
  flex: 14%;
  height: 90%;
}

.slider-steps.hide-slider-steps > div {
  display: none;
}

.slider-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: flex-center !important;
}

.slider-numbers span {
  width: 14.2%;
  font-size: 0.5em;
}

.slider-numbers span.slider-number {
  position: relative;
}

.slider-numbers span.slider-number::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -10px;
  width: 1px;
  height: 10px;
  background-color: #d5dbe1;
}

.slider-numbers span.slider-number.long-dash {
  position: relative;
  padding-top: 25px;
}

.slider-numbers span.slider-number.long-dash::before {
  height: 30px;
}

.slider-margin-adjust {
  width: 520px;
  margin-left: -40px;
}

.form-slider-container .form-slider {
  padding: 0;
  width: 434px;
}

#age {
  bottom: -70px;
  left: -120px;
}

.form-slider {
  padding: 16px 40px 25px;
  min-height: 126px;
  margin-bottom: 35px;
  background-color: #f5fbff;
}

@media only screen and (max-width: 768px) {
  .form-slider {
    padding: 16px 20px 16px;
  }
}

@media only screen and (max-width: phone) {
  .form-slider {
    padding: 16px 20px 16px;
  }
}

.slider-regije .slider-numbers {
  width: 359px;
  margin-left: -21px;
}

.slider-regije .slider-numbers span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.activeCountry {
  fill: #ee8f44;
}

.inactiveCountry {
  z-index: -1;
  display: none;
}

.mapa {
  width: 100%;
  padding: 32px;
  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;
  background-color: #f5fbff;
}

.mapa label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3em;
          flex: 0 0 3em;
}

.mapa svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19em;
          flex: 0 0 19em;
}

.card-input-select {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  border-radius: 5px;
  border: 1px solid #f0f6fa;
}

.card-input-select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.card-input-select-box-text {
  text-align: left;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #7a8d99;
  margin-bottom: 0;
  font: normal normal medium 18px/23px Mulish;
}

@media only screen and (max-width: 650px) {
  .card-input-select {
    margin-bottom: 15px;
  }
  .card-input-select:last-child {
    margin-bottom: 0px;
  }
}

.card-input-select-dropdown {
  display: none;
  z-index: 999;
  position: absolute;
  width: 100%;
  margin-top: 4px;
  overflow: auto;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 20px #3061af33;
          box-shadow: 0px 10px 20px #3061af33;
}

.card-input-select-dropdown.show {
  display: block;
}

.card-input-select-dropdown.hide {
  display: none;
}

.card-input-select-dropdown > * {
  text-align: left;
}

.card-input-select-filter {
  padding: 15px 20px;
  background-color: #ffffff;
}

.card-input-select-filter > img {
  margin-right: 10px;
}

.card-input-select-filter > input {
  border: 0;
  outline: none;
}

.card-input-select-filter > input::-webkit-input-placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.card-input-select-filter > input:-ms-input-placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.card-input-select-filter > input::-ms-input-placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.card-input-select-filter > input::placeholder {
  font: normal normal normal 16px/19px Roboto;
  color: #bebebe;
}

.card-input-select-names {
  height: 240px;
  overflow-y: scroll;
  background-color: #ffffff;
  padding: 10px;
}

.card-input-select-names-item > p {
  padding: 8px 15px;
  margin-bottom: 1px;
  cursor: pointer;
  font: normal normal normal 16px/19px Roboto;
  text-transform: uppercase;
  color: #001f33;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.card-input-select-names-item > p:hover {
  background-color: #f0f6fa;
}

.card-input-select-info {
  margin: 0;
  padding: 5px;
  font: normal normal normal 16px/19px Roboto;
  background-color: #f0f6fa;
  color: #7a8d99;
}

@media only screen and (max-width: 415px) {
  .b-compare-your-salary {
    padding-bottom: 30px;
  }
  .b-compare-your-salary .main {
    width: 100%;
  }
  .b-compare-your-salary .main .stepper {
    width: 100%;
  }
  .b-compare-your-salary .main .stepper-step {
    width: 100%;
  }
  .b-compare-your-salary .main .stepper-step.stepper-step-3 .field-container {
    width: 100% !important;
  }
  .b-compare-your-salary .main .stepper-step.stepper-step-3 .field-container .slidecontainer {
    width: 100%;
    margin-top: 10px;
  }
  .b-compare-your-salary .main .stepper-step.stepper-step-3 .field-container .slidecontainer > * {
    width: 100% !important;
    margin-left: 5px !important;
  }
  .b-compare-your-salary .main .stepper-step.stepper-step-3 .form-slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 180px;
  }
  .b-compare-your-salary .main .stepper-step .box-info-wrapp {
    margin-top: 10px;
  }
  .b-compare-your-salary .main .stepper-step .box-info-wrapp .box-info {
    width: 100%;
  }
  .b-compare-your-salary .main .stepper-step-btn-box {
    margin: 20px 0;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .b-compare-your-salary .main .stepper-step.form {
    padding: 0 10px;
  }
  .b-compare-your-salary .main .stepper-step .form-slider {
    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;
  }
  .b-compare-your-salary .main .stepper-step .form-slider .field-container {
    width: auto;
  }
  .b-compare-your-salary .main .stepper-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
  .b-compare-your-salary .main .stepper-content > * {
    padding: 0 20px;
    width: 100%;
  }
  .b-compare-your-salary .main .stepper-content .slider-margin-adjust {
    margin-left: 0;
  }
  .b-compare-your-salary .main .stepper-content .mapa {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.gender-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gender-box .gender-box-item {
  width: 104px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #d5dbe1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px #1b374a1a;
          box-shadow: 0px 5px 10px #1b374a1a;
  cursor: pointer;
  background-color: #ffffff;
  margin-right: 15px;
}

.gender-box .gender-box-item.checked {
  background-color: #ee8f44;
}

.gender-box .gender-box-item .name {
  margin: 0;
  font: normal normal normal 16px/26px PT Sans;
}

.gender-box .gender-box-item .name.checked {
  color: #ffffff;
}

.gender-box .gender-box-item .checkbox {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #ee8f44;
  margin-right: 8px;
  position: relative;
}

.gender-box .gender-box-item .checkbox.checked {
  border: 1px solid #ffffff;
}

.gender-box .gender-box-item .checkbox.checked::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffffff;
  top: 25%;
  left: 25%;
}

.calculations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 80%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calculations .button-container {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 10%;
  height: 650px;
}

.calculations .button-container .informative-btn {
  width: 200px;
  height: 62px;
  background: #ee8f44 0% 0% no-repeat padding-box;
  border-radius: 5px;
  border: 0px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calculations .button-container .informative-btn p {
  margin: auto;
  font-size: 16px;
  font-family: Muli-Bold;
  color: #ffffff;
}

.calculations .button-container .informative-btn img {
  margin-right: 10px;
}

.calculations .button-container .informative-btn:hover {
  background: #c9732e;
}

.calculations .brutto-netto-container {
  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;
  position: relative;
  width: 30%;
  text-align: center;
  font: normal normal bold 16px/19px "Roboto";
  color: #001f33;
  -webkit-box-shadow: 0px 5px 10px #1B374A1A;
          box-shadow: 0px 5px 10px #1B374A1A;
  background: #ffffff 0% 0% no-repeat padding-box;
}

.calculations .brutto-netto-container .salary-chooser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 10px;
  padding-bottom: 10px;
}

.calculations .brutto-netto-container .salary-chooser:hover {
  cursor: pointer;
}

.calculations .brutto-netto-container .salary-chooser .salary-choice {
  text-align: center;
  position: relative;
  width: 50%;
}

.calculations .brutto-netto-container .salary-chooser .salary-choice p {
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.calculations .brutto-netto-container .salary-chooser .NETTO {
  display: none;
}

.calculations .brutto-netto-container .salary-form {
  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: 30px;
}

.calculations .brutto-netto-container .salary-form .brutto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.calculations .brutto-netto-container .salary-form .netto {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.calculations .brutto-netto-container .salary-form .text {
  font: normal normal bold 16px/19px "Roboto";
  margin-top: 20px;
  margin-bottom: 5px;
}

.calculations .brutto-netto-container .salary-form .title {
  font: normal normal bold 20px/24px "Roboto";
  margin-top: 20px;
  margin-bottom: 5px;
}

.calculations .brutto-netto-container .salary-form .flex-row {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 40px;
}

.calculations .brutto-netto-container .salary-form .flex-row .tooltip-i {
  position: relative;
  background-image: url(/views/images/informativeCalculators/questionmark.svg);
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;
  margin-top: 11px;
  margin-left: 5%;
}

.calculations .brutto-netto-container .salary-form .flex-row .tooltip-i .tooltiptext {
  display: none;
  text-align: left;
  font: normal normal normal 10px/13px PT Sans;
  letter-spacing: 0px;
  color: #48555E;
  -webkit-box-shadow: 0px 5px 10px #1B374A1A;
          box-shadow: 0px 5px 10px #1B374A1A;
  border: 1px solid #001F33;
  background: #ffffff;
  padding: 10px;
  bottom: 125%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  z-index: 2;
  position: absolute;
}

.calculations .brutto-netto-container .salary-form .flex-row .tooltip-i .tooltiptext::after {
  content: "";
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  margin-left: -5px;
  border-width: 1px;
  border-style: solid;
  width: 10px;
  height: 10px;
  z-index: -1;
  background: white;
  border-color: transparent black black transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.calculations .brutto-netto-container .salary-form .flex-row .tooltip-i:hover .tooltiptext {
  display: inline-block;
}

.calculations .brutto-netto-container .salary-form .flex-row p.text-normal {
  font: normal normal normal 16px/26px "Roboto";
  margin-left: 10%;
  margin-top: 12px;
}

.calculations .brutto-netto-container .salary-form .flex-row input[type=checkbox] {
  -webkit-appearance: none;
  background-color: #fafafa;
  padding: 9px;
  display: inline-block;
  position: relative;
  border: 1px solid #EE8F44;
  border-radius: 5px;
}

.calculations .brutto-netto-container .salary-form .flex-row input[type=checkbox]:active, .calculations .brutto-netto-container .salary-form .flex-row input[type=checkbox]:checked:active {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.calculations .brutto-netto-container .salary-form .flex-row input[type=checkbox]:checked {
  background-color: #ee8f44;
}

.calculations .brutto-netto-container .salary-form .flex-row input[type=checkbox]:checked:after {
  content: '\2714';
  font-size: 14px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #ffffff;
}

.calculations .brutto-netto-container .salary-form input[type=text], .calculations .brutto-netto-container .salary-form input[type=number] {
  width: 100%;
  height: 43px;
  font: normal normal normal 16px/26px "Roboto";
  padding-left: 10px;
  -webkit-box-shadow: 0px 5px 10px #1B374A1A;
          box-shadow: 0px 5px 10px #1B374A1A;
  border: 1px solid #D5DBE1;
  border-radius: 5px;
}

.calculations .brutto-netto-container .salary-form input[type=text]:focus, .calculations .brutto-netto-container .salary-form input[type=number]:focus {
  outline: none;
  border: 1px solid #ee8f44;
}

.calculations .brutto-netto-container .salary-form .input-container {
  position: relative;
  width: 100%;
}

.calculations .brutto-netto-container .salary-form .input-container .euro-sign {
  font: normal normal bold 14px/19px "PT Sans";
  color: #ffffff;
  background: #ee8f44;
  width: 35px;
  height: 37px;
  border-radius: 5px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.calculations .calculation-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30%;
  background: #F0F6FA 0% 0% no-repeat padding-box;
  border-radius: 5px;
}

.calculations .calculation-results .title {
  width: 100%;
  background: #e2ecef;
  font: normal normal bold 32px/38px Roboto;
}

.calculations .calculation-results .result {
  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;
  border-bottom: 1px solid grey;
  -webkit-box-shadow: 0 4px 2px -2px #1B374A1A;
          box-shadow: 0 4px 2px -2px #1B374A1A;
  margin: 20px 20px 0 20px;
}

.calculations .calculation-results .result .key {
  text-align: left;
  font: normal normal bold 24px/28px Roboto;
  letter-spacing: 0px;
  color: #001F33;
}

.calculations .calculation-results .result .value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: right;
}

.calculations .calculation-results .result .value .number {
  font-size: 24px;
  font-family: Muli;
  color: #ee8f44;
}

.calculations .calculation-results .result .value .sign {
  font: normal normal bold 24px/28px Roboto;
  color: #001F33;
  margin-left: 10%;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}

.calculations .calculation-results .bottom {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#informative-title {
  margin: 40px;
}

.extra-commentary-container {
  width: 54%;
  font: normal normal normal 16px/26px "Roboto";
  margin-left: 14%;
  margin-top: 20px;
  margin-bottom: 40px;
}

p {
  margin: 0;
  padding: 0;
}

.H4 {
  font: normal normal bold 16px/19px "Roboto";
  color: #001f33;
}

.selected::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: #ee8f44;
  left: 0;
  top: 130%;
}

@media only screen and (max-width: 1100px) {
  .calculations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .calculations .button-container {
    height: auto;
    margin-bottom: 10px;
    width: 100%;
  }
  .calculations .button-container .informative-btn {
    width: 100%;
  }
  .calculations .brutto-netto-container {
    width: 100%;
  }
  .calculations .calculation-results {
    width: 100%;
  }
  .calculations .title {
    padding: 5px;
  }
  .extra-commentary {
    margin: 5% 10%;
  }
}

@media only screen and (max-width: 280px) {
  .calculations {
    width: 100%;
  }
}

.b-analysis-inquiry {
  background-color: #e2ecef;
}

.b-analysis-inquiry__container {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 50px 0px;
  background-image: url(../images/analysis_inquiry/background.svg);
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  .b-analysis-inquiry__container {
    padding: 20px 0px;
  }
}

@media only screen and (max-width: phone) {
  .b-analysis-inquiry__container {
    padding: 20px 0px;
  }
}

.b-analysis-inquiry__title {
  padding-bottom: 6px;
  font-family: Roboto-Bold;
  font-size: 32px;
  line-height: 38px;
  color: #001f33;
  margin-bottom: 10px;
  max-width: 682px;
}

@media only screen and (max-width: 768px) {
  .b-analysis-inquiry__title {
    font-size: 24px;
    line-height: 26px;
    padding-left: 30px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: phone) {
  .b-analysis-inquiry__title {
    font-size: 24px;
    line-height: 26px;
    padding-left: 30px;
    padding-right: 10px;
  }
}

.b-analysis-inquiry__text {
  max-width: 682px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
  color: #48555e;
  font-family: Roboto-Regular;
}

@media only screen and (max-width: 768px) {
  .b-analysis-inquiry__text {
    padding-right: 10px;
    font-size: 16px;
    line-height: 18px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: phone) {
  .b-analysis-inquiry__text {
    padding-right: 10px;
    font-size: 16px;
    line-height: 18px;
    padding-left: 30px;
  }
}

.b-analysis-inquiry__pdf {
  position: relative;
  padding-left: 52px;
  display: none;
  font-size: 16px;
  color: #ee8f44;
  margin-bottom: 55px;
  margin-top: 25px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-text-decoration-color: #ee8e4400;
          text-decoration-color: #ee8e4400;
}

@media only screen and (max-width: 768px) {
  .b-analysis-inquiry__pdf {
    margin-left: 30px;
  }
}

@media only screen and (max-width: phone) {
  .b-analysis-inquiry__pdf {
    margin-left: 30px;
  }
}

.b-analysis-inquiry__pdf:hover {
  color: #ee8f44;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.b-analysis-inquiry__pdf::before {
  position: absolute;
  top: -7px;
  left: 0px;
  content: "";
  display: block;
  height: 38px;
  width: 38px;
  background-image: url(../images/analysis_inquiry/pdf.svg);
  background-size: cover;
}

.b-analysis-inquiry__form {
  padding: 40px 120px 56px;
  min-height: 877px;
  max-width: 682px;
  background-color: white;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.b-analysis-inquiry__form-iframe {
  display: none;
}

@media only screen and (max-width: 768px) {
  .b-analysis-inquiry__form {
    padding: 30px 80px;
    min-height: 700px;
  }
}

@media only screen and (max-width: phone) {
  .b-analysis-inquiry__form {
    padding: 30px 80px;
    min-height: 700px;
  }
}

@media only screen and (max-width: 520px) {
  .b-analysis-inquiry__form {
    padding: 30px;
  }
}

@media only screen and (max-width: 407px) {
  .b-analysis-inquiry__form {
    padding: 30px 10px;
  }
}

.b-analysis-inquiry__form-title {
  margin-bottom: 0px;
  padding-bottom: 30px;
  font-size: 32px;
  color: #001f33;
  font-family: Roboto-Bold;
}

@media only screen and (max-width: 768px) {
  .b-analysis-inquiry__form-title {
    font-size: 26px;
  }
}

@media only screen and (max-width: phone) {
  .b-analysis-inquiry__form-title {
    font-size: 26px;
  }
}

.b-analysis-inquiry__form-label {
  font-size: 16px;
  line-height: 19px;
  color: #001f33;
  font-family: Roboto-Bold;
}

.b-analysis-inquiry__form-text {
  color: #7a8d99;
  font-size: 10px;
  line-height: 11px;
  margin-bottom: 24px;
  padding-top: 9px;
  font-family: Roboto-Regular;
}

.b-analysis-inquiry__form-input {
  min-width: 440px;
  height: 50px;
  border: #d5dbe1 solid 1px;
  -webkit-box-shadow: 0px 5px 10px #1b374a1a;
          box-shadow: 0px 5px 10px #1b374a1a;
  border-radius: 5px;
  margin-bottom: 23px;
  padding: 15px 17px;
  font-size: 16px;
  color: #48555e;
  font-family: Roboto-Regular;
}

@media only screen and (max-width: 768px) {
  .b-analysis-inquiry__form-input {
    min-width: 340px;
  }
}

@media only screen and (max-width: phone) {
  .b-analysis-inquiry__form-input {
    min-width: 340px;
  }
}

.b-analysis-inquiry__form-input:focus {
  outline: none;
  border: #ee8f44 solid 1px;
}

.b-analysis-inquiry__form-input-message {
  height: 150px;
  resize: none;
  word-break: break-word;
}

.b-analysis-inquiry__form #analysis-inquiry-submit {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 173px;
  height: 60px;
  text-transform: uppercase;
  padding: 20px 23px;
  margin-top: 30px;
}

.form-group-card {
  position: relative;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.error-hint {
  position: absolute;
  bottom: -17px;
  color: #7a8d99;
  font-size: 10px;
  line-height: 11px;
  margin-bottom: 24px;
  padding-top: 9px;
  color: #b0433e;
  font-family: Roboto-Regular;
}

input.invalid {
  border: 1px solid #b0433e;
}

textarea.invalid {
  border: 1px solid #b0433e;
}

.error-hint {
  color: #b0433e;
}

.hidden {
  display: none;
}

.mail-sent {
  position: relative;
  font-size: 16px;
  color: #001f33;
  width: 442px;
  min-height: 74px;
  background-color: #f0f6fa;
  font-family: Roboto-Regular;
  margin-top: 25px;
  margin-bottom: 0px;
  padding: 16px 10px 16px 35px;
  line-height: 17px;
}

.mail-sent::before {
  position: absolute;
  top: 20px;
  left: 18px;
  content: "";
  display: block;
  height: 9px;
  width: 11px;
  background-image: url(../images/check-mark-green.svg);
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .mail-sent {
    padding: 16px 10px 16px 30px;
    width: 335px;
    font-size: 14px;
  }
}

@media only screen and (max-width: phone) {
  .mail-sent {
    padding: 16px 10px 16px 30px;
    width: 335px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {
  .mail-sent {
    padding: 16px 10px 16px 30px;
    width: 270px;
    font-size: 12px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.mail-not-sent {
  font-size: 16px;
  color: #001f33;
  width: 442px;
  height: 46px;
  background-color: rgba(255, 0, 0, 0.219);
  font-family: Roboto-Regular;
  margin-top: 25px;
  margin-bottom: 0px;
  padding: 16px 20px 16px 35px;
  line-height: 17px;
}

@media only screen and (max-width: 768px) {
  .mail-not-sent {
    padding: 16px 10px 16px 30px;
    width: 335px;
    font-size: 14px;
  }
}

@media only screen and (max-width: phone) {
  .mail-not-sent {
    padding: 16px 10px 16px 30px;
    width: 335px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {
  .mail-not-sent {
    padding: 16px 10px 16px 30px;
    width: 270px;
    font-size: 12px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.phone-hidden {
  bottom: -40px;
}

.form-group-card-last {
  padding-top: 23px;
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type="text"],
.iti input[type="tel"] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #ccc;
  white-space: normal;
  max-height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 440px;
}

@media only screen and (max-width: 768px) {
  .iti__country-list {
    width: 340px;
  }
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 650px) {
  .iti__country-list {
    white-space: normal;
    width: 340px;
  }
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0px 0px 1px 0px #888;
          box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../images/flags.png");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

.iti__flag.iti__np {
  background-color: transparent;
}

.b-top-salary-list {
  background-color: #e2ecef;
}

.b-top-salary-list__container {
  padding: 47px 220px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1597px) {
  .b-top-salary-list__container {
    padding: 30px 70px 60px;
  }
}

@media only screen and (max-width: 1221px) {
  .b-top-salary-list__container {
    padding: 30px 30px 60px;
  }
}

@media only screen and (max-width: 829px) {
  .b-top-salary-list__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.b-top-salary-list__list {
  height: 1069px;
  max-width: 800px;
  background-color: #ffffff;
  padding: 40px 100px 60px;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 1113px) {
  .b-top-salary-list__list {
    padding: 30px 40px 30px;
  }
}

.b-top-salary-list__list-item {
  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;
  height: 61px;
  background-color: #f0f6fa;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 14px;
}

.b-top-salary-list__list-item-num {
  margin-bottom: 0px;
  background-color: #1b374a66;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  text-align: center;
  font-size: 16px;
  padding-top: 3.5px;
  color: #ffffff;
  font-family: Muli-Bold;
}

.b-top-salary-list__list-item-text {
  font-family: Roboto-Regular;
  font-size: 18px;
  color: #48555e;
  margin-bottom: 0px;
  padding-left: 14px;
}

.b-top-salary-list__list-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.b-top-salary-list__list-item-right {
  line-height: 26px;
  font-size: 16px;
  color: #001f33;
  margin-bottom: 0px;
  -ms-grid-column-align: end;
      justify-self: end;
  text-decoration: underline;
  font-family: PTSans-Regular;
}

.b-top-salary-list__title {
  font-family: Roboto-Bold;
  font-size: 32px;
  line-height: 38px;
  color: #001f33;
  text-align: center;
  margin-bottom: 35px;
}

.b-top-salary-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 20px;
  padding-right: 30px;
}

.b-top-salary-list__head-item {
  font-family: Roboto-Bold;
  font-size: 16px;
  line-height: 19px;
}

.b-top-salary-list__cta {
  display: block;
  margin-top: auto;
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #001f33;
  background-color: white;
  padding: 10px 0px;
  width: 81px;
  font-size: 16px;
  font-family: Roboto-Bold;
  margin-right: 20px;
  margin-left: 20px;
}

.b-top-salary-list__cta::before {
  position: absolute;
  top: 16px;
  left: -7px;
  content: "";
  display: block;
  height: 12px;
  width: 19px;
  background-image: url(../images/left.svg);
  background-size: cover;
}

.b-top-salary-list__cta:hover {
  color: #001f33;
  text-decoration: none;
}

.b-top-salary-list__right {
  margin-left: 40px;
}

.b-top-salary-list__right a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 829px) {
  .b-top-salary-list__right {
    margin-left: 0px;
    margin-top: 30px;
  }
}

.b-top-salary {
  background-color: #e2ecef;
}

.b-top-salary__container {
  padding: 75px 100px 100px;
}

@media only screen and (max-width: 967px) {
  .b-top-salary__container {
    padding: 35px 20px 20px;
  }
}

.b-top-salary__title {
  font-family: Roboto-Bold;
  font-size: 48px;
  color: #001f33;
  margin-bottom: 40px;
}

.b-top-salary__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 967px) {
  .b-top-salary__body {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.b-top-salary__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  max-width: 1040px;
}

@media only screen and (max-width: 1561px) {
  .b-top-salary__cards {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media only screen and (max-width: 1205px) {
  .b-top-salary__cards {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media only screen and (max-width: 967px) {
  .b-top-salary__cards {
    margin-bottom: 30px;
  }
}

.b-top-salary__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: 100px;
  background-color: #ffffff;
  min-height: 674px;
  max-width: 620px;
  -webkit-box-shadow: 0px 5px 10px #066aa029;
          box-shadow: 0px 5px 10px #066aa029;
  border-radius: 5px;
  padding: 124px 8px 24px;
}

.b-top-salary__card-img {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 0px;
  left: 50%;
}

.b-top-salary__card-title {
  font-family: Roboto-Bold;
  font-size: 24px;
  line-height: 28px;
  color: #001f33;
  padding: 0px 13px 47px;
  margin-bottom: 0px;
}

.b-top-salary__card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 61px;
  background-color: #f0f6fa;
  border-radius: 5px;
  margin-bottom: 12px;
  padding: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.b-top-salary__card-item:hover {
  background-color: #DCEDF8;
}

.b-top-salary__card-item-num {
  margin-bottom: 0px;
  background-color: #1b374a66;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  text-align: center;
  font-size: 16px;
  padding-top: 3.5px;
  color: #ffffff;
  font-family: Muli-Bold;
}

.b-top-salary__card-item-text {
  font-size: 18px;
  color: #48555e;
  margin-bottom: 0px;
  padding-left: 14px;
}

.b-top-salary__card-cta {
  margin-top: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: block;
  width: 250px;
  height: 43px;
  color: #ffffff;
  background-color: #ee8f44;
  font-size: 18px;
  font-family: Roboto-Black;
  padding: 10px 34px;
  text-transform: uppercase;
  border-radius: 5px;
}

.b-top-salary__card-cta:hover {
  text-decoration: none;
  color: white;
  background-color: #976741;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.b-top-salary__right {
  width: 320px;
  margin-left: 40px;
}

.b-top-salary__right a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 967px) {
  .b-top-salary__right {
    margin-left: 0px;
  }
}

.b-cta-compareSalary {
  z-index: -3;
  background-color: #e2ecef;
  min-height: 779px;
}

.b-cta-compareSalary__container {
  padding-top: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media only screen and (max-width: 1354px) {
  .b-cta-compareSalary__container {
    padding-top: 130px;
  }
}

@media only screen and (max-width: 1354px) {
  .b-cta-boxes__card-input-1 {
    margin-right: 0px;
  }
}

.m-salary-card {
  height: 332px;
  width: 320px;
  background-color: #f0f6fa;
  border-radius: 5px;
  padding: 32px 24px 23px;
  background-position: bottom right;
  background-repeat: no-repeat;
  margin-bottom: 32px;
}

.m-salary-card--woman {
  background-image: url(../images/top-salary/banner_w.png);
}

.m-salary-card--man {
  background-image: url(../images/top-salary/banner_m.png);
}

.m-salary-card__title {
  position: relative;
  font-size: 24px;
  line-height: 28px;
  color: #001f33;
  font-family: Roboto-Bold;
  padding-bottom: 23px;
  margin-bottom: 13px;
}

.m-salary-card__title:after {
  color: #ee8f44;
  content: "";
  width: 32px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-width: 0 0 4px;
  border-style: solid;
}

.m-salary-card__text {
  width: 162px;
  font-size: 16px;
  line-height: 26px;
  color: #001f33;
  font-family: Roboto-Bold;
  margin-bottom: 0px;
}

.m-salary-card__cta {
  margin-top: 11px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: block;
  width: 273px;
  height: 43px;
  color: #ffffff;
  background-color: #ee8f44;
  font-size: 18px;
  line-height: 21px;
  font-family: Roboto-Black;
  padding: 11px 32px;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
}

.m-salary-card__cta:hover {
  text-decoration: none;
  color: white;
  background-color: #976741;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.b-404 {
  background-color: #e2ecef;
  min-height: 779px;
}

.b-404__container {
  padding-top: 70px;
  padding-left: 100px;
  background-image: url(../images/analysis_inquiry/background.svg);
  background-repeat: no-repeat;
}

.b-404__title {
  color: #ee8f44;
  font-size: 160px;
  line-height: 192px;
  font-family: Roboto-Black;
}

.b-404__text {
  color: #001f33;
  font-size: 48px;
  font-family: Roboto-Bold;
}

.b-404__text-sm {
  color: #000000;
  font-size: 24px;
  font-family: Roboto-Regular;
  padding-bottom: 70px;
}

.b-404__btn {
  background-color: #ee8f44;
  width: 170px;
}

.news-header-color {
  color: #ee8f44;
}

.color-box {
  background-color: #ee8f44;
}

.body-fonts {
  font-family: "Roboto", sans-serif;
}

.list-dot {
  list-style-type: circle;
}

.margin-left {
  margin-left: 20px;
}

.full-dot {
  list-style-type: disc;
}

.delo-para {
  border-left: 5px solid #6c7472;
  margin-left: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
}

@media (max-width: 450px) {
  .prepoznateImg {
    width: 310px;
  }
}

@media (max-width: 450px) {
  .prepoznateImg-2 {
    width: 280px;
  }
}

.imgStyle {
  width: 658px;
}
/*# sourceMappingURL=bundle.css.map */