html {
  font-size: 10px;
  margin: 0 !important;
}

body {
  font-family: 'filson-pro', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  padding-top: 12rem;
}

[lanim] {
  opacity: 0;
}

:root {
  --container-static-width: 146rem;
  --container-small-width: 116rem;
  --container-padding: 8rem;
}

.container-block {
  padding: var(--container-padding);
}
.container {}
.container-static {
  width: var(--container-static-width);
  max-width: 100%;
  margin: 0 auto;
}
.container-small {
  width: var(--container-small-width);
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1700px) {
  html {
    font-size: 9.5px;
  }
}

@media screen and (max-width: 1450px) {
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 1100px) {
  html {
    font-size: 7px;
  }
}

@media screen and (max-width: 991px) {
  html {
    font-size: 10px;
  }

  body {
    padding-top: 8rem;
  }

  :root {
    --container-padding: 1.6rem;
    --container-padding-box: 4.8rem 1.6rem;
  }

  .container-block {
    padding: var(--container-padding-box);
  }
}

/* Header */

.header-block {
  height: 11.9rem;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
}
.header-block:before {
  content: '';
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 11.9rem;
  background: #002F47;
  border-bottom: 1px solid #4C6D7E;
}
.header {
  padding: 0 var(--container-padding);
  height: 11.9rem;
}
.header:before {
  content: '';
  position: absolute;
  z-index: 11;
  background: radial-gradient(rgba(105, 205, 221, .5) 0%, rgba(105, 205, 221, 0) 67%);
  width: 16%;
  aspect-ratio: 1 / 1;
  left: 0;
  top: 0;
  transform: translate(-38%, -71%);
}
.header:after {
  content: '';
  display: block;
  clear: both;
}
.header-logo-box {
  position: relative;
  z-index: 20;
  line-height: 10rem;
  float: left;
}
.header-logo-box > a {
  display: inline-block;
  vertical-align: middle;
}
.header-logo-box > a:focus-visible > img {
  outline: 2px solid #E30613;
  outline-offset: 8px;
}
.header-logo {
  width: 22rem;
  vertical-align: middle;
}
.header-mobile {
  display: none;
}
.header-search-box {
  position: relative;
  z-index: 20;
  padding-left: .5rem;
}
.header-search {
  color: #FFF;
  background: url(../images/search.svg) no-repeat center;
  border: 2px solid transparent;
  box-sizing: border-box;
  font-size: 0;
  padding: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  cursor: pointer;
  transition: .2s all ease-in-out;
}
.header-search:focus-visible {
  border-color: #E30613;
}
.header-hamburger-box {}
.header-hamburger {}
.header-menu-block {
  margin-left: 22rem;
  display: flex;
  align-items: center;
  padding-top: .1rem;
  height: 11.8rem;
}
.header-menu-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-menu {}
.header-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.header-menu-list > li {}
.header-menu-item-box {
  position: relative;
  z-index: 20;
  height: 11.8rem;
  line-height: 11.8rem;
}
.header-menu-item {
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3.6rem;
  display: inline-block;
  padding: 0 1.8rem;
  border-radius: 2rem;
  position: relative;
  border: 2px solid transparent;
  transition: .2s all ease-in-out;
}
.header-menu-list > li:has(.header-submenu-block) .header-menu-item {
  padding-right: 4.6rem;
}
.header-menu-list > li:has(.header-submenu-block) .header-menu-item:after {
  content: '';
  width: 1rem;
  height: .6rem;
  background: url(../images/arrow-menu.svg) no-repeat center / contain;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
span.header-menu-item {
  cursor: default;
}
.header-menu-item:focus-visible {
  border-color: #E30613;
}
.header-menu-item.active {
  border-color: #4C6D7E;
  background: #4C6D7E;
}
.header-submenu-block {
  position: absolute;
  z-index: 5;
  left: 0;
  width: 100%;
  top: 0;
  padding-top: 13rem;
  padding-bottom: 3rem;
  background: #002F47;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, .2);
  transform: translate(0, -100%);
  transition: .4s all ease-in-out;
}
.header-menu-list > li:focus-within > .header-submenu-block {
  transform: translate(0, 0);
}
.header-submenu-box {
  padding: 0 var(--container-padding);
}
.header-submenu-box:after {
  content: '';
  display: block;
  clear: both;
}
.header-submenu-label {
  color: #FFF;
  margin: 0;
  float: left;
  width: 23%;
  padding-right: calc(2% + .8rem);
  font-size: 5.5rem;
  font-weight: 100;
}
.header-submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.header-submenu-list > li {
  width: calc(33.3333% - 1.2rem);
  padding-right: 1.8rem;
  float: left;
}
.header-submenu-list > li:has(.header-subsubmenu) {
  width: 100%;
  padding: 0;
}
.header-submenu-list > li:has(.header-subsubmenu) .header-submenu-item-box {
  border: none;
}
.header-submenu-list > li:nth-child(3n) {
  padding: 0;
}
.header-submenu-item-box {
  border-bottom: 1px solid #69CDDD;
  padding: .7rem 0;
}
.header-submenu-item {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.header-submenu-item:focus-visible {
  border-color: #E30613;
}
.header-submenu-item:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.header-submenu-item:focus-visible:before {
  left: 2rem;
}
.header-subsubmenu {
  margin-top: 1rem;
}
.header-subsubmenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.header-subsubmenu-list > li {
  width: 11rem;
  max-width: 11rem;
  min-width: 11rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.header-subsubmenu-item {
  color: #FFF;
  padding: .8rem;
  border: 2px solid transparent;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  border-radius: .8rem;
  background: transparent;
  transition: .2s all ease-in-out;
}
.header-subsubmenu-item:focus-visible {
  background: #194359;
  border-color: #E30613;
}
.header-subsubmenu-iicon-box {
  text-align: center;
  height: 6.6rem;
  line-height: 6.6rem;
}
.header-subsubmenu-iicon {
  max-width: 6.6rem;
  vertical-align: middle;
  max-height: 6.6rem;
}
.header-subsubmenu-ilabel {
  color: #FFF;
  font-size: 1.3rem;
  font-weight: 300;
  margin-top: 1.6rem;
}
.header-socials-box {
  position: relative;
  z-index: 20;
}
.header-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
}
.header-social-link {
  color: #FFF;
  text-decoration: none;
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 4rem;
  height: 4rem;
  border: 2px solid transparent;
  border-radius: 50%;
  background: none no-repeat center;
  transition: .2s all ease-in-out;
}
.header-social-link:focus-visible {
  border-color: #E30613;
}
.header-social-linkedin {
  background-image: url(../images/socials/linkedin.svg);
}
.header-social-instagram {
  background-image: url(../images/socials/instagram.svg);
}
.header-social-facebook {
  background-image: url(../images/socials/facebook.svg);
}
.header-language-block {
  position: relative;
  z-index: 20;
  margin-left: .5rem;
}
.header-language-label-box {
  position: relative;
  z-index: 2;
}
.header-language-label {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  text-transform: uppercase;
  line-height: 3.6rem;
  display: inline-block;
  padding: 0 4.2rem 0 1.8rem;
  border-radius: 2rem;
  position: relative;
  border: 2px solid transparent;
  transition: .2s all ease-in-out;
}
.header-language-label:after {
  content: '';
  width: 1rem;
  height: .6rem;
  background: url(../images/arrow-menu.svg) no-repeat center / contain;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.header-language-box {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #002F47;
  padding: 3.4rem 0 1.4rem;
  border-radius: 0 0 1rem 1rem;
  top: -100vw;
  opacity: 0;
  transform: translate(0, -1rem);
  transition: .4s opacity ease-in-out, .4s transform ease-in-out, 0s top ease .4s;
}
.header-language-block:focus-within .header-language-box {
  top: 2rem;
  opacity: 1;
  transform: translate(0, 0);
  transition: .4s opacity ease-in-out, .4s transform ease-in-out;
}
.header-language-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-language-link {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 4rem;
  display: block;
  position: relative;
  padding: .2rem 0 .2rem 1.6rem;
}
.header-language-link:before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 4rem;
  top: 50%;
  left: 1.6rem;
  background: transparent;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.header-language-link:focus-visible:before {
  border-color: #E30613 !important;
}
.header-language-link.active:before {
  border-color: #194359;
  background-color: #194359;
}
.header-language-link > span {
  display: inline-block;
  vertical-align: top;
  width: 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.header-bsearch-block {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  top: 0;
  padding-top: 12rem;
  background: #002F47;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, .2);
  transform: translate(0, -100%);
  transition: .4s all ease-in-out;
}
.header-bsearch-block.open {
  transform: translate(0, 0);
}
.header-bsearch {
  padding: 0 var(--container-padding);
}
.header-bsearch:after {
  content: '';
  clear: both;
  display: block;
}
.header-bsearch-title-box {
  float: left;
  width: 23%;
  padding-right: calc(2% + .8rem);
  padding-top: 3.8rem;
}
.header-bsearch-title {
  color: #FFF;
  margin: 0;
  font-size: 5.5rem;
  font-weight: 100;
  line-height: 4rem;
}
.header-bsearch-form-box {
  overflow: hidden;
  padding: 4rem 17% 4rem 0;
}
.header-bsearch-form {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header-bsearch-input-block {
  flex: 1;
}
.header-bsearch-input-box {
  cursor: text;
  position: relative;
  display: block;
}
.header-bsearch-input {
  color: #FFF;
  width: 100%;
  box-sizing: border-box;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0 .8rem;
  border: none;
  background: none;
  border-bottom: 1px solid #69CDDD;
  transition: .2s all ease-in-out;
}
.header-bsearch-input:focus {
  border-color: #E30613;
}
.header-bsearch-input-label {
  color: #FFF;
  transform: translate(0, -50%) scale(1);
  transform-origin: left;
  top: 50%;
  left: 0;
  position: absolute;
  transition: .2s all ease-in-out;
}
.header-bsearch-input:focus + .header-bsearch-input-label,
.header-bsearch-input.not-empty + .header-bsearch-input-label {
  top: 0;
  transform: translate(0, -50%) scale(.6);
}
.header-bsearch-submit-box {}
.header-bsearch-submit {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3.6rem;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2rem;
  cursor: pointer;
  padding: 0 5.2rem 0 1.8rem;
  background: url(../images/search.svg) no-repeat;
  background-size: 2.4rem 2.4rem;
  background-position: calc(100% - 1.3rem);
  transition: .2s all ease-in-out;
}
.header-bsearch-submit:focus-visible {
  border-color: #E30613;
}

@media screen and (min-width: 992px) {
  .header-search:hover {
    border-color: #E30613;
  }
  .header-menu-item:hover {
    border-color: #E30613;
  }
  .header-menu-list > li:hover > .header-submenu-block {
    transform: translate(0, 0);
  }
  .header-submenu-item:hover {
    border-color: #E30613;
  }
  .header-submenu-item:hover:before {
    left: 2rem;
  }
  .header-subsubmenu-item:hover {
    background: #194359;
    border-color: #194359;
  }
  .header-social-link:hover {
    border-color: #E30613;
  }
  .header-language-block:hover .header-language-label {
    border-color: #E30613;
  }
  .header-language-block:hover .header-language-box {
    top: 2rem;
    opacity: 1;
    transform: translate(0, 0);
    transition: .4s opacity ease-in-out, .4s transform ease-in-out;
  }
  .header-language-link:hover:before {
    border-color: #E30613;
  }
  .header-bsearch-input-box:hover .header-bsearch-input {
    border-color: #E30613;
  }
  .header-bsearch-submit:hover {
    border-color: #E30613;
  }
}

@media screen and (max-width: 991px) {
  .header-block {
    height: 7.9rem;
  }
  .header-block:before {
    height: 7.9rem;
  }
  .header-block:after {}
  .header {
    height: 7.9rem;
  }
  .header:before {
    width: 72%;
    transform: translate(-38%, -71%);
  }
  .header-logo-box {
    max-width: 50%;
    line-height: 5rem;
    text-align: left;
    padding-top: .8rem;
  }
  .header-logo-box > a {
    max-width: 100%;
  }
  .header-logo {
    width: 100%;
    height: 5rem;
    object-fit: contain;
    object-position: left;
  }
  .header-mobile {
    display: flex;
    float: right;
    align-items: center;
    height: 7.9rem;
  }
  .header-search-box {
    display: none;
  }
  .header-mobile .header-search-box {
    display: block;
  }
  .header-search {}
  .header-hamburger-box {}
  .header-hamburger {
    width: 5rem;
    height: 5rem;
    position: relative;
    padding: 0;
    z-index: 20;
    background: none;
    border: none;
  }
  .header-hamburger:before {
    content: '';
    width: 1.6rem;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 6px) rotate(0deg);
    transition: .2s all ease-in-out;
  }
  .header-hamburger:after {
    content: '';
    width: 1.6rem;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, -6px) rotate(0deg);
    transition: .2s all ease-in-out;
  }
  .header-hamburger > span {
    font-size: 0;
    width: 1.6rem;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: .2s all ease-in-out;
  }
  .header-hamburger.open:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header-hamburger.open:after {
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .header-hamburger.open > span {
    opacity: 0;
  }
  .header-menu-block {
    position: absolute;
    z-index: 3;
    height: auto;
    margin: 0;
    width: 100%;
    padding: 0;
    display: block;
    background: #002F47;
    max-height: calc(100vh - 8rem);
    padding: var(--container-padding-box);
    padding-top: 10rem;
    top: 8rem;
    box-sizing: border-box;
    overflow: auto;
    left: -100%;
    transition: .4s left ease-in-out;
  }
  .header-menu-block.open {
    left: 0;
  }
  .header-menu-box {
    display: block;
  }
  .header-menu {}
  .header-menu-list {
    display: block;
  }
  .header-menu-item-box {
    line-height: normal;
    display: block;
    height: auto;
  }
  .header-menu-item {
    padding: .4rem 1.8rem;
  }
  .header-menu-list > li.open .header-menu-item:after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .header-submenu-block {
    position: static;
    padding: 0;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: .4s all ease-in-out;
  }
  .header-menu-list > li.open .header-submenu-block {
    max-height: max-content;
  }
  .header-submenu-box {
    padding: 0;
  }
  .header-submenu-label {
    display: none;
  }
  .header-submenu-list {}
  .header-submenu-list > li {
    width: auto;
    padding: 0;
    float: none;
  }
  .header-submenu-item-box {
    padding: 0;
    border: none;
  }
  .header-submenu-item {
    font-size: 1.3rem;
    border: none;
    line-height: 1.6rem;
    height: auto;
    padding: 1.6rem 2rem 1.6rem 4rem;
    display: block;
  }
  .header-submenu-item:before {
    display: none;
  }
  .header-subsubmenu {
    margin: 0 4rem;
  }
  .header-subsubmenu-list {
    display: block;
    border-left: 1px solid #69CDDD;
  }
  .header-subsubmenu-list > li {
    max-width: none;
    min-width: auto;
    width: auto;
    display: block;
  }
  .header-subsubmenu-item {
    text-align: left;
    border: none;
    padding: 1.6rem 1.6rem;
  }
  .header-subsubmenu-iicon-box {
    display: none;
  }
  .header-subsubmenu-iicon {}
  .header-subsubmenu-ilabel {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
  .header-socials-box {
    position: absolute;
    left: 1rem;
    top: 1rem;
  }
  .header-socials {
    gap: 0;
  }
  .header-social-link {
    width: 5rem;
    height: 5rem;
  }
  .header-social-linkedin {}
  .header-social-instagram {}
  .header-social-facebook {}
  .header-language-block {
    position: absolute;
    top: 1.2rem;
    right: 1rem;
  }
  .header-language-label-box {}
  .header-language-label {}
  .header-language-block.open .header-language-label:after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .header-language-box {
    padding-top: 2rem;
  }
  .header-language-block.open .header-language-box {
    top: 2rem;
    opacity: 1;
    transform: translate(0, 0);
    transition: .4s opacity ease-in-out, .4s transform ease-in-out;
  }
  .header-language-list {}
  .header-language-link {}
  .header-bsearch-block {
    padding-top: 8rem;
  }
  .header-bsearch {
    padding: var(--container-padding-box);
  }
  .header-bsearch-title-box {
    float: none;
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  .header-bsearch-title {
    font-size: 3rem;
    line-height: 3rem;
  }
  .header-bsearch-form-box {
    padding: 0;
  }
  .header-bsearch-input-block {}
  .header-bsearch-input-box {}
  .header-bsearch-input {}
  .header-bsearch-input-label {}
  .header-bsearch-submit-box {}
  .header-bsearch-submit {
    font-size: 0;
    width: 5rem;
    height: 5rem;
    padding: 0;
    background-position: center;
  }
}

/* Footer */

.footer-block {
  background: #002F47;
  padding: var(--container-padding);
  position: relative;
  overflow: hidden;
}
.footer-block:before {
  content: '';
  position: absolute;
  z-index: 1;
  background: radial-gradient(rgba(105, 205, 221, .5) 0%, rgba(105, 205, 221, 0) 50%);
  width: 60%;
  aspect-ratio: 1 / 1;
  left: 0;
  top: 0;
  transform: translate(-43%, -62%);
}
.footer-block:after {
  content: '';
  position: absolute;
  z-index: 1;
  background: radial-gradient(rgba(105, 205, 221, .2) 0%, rgba(105, 205, 221, 0) 50%);
  width: 40%;
  aspect-ratio: 1 / 1;
  right: 0;
  bottom: 0;
  transform: translate(34%, 46%);
}
.footer {
  color: #FFF;
  position: relative;
  z-index: 2;
}
.footer-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: stretch;
}
.footer-col {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}
.footer-col-line {
  padding-left: 2.4rem;
  border-left: 1px solid rgba(255, 255, 255, .3);
}
.footer-col-title-box {
  opacity: .5;
  margin-bottom: 2rem;
}
.footer-col-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-col-body {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2.1rem;
}
.footer-col-body a {
  color: #FFF;
  text-decoration: none;
  transition: .2s all ease-in-out;
}
.footer-col-body a:focus-visible {
  color: #69CDDD;
  outline: 2px solid #E30613;
  outline-offset: 2px;
}
.footer-menu-box {}
.footer-menu {
  list-style: none;
  padding: 0;
}
.footer-menu > li {}
.footer-menu > li > a {
  color: #FFF;
  text-decoration: none;
  transition: .2s all ease-in-out;
}
.footer-col-footer {
  margin-top: auto;
  padding-top: 4rem;
}
.footer-col-logo-box {
  margin-bottom: 4rem;
}
.footer-col-logo {
  max-height: 5rem;
  max-width: 22rem;
}
.footer-col-email-box {}
.footer-col-email {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 4rem;
  line-height: calc(3.8rem - 4px);
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  border: 2px solid transparent;
  padding: 0 2rem 0 4.6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.footer-col-email:focus-visible {
  border-color: #E30613;
}
.footer-col-email:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.footer-col-email:focus-visible:before {
  left: 2rem;
}
.footer-bottom {
  margin-top: 4rem;
}
.footer-bottom:after {
  content: '';
  clear: both;
  display: block;
}
.footer-left {
  float: left;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.footer-copyright {
  font-size: 1.5rem;
  font-weight: 300;
}
.footer-bottom-link-box {}
.footer-bottom-link {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 4rem;
  line-height: calc(3.8rem - 4px);
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  border: 2px solid transparent;
  padding: 0 2rem 0 4.6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.footer-bottom-link:focus-visible {
  border-color: #E30613;
}
.footer-bottom-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.footer-bottom-link:focus-visible:before {
  left: 2rem;
}
.footer-right {
  float: right;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.footer-socials-box {}
.footer-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
}
.footer-social-link {
  color: #FFF;
  text-decoration: none;
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 4rem;
  height: 4rem;
  border: 2px solid transparent;
  border-radius: 50%;
  background: none no-repeat center;
  transition: .2s all ease-in-out;
}
.footer-social-link:focus-visible {
  border-color: #E30613;
}
.footer-social-linkedin {
  background-image: url(../images/socials/linkedin.svg);
}
.footer-social-instagram {
  background-image: url(../images/socials/instagram.svg);
}
.footer-social-facebook {
  background-image: url(../images/socials/facebook.svg);
}
.footer-author-box {}
.footer-author {
  color: #FFF;
  font-size: 1.5rem;
  background: url(../images/atom.svg) no-repeat right;
  background-size: 1.9rem;
  text-decoration: none;
  display: inline-block;
  line-height: 2rem;
  padding: 1rem 2.3rem 1rem 0;
  vertical-align: middle;
  transition: .2s all ease-in-out;
}
.footer-author:focus-visible {
  color: #69CDDD;
  background-image: url(../images/atom-hover.svg);
}

@media screen and (min-width: 992px) {
  .footer-col-body a:hover {
    color: #69CDDD;
  }
  .footer-col-email:hover {
    border-color: #E30613;
  }
  .footer-col-email:hover:before {
    left: 2rem;
  }
  .footer-bottom-link:hover {
    border-color: #E30613;
  }
  .footer-bottom-link:hover:before {
    left: 2rem;
  }
  .footer-social-link:hover {
    border-color: #E30613;
  }
  .footer-author:hover {
    color: #69CDDD;
    background-image: url(../images/atom-hover.svg);
  }
}

@media screen and (max-width: 991px) {
  .footer-block {
    padding: var(--container-padding-box);
  }
  .footer {}
  .footer-box {
    display: block;
  }
  .footer-col {
    padding-bottom: 2rem;
    padding-left: 0;
    border: none;
  }
  .footer-col-title-box {}
  .footer-col-title {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-right: 2rem;
  }
  .footer-col-title:after {
    content: '';
    width: 1rem;
    height: .6rem;
    background: url(../images/arrow-menu.svg) no-repeat center / contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: .2s all ease-in-out;
  }
  .footer-col:hover .footer-col-title:after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-col-body {
    overflow: hidden;
    max-height: 0;
  }
  .footer-col:hover .footer-col-body {
    max-height: max-content;
  }
  .footer-menu-box {}
  .footer-menu {}
  .footer-col-footer {
    overflow: hidden;
    max-height: 0;
    padding: 0;
  }
  .footer-col:hover .footer-col-footer {
    max-height: max-content;
  }
  .footer-col-logo-box {}
  .footer-col-logo {}
  .footer-col-email-box {
    padding-top: 1rem;
  }
  .footer-col-email {}
  .footer-bottom {
    margin-top: 2rem;
  }
  .footer-left {
    float: none;
    display: block;
  }
  .footer-copyright {}
  .footer-bottom-link-box {
    margin-top: 2rem;
  }
  .footer-bottom-link {}
  .footer-right {
    float: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
  }
  .footer-socials-box {}
  .footer-socials {}
  .footer-social-link {}
  .footer-social-linkedin {}
  .footer-social-instagram {}
  .footer-social-facebook {}
  .footer-author-box {}
  .footer-author {}
}

/* 404 */

.notfound-block {}
.notfound {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.notfound-image-box {
  width: calc(50% - 1.2rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(50% - 1.2rem);
}
.notfound-image {
  width: 100%;
}
.notfound-box {
  width: calc(50% - 1.2rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(50% - 1.2rem);
}
.notfound-title-box {
  margin-bottom: 4rem;
}
.notfound-title {
  color: #002F47;
  font-size: 3.5rem;
  font-weight: 100;
  margin: 0;
}
.notfound-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
}
.notfound-link-box {
  margin-top: 4rem;
}
.notfound-link {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.notfound-link:hover {
  color: #002F47;
  background-color: transparent;
}
.notfound-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.notfound-link:hover:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .notfound-block {}
  .notfound {}
  .notfound-image-box {}
  .notfound-image {}
  .notfound-box {}
  .notfound-title-box {}
  .notfound-title {}
  .notfound-desc {}
  .notfound-link-box {}
  .notfound-link {}
}

/* Search */

.bsearch-block {}
.bsearch {}
.bsearch-title-box {
  margin-bottom: 4rem;
}
.bsearch-title {
  color: #002F47;
  font-size: 3.5rem;
  font-weight: 100;
  margin: 0;
}
.bsearch-title b,
.bsearch-title strong {
  font-weight: 400;
}
.bsearch-list-box {}
.bsearch-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bsearch-item {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  padding: 2rem;
  border-bottom: 1px solid #69CDDD;
  background: transparent;
  transition: .2s all ease-in-out;
}
.bsearch-item:hover {
  background-color: #F2F4F6;
}
.bsearch-item:last-child {
  border: none
}
.bsearch-item-box {
  flex: 1;
}
.bsearch-item-title-box {
  margin-bottom: 1rem;
}
.bsearch-item-title {
  color: #002F47;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 100;
}
.bsearch-item-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
}
.bsearch-item-more-box {}
.bsearch-item-more {
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #002F47;
  text-decoration: none;
  font-size: 1.5rem;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  position: relative;
  white-space: nowrap;
  transition: .2s all ease-in-out;
}
.bsearch-item-more:hover {
  border-color: #E30613;
}
.bsearch-item-more:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.bsearch-item-more:hover:before {
  left: 2rem;
  background-image: url(../images/arrow-button-red.svg);
}
.bsearch-nav-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}
.bsearch-nav-box:before {
  content: '';
  position: absolute;
  right: 1px;
  left: 0;
  bottom: 3rem;
  height: 1px;
  background: #69CDDD;
  z-index: 1;
}
.bsearch-nav {
  display: flex;
  gap: 2rem;
  padding-left: 1rem;
  background: #FFF;
  position: relative;
  z-index: 2;
}
.bsearch-nav-left-box {}
.bsearch-nav-left {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.bsearch-nav-left:hover {
  border-color: #69CDDD;
}
.bsearch-nav-left:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-left.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.bsearch-nav-left:hover:before {
  right: 50%;
  transform: translate(50%, -50%);
}
.bsearch-nav-right-box {}
.bsearch-nav-right {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.bsearch-nav-right:hover {
  border-color: #69CDDD;
}
.bsearch-nav-right:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-right.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.bsearch-nav-right:hover:before {
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .bsearch-block {}
  .bsearch {}
  .bsearch-title-box {}
  .bsearch-title {}
  .bsearch-list-box {}
  .bsearch-list {}
  .bsearch-item {}
  .bsearch-item-box {}
  .bsearch-item-title-box {}
  .bsearch-item-title {}
  .bsearch-item-desc {}
  .bsearch-item-more-box {}
  .bsearch-item-more {}
  .bsearch-nav {}
  .bsearch-nav-left-box {}
  .bsearch-nav-left {}
  .bsearch-nav-right-box {}
  .bsearch-nav-right {}
}

/* Components - Main slider */

.mslider-block {
  background: #002F47;
  height: 60rem;
  position: relative;
}
.mslider {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.mslider-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-desktop) no-repeat center / cover;
  opacity: 0;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  transition: .2s opacity ease-in-out;
}
.mslider-slide.active {
  opacity: 1;
  z-index: 2;
  user-select: auto;
  pointer-events: auto;
}
.mslider-slide-container {
  padding: 0 var(--container-padding);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, calc(-50% - 4rem));
}
.mslider-slide-box {
  width: var(--container-static-width);
  max-width: 100%;
  margin: 0 auto;
}
.mslider-slide-title-box {
  width: 50%;
}
.mslider-slide-title {
  color: #FFF;
  margin: 0;
  font-weight: 100;
  font-size: 5.5rem;
}
.mslider-slide-title b,
.mslider-slide-title strong {
  font-weight: 600;
}
.mslider-slide-link-box {
  margin-top: 3rem;
}
.mslider-slide-link {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 200;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.mslider-slide-link:focus-visible {
  border-color: #E30613;
}
.mslider-slide-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.mslider-slide-link:focus-visible:before {
  left: 2rem;
}
.mslider-nav {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 3.5rem;
  right: 0;
  padding: 0 var(--container-padding);
}
.mslider-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: flex-start;
}
.mslider-nav-item-box {
  border-bottom: 1px solid #FFF;
  width: calc(25% - 1.5rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 1.5rem);
  position: relative;
  opacity: .5;
  transform: .2s all ease-in-out;
}
.mslider-nav-item-box.active {
  opacity: 1;
}
.mslider-nav-item-box:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 4px;
  background: #69CDDD;
  width: 100%;
  opacity: 0;
  transition: .2s opacity ease-in-out;
}
.mslider-nav-item-box.active:after {
  opacity: 1;
  width: var(--slide-time);
}
.mslider-nav-item {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  background: none;
  padding: 1.4rem 0;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.mslider-nav-item:focus-visible {
  outline: 3px solid #E30613;
  outline-offset: 1rem;
  opacity: 1;
}
.mslider-nav-arrows {
  position: absolute;
  z-index: 10;
  bottom: 2rem;
  right: var(--container-padding);
  display: flex;
  gap: 2rem;
}
.mslider-nav-left-box {}
.mslider-nav-left {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.mslider-nav-left:focus-visible {
  border-color: #E30613;
}
.mslider-nav-left:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-left-white.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.mslider-nav-left:focus-visible:before {
  right: 50%;
  transform: translate(50%, -50%);
}
.mslider-nav-right-box {}
.mslider-nav-right {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.mslider-nav-right:focus-visible {
  border-color: #E30613;
}
.mslider-nav-right:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-right-white.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.mslider-nav-right:focus-visible:before {
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 992px) {
  .mslider-slide-link:hover {
    border-color: #E30613;
  }
  .mslider-slide-link:hover:before {
    left: 2rem;
  }
  .mslider-nav-left:hover {
    border-color: #69CDDD;
  }
  .mslider-nav-left:hover:before {
    right: 50%;
    transform: translate(50%, -50%);
  }
  .mslider-nav-right:hover {
    border-color: #69CDDD;
  }
  .mslider-nav-right:hover:before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 991px) {
  .mslider-block {
    height: 50rem;
  }
  .mslider {}
  .mslider-slide {
    background-image: var(--bg-mobile);
  }
  .mslider-slide-box {}
  .mslider-slide-container {
    padding: var(--container-padding-box);
    position: static;
    transform: none;
  }
  .mslider-slide-title-box {
    width: auto;
  }
  .mslider-slide-title {
    font-size: 3rem;
    line-height: 3.6rem;
  }
  .mslider-slide-link-box {
    display: none;
}
  .mslider-slide-link {}
  .mslider-nav {
    display: none;
  }
  .mslider-nav-list {}
  .mslider-nav-item-box {}
  .mslider-nav-item {}
  .mslider-nav-arrows {}
  .mslider-nav-left-box {}
  .mslider-nav-left {}
  .mslider-nav-right-box {}
  .mslider-nav-right {}
}

/* Components - Main info */

.minfo-block {}
.minfo-block:after {
  content: '';
  clear: both;
  display: block;
}
.minfo {
  float: left;
  width: 80%;
}
.minfo-title-box {}
.minfo-title {
  color: #002F47;
  font-size: 3.5rem;
  font-weight: 100;
  margin: 0;
  line-height: 3.9rem;
}
.minfo-title b,
.minfo-title strong {
  font-weight: 400;
}
.minfo-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 2rem;
  line-height: 2.7rem;
}
.minfo-logo-box {
  overflow: hidden;
  text-align: center;
}
.minfo-logo {
  max-width: 80%;
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .minfo {
    width: auto;
    float: none;
  }
  .minfo-title-box {}
  .minfo-title {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .minfo-desc {
    font-size: 1.3rem;
    line-height: 2.1rem;
    margin-top: 1rem;
  }
  .minfo-logo-box {
    margin-top: 1rem;
    overflow: visible;
  }
  .minfo-logo {}
}

/* Components - Offers */

.offers-background {
  background: #002F47;
  position: relative;
  overflow: hidden;
}
.offers-background:before {
  content: '';
  position: absolute;
  z-index: 1;
  background: radial-gradient(rgba(105, 205, 221, .5) 0%, rgba(105, 205, 221, 0) 50%);
  width: 60%;
  aspect-ratio: 1 / 1;
  left: 0;
  top: 0;
  transform: translate(-43%, -62%);
}
.offers-background:after {
  content: '';
  position: absolute;
  z-index: 1;
  background: radial-gradient(rgba(105, 205, 221, .2) 0%, rgba(105, 205, 221, 0) 50%);
  width: 40%;
  aspect-ratio: 1 / 1;
  right: 0;
  bottom: 0;
  transform: translate(34%, 46%);
}
.offers-background > .container {
  position: relative;
  z-index: 2;
}
.offers-title-box {
  margin-bottom: 4.8rem;
}
.offers-title {
  color: #FFF;
  margin: 0;
  text-align: center;
  font-size: 5.5rem;
  font-weight: 100;
}
.offers-title b,
.offers-title strong {
  font-weight: 600;
}
.offers-items-box {}
.offers-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
}
.offers-item {
  width: calc(25% - 1.5rem);
}
.offers-item-1 {
  width: calc(25% - 1.5rem);
}
.offers-item-2 {
  width: calc(50% - 1rem);
}
.offers-item-3 {
  width: calc(75% - .5rem);
}
.offers-item-4 {
  width: 100%;
}
.offers-item-link {
  display: block;
  color: #FFF;
  text-decoration: none;
  position: relative;
}
.offers-item-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  border: 2px solid transparent;
  transition: .2s all ease-in-out;
}
.offers-item-link:focus-visible {
  outline: 2px solid #E30613;
  outline-offset: 8px;
}
.offers-item-link:focus-visible:before {
  border-color: #69CDDD;
}
.offers-item-link:after {
  content: '';
  position: absolute;
  width: 2.1rem;
  height: 1.4rem;
  right: 3.8rem;
  bottom: 3rem;
  background: url(../images/arrow-right-white.svg) no-repeat center / contain;
  transform: translate(0, 50%);
  transition: .2s all ease-in-out;
}
.offers-item-link:focus-visible:after {
  right: 3.2rem;
  transform: translate(50%, 50%);
}
.offers-item-image-box {
  width: 100%;
  height: 22vw;
}
.offers-item-image {
  width: 100%;
  height: 100%;
  border-radius: 2.8rem;
  object-fit: cover;
}
.offers-item-mimage {
  display: none;
}
.offers-item-title-box {
  margin-top: 1.5rem;
}
.offers-item-title {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
  line-height: 3.9rem;
}
.offers-item-desc {
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 2rem;
  font-weight: 300;
  margin-top: 1.5rem;
  padding-right: 9rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .offers-item-link:hover:before {
    border-color: #69CDDD;
  }
  .offers-item-link:hover:after {
    right: 3.2rem;
    transform: translate(50%, 50%);
  }
}

@media screen and (max-width: 991px) {
  .offers-background {}
  .offers-title-box {
    margin-bottom: 2.4rem;
  }
  .offers-title {
    font-size: 3rem;
  }
  .offers-items-box {}
  .offers-items {}
  .offers-item {
    width: calc(50% - 1rem);
  }
  .offers-item-link {}
  .offers-item-link:after {
    bottom: calc((100% - ((100vw - 2 * var(--container-padding)) / 2 - 1rem)) * .5 - .8rem);
    right: 1rem;
    transform: translate(0, 50%);
  }
  .offers-item-image-box {
    height: auto;
    position: relative;
  }
  .offers-item-image-box:before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .offers-item-image {
    display: none;
  }
  .offers-item-mimage {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 2.8rem;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
  }
  .offers-item-title-box {
    padding-right: 4rem;
  }
  .offers-item-title {
    font-size: 1.7rem;
    line-height: 2.6rem;
  }
  .offers-item-desc {
    display: none;
  }
}

/* Components - Main box */

.mbox-block {
  padding-right: calc(40% + 7rem);
  position: relative;
  min-height: calc(var(--container-static-width) * .4);
  display: flex;
  align-items: center;
}
.mbox {
  flex: 1;
}
.mbox-subtitle-box {
  margin-bottom: 2rem;
}
.mbox-subtitle {
  color: #002F47;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mbox-title-box {
  margin-bottom: 2rem;
}
.mbox-title {
  color: #002F47;
  margin: 0;
  font-size: 5.5rem;
  font-weight: 100;
  line-height: 6.1rem;
}
.mbox-title b,
.mbox-title strong {
  font-weight: 600;
}
.mbox-image-box {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  transform: translate(0, -50%);
}
.mbox-image-box:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.mbox-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  border-radius: 2.6rem;
}
.mbox-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
}
.mbox-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5rem;
  margin-top: 8rem;
  flex-wrap: wrap;
}
.mbox-link {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.mbox-link:focus-visible {
  color: #002F47;
  background-color: transparent;
}
.mbox-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.mbox-link:focus-visible:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  .mbox-link:hover {
    color: #002F47;
    background-color: transparent;
  }
  .mbox-link:hover:before {
    left: 3.2rem;
    background-image: url(../images/arrow-button-red.svg);
  }
}

@media screen and (max-width: 991px) {
  .mbox-block {
    padding: 0;
    display: block;
  }
  .mbox {}
  .mbox-subtitle-box {
    margin-bottom: 2.4rem;
  }
  .mbox-subtitle {}
  .mbox-title-box {
    margin-bottom: 2.4rem;
  }
  .mbox-title {
    line-height: 3.6rem;
    font-size: 3rem;
  }
  .mbox-image-box {
    position: relative;
    transform: none;
    top: 0;
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .mbox-image {}
  .mbox-desc {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
  .mbox-links {
    gap: .8rem 5rem;
    margin-top: 2.4rem;
  }
  .mbox-link {}
}

/* Components - Counter */

.counter-background {
  background: #002F47 url(../images/bg-line.png) no-repeat;
  position: relative;
  overflow: hidden;
  background-size: 36%;
  background-position: 29% -8%;
}
.counter-background:before {
  content: '';
  position: absolute;
  z-index: 1;
  background: radial-gradient(rgba(105, 205, 221, .5) 0%, rgba(105, 205, 221, 0) 50%);
  width: 60%;
  aspect-ratio: 1 / 1;
  left: 0;
  top: 0;
  transform: translate(-43%, -62%);
}
.counter-background:after {
  content: '';
  position: absolute;
  z-index: 1;
  background: radial-gradient(rgba(105, 205, 221, .2) 0%, rgba(105, 205, 221, 0) 50%);
  width: 40%;
  aspect-ratio: 1 / 1;
  right: 0;
  bottom: 0;
  transform: translate(34%, 46%);
}
.counter {
  color: #FFF;
  position: relative;
  z-index: 5;
}
.counter-header {
  display: flex;
  gap: 2rem;
  padding-bottom: 7rem;
  align-items: stretch;
}
.counter-title-box {
  width: calc(25% - 1.5rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 1.5rem);
}
.counter-title {
  color: #FFF;
  margin: 0;
  font-size: 5.5rem;
  font-weight: 100;
}
.counter-title b,
.counter-title strong {
  font-weight: 600;
}
.counter-main-box {
  width: calc(25% - 1.5rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 1.5rem);
  margin-left: auto;
}
.counter-main-number {
  font-size: 12rem;
  font-weight: 100;
}
.counter-main-prefix {
  font-size: 5.5rem;
  font-weight: 600;
}
.counter-main-desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
}
.counter-desc-box {
  width: calc(25% - 1.5rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
}
.counter-desc {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
  padding: 1rem 2rem 1rem 5.4rem;
  border-radius: 3.5rem;
  position: relative;
  border: 2px solid transparent;
  transition: .2s all ease-in-out;
}
.counter-desc:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.counter-items {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
}
.counter-item {
  border-top: 1px solid #69CDDD;
  width: calc(25% - 1.5rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 1.5rem);
  padding-top: 2rem;
}
.counter-item-number-box {}
.counter-item-number {
  font-size: 5.5rem;
  font-weight: 100;
}
.counter-item-number-prefix {
  font-size: 3.5rem;
  font-weight: 100;
}
.counter-item-desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2rem;
}

@media screen and (min-width: 992px) {
  .counter-desc:hover {
    border-color: #E30613;
  }
  .counter-desc:hover:before {
    left: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .counter-background {
    background-size: 80%;
    background-position: 145% -8%;
  }
  .counter-background:before {
    width: 190%;
    transform: translate(-33%, -52%);
  }
  .counter-background:after {
    width: 160%;
    transform: translate(-36%, 56%);
    right: auto;
    left: 0;
    background: radial-gradient(rgba(105, 205, 221, .5) 0%, rgba(105, 205, 221, 0) 50%);
  }
  .counter {}
  .counter-header {
    display: block;
    padding-bottom: 2.4rem;
  }
  .counter-title-box {
    width: 100%;
    margin-bottom: 3rem;
  }
  .counter-title {
    font-size: 3rem;
  }
  .counter-main-box {
    width: 100%;
    margin: 0;
  }
  .counter-main-number {
    font-size: 8rem;
  }
  .counter-main-prefix {
    font-size: 3rem;
    margin-top: 1.6rem;
  }
  .counter-main-desc {
    font-size: 1.2rem;
    margin-top: .4rem;
  }
  .counter-desc-box {
    display: none;
  }
  .counter-desc {}
  .counter-items {
    flex-wrap: wrap;
    gap: 1.6rem 2rem;
  }
  .counter-item {
    width: calc(50% - 1rem);
    flex-basis: calc(50% - 1rem);
  }
  .counter-item-number-box {}
  .counter-item-number {
    font-size: 3rem;
  }
  .counter-item-number-prefix {
    font-size: 1.5rem;
  }
  .counter-item-desc {
    font-size: 1.2rem;
  }
}

/* Components - News slider */

.snews {
  position: relative;
  z-index: 1;
}
.snews:after {
  content: '';
  position: absolute;
  right: calc(40% + 6rem);
  left: 0;
  bottom: 0;
  height: 1px;
  background: #69CDDD;
}
.snews-title-box {
  margin-bottom: 2rem;
}
.snews-title {
  color: #002F47;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.snews-slides {}
.snews-slide {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  transition: .2s opacity ease-in-out;
}
.snews-slide.active {
  position: relative;
  opacity: 1;
  z-index: 2;
  user-select: auto;
  pointer-events: auto;
}
.snews-slide-container {
  padding-right: calc(40% + 7rem);
  position: relative;
  min-height: calc(var(--container-static-width) * .4);
  display: flex;
  align-items: center;
}
.snews-slide-box {
  flex: 1;
  padding-bottom: 2rem;
}
.snews-slide-title-box {
  margin-bottom: 6rem;
}
.snews-slide-title {
  color: #002F47;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
  line-height: 3.9rem;
}
.snews-slide-title b,
.snews-slide-title strong {
  font-weight: 400;
}
.snews-slide-image-box {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  transform: translate(0, -50%);
}
.snews-slide-image-box:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.snews-slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  border-radius: 2.6rem;
}
.snews-slide-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
}
.snews-slide-more-box {
  display: flex;
  gap: 5rem;
  margin-top: 8rem;
  flex-wrap: wrap;
}
.snews-slide-more {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.snews-slide-more:focus-visible {
  color: #002F47;
  background-color: transparent;
}
.snews-slide-more:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.snews-slide-more:focus-visible:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}
.snews-more {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #002F47;
  text-decoration: none;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.snews-more:focus-visible {
  border-color: #E30613;
}
.snews-more:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.snews-more:focus-visible:before {
  left: 2rem;
  background-image: url(../images/arrow-button-red.svg);
}
.snews-nav-box {
  display: flex;
  gap: 2rem;
  background: #FFF;
  padding-left: 1rem;
  position: absolute;
  right: calc(40% + 5.5rem);
  bottom: -3rem;
  z-index: 2;
}
.snews-nav-left-box {}
.snews-nav-left {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.snews-nav-left:focus-visible {
  border-color: #E30613;
}
.snews-nav-left:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-left.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.snews-nav-left:focus-visible:before {
  right: 50%;
  transform: translate(50%, -50%);
}
.snews-nav-right-box {}
.snews-nav-right {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.snews-nav-right:focus-visible {
  border-color: #E30613;
}
.snews-nav-right:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-right.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.snews-nav-right:focus-visible:before {
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 992px) {
  .snews-slide-more:hover {
    color: #002F47;
    background-color: transparent;
  }
  .snews-slide-more:hover:before {
    left: 3.2rem;
    background-image: url(../images/arrow-button-red.svg);
  }
  .snews-more:hover {
    border-color: #E30613;
  }
  .snews-more:hover:before {
    left: 2rem;
    background-image: url(../images/arrow-button-red.svg);
  }
  .snews-nav-left:hover {
    border-color: #69CDDD;
  }
  .snews-nav-left:hover:before {
    right: 50%;
    transform: translate(50%, -50%);
  }
  .snews-nav-right:hover {
    border-color: #69CDDD;
  }
  .snews-nav-right:hover:before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 991px) {
  .snews {}
  .snews:after {
    display: none;
  }
  .snews-title-box {
    margin-bottom: 2.4rem;
  }
  .snews-title {}
  .snews-slides {}
  .snews-slide {}
  .snews-slide-container {
    padding: 0;
    display: block;
  }
  .snews-slide-box {
    padding-bottom: 3rem;
  }
  .snews-slide-title-box {
    margin-bottom: 2.4rem;
  }
  .snews-slide-title {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .snews-slide-image-box {
    position: relative;
    top: 0;
    width: 100%;
    transform: none;
    margin-bottom: 2.4rem;
  }
  .snews-slide-image {}
  .snews-slide-desc {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
  .snews-slide-more-box {
    margin-top: 2.4rem;
    gap: .8rem 2rem;
  }
  .snews-slide-more {}
  .snews-more {}
  .snews-nav-box {
    right: 0;
  }
  .snews-nav-left-box {}
  .snews-nav-left {}
  .snews-nav-right-box {}
  .snews-nav-right {}
}

/* Components - Certificates slider */

.scertificates-background {
  background: #F2F4F6;
}
.scertificates {}
.scertificates-title-box {
  margin-bottom: 4.8rem;
}
.scertificates-title {
  color: #002F47;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
}
.scertificates-title b,
.scertificates-title strong {
  font-weight: 400;
}
.scertificates-box {
  overflow: hidden;
}
.scertificates-slides-box {
  margin-right: -2.4rem;
}
.scertificates-slides {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0;
  white-space: nowrap;
}
.scertificates-slide {
  position: relative;
  width: calc(20% - 2.4rem);
  margin-right: 2.4rem;
  background: #FFF;
  border-radius: 2rem;
  display: inline-block;
  vertical-align: middle;
}
.scertificates-slide:before {
  content: '';
  display: block;
  padding-top: 75%;
}
.scertificates-slide-image-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.scertificates-slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scertificates-slide-desc-box {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFF;
  border-radius: 2rem;
  opacity: 0;
  transition: .2s all ease-in-out;
}
.scertificates-slide:hover .scertificates-slide-desc-box {
  opacity: 1;
}
.scertificates-slide-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  white-space: normal;
  text-align: center;
  transform: translate(-50%, -50%);
}
.scertificates-nav {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  margin-top: 1rem;
}
.scertificates-nav-left-box {}
.scertificates-nav-left {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.scertificates-nav-left:focus-visible {
  border-color: #E30613;
}
.scertificates-nav-left:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-left.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.scertificates-nav-left:focus-visible:before {
  right: 50%;
  transform: translate(50%, -50%);
}
.scertificates-nav-right-box {}
.scertificates-nav-right {
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  font-size: 0;
  transition: .2s all ease-in-out;
}
.scertificates-nav-right:focus-visible {
  border-color: #E30613;
}
.scertificates-nav-right:before {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow-right.svg) no-repeat center / contain;
  transition: .2s all ease-in-out;
}
.scertificates-nav-right:focus-visible:before {
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 992px) {
  .scertificates-nav-left:hover {
    border-color: #69CDDD;
  }
  .scertificates-nav-left:hover:before {
    right: 50%;
    transform: translate(50%, -50%);
  }
  .scertificates-nav-right:hover {
    border-color: #69CDDD;
  }
  .scertificates-nav-right:hover:before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 991px) {
  .scertificates {}
  .scertificates-title-box {
    margin-bottom: 2.4rem;
  }
  .scertificates-title {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .scertificates-box {}
  .scertificates-slides-box {
    margin-right: -1.6rem;
  }
  .scertificates-slides {}
  .scertificates-slide {
    margin-right: 1.6rem;
    width: calc(50% - 1.6rem);
  }
  .scertificates-slide-image-box {}
  .scertificates-slide-image {}
  .scertificates-nav {
    margin-top: 2rem;
    display: none;
  }
  .scertificates-slide-desc-box {
    display: none;
  }
  .scertificates-slide-desc {}
  .scertificates-nav-left-box {}
  .scertificates-nav-left {}
  .scertificates-nav-right-box {}
  .scertificates-nav-right {}
}

/* Components - Title box */

.btitle-block {
  padding-bottom: 2.5rem;
}
.btitle-block + .container-block {
  padding-top: 3rem;
}
.btitle-box {}
.btitle {
  color: #002F47;
  margin: 0;
  font-size: 5.5rem;
  font-weight: 100;
}
.btitle b,
.btitle strong {
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .btitle-box {}
  .btitle {}
}

/* News list */

.lnews-list {}
.lnews-more-box {
  text-align: center;
  margin-top: 8rem;
}
.lnews-more {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #002F47;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  cursor: pointer;
  background: transparent;
  position: relative;
  transition: .2s all ease-in-out;
}
.lnews-more:hover {
  border-color: #E30613;
}
.lnews-more:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.lnews-more:hover:before {
  left: 2rem;
  background-image: url(../images/arrow-button-red.svg);
}
.mnews-background {
  background: #F2F4F6;
}
.mnews-title-box {
  margin-bottom: 8rem;
}
.mnews-title {
  color: #002F47;
  margin: 0;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 100;
}
.mnews-list {}
.plnews {}
.plnews-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8rem 3rem;
  justify-content: flex-start;
}
.plnews-item {
  width: calc(50% - 1.5rem);
  position: relative;
}
.plnews-item-box {
  color: #002F47;
  padding-left: 29.4rem;
  min-height: 27rem;
}
.plnews-item-title-box {
  margin-bottom: 2rem;
}
.plnews-item-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 100;
}
.plnews-item-title b,
.plnews-item-title strong {
  font-weight: 600;
}
.plnews-item-date {
  color: #999;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 2px;
  display: block;
  margin-top: .4rem;
}
.plnews-item-image-box {
  width: 27rem;
  position: absolute;
  top: 0;
  left: 0;
}
.plnews-item-image-box:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.plnews-item-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 1.9rem;
}
.plnews-item-desc {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
}
.plnews-item-more-box {
  margin-top: 4rem;
}
.plnews-item-more {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.plnews-item-more:hover {
  color: #002F47;
  background-color: transparent;
}
.plnews-item-more:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.plnews-item-more:hover:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .lnews-list {}
  .lnews-more-box {}
  .lnews-more {}
  .mnews-background {}
  .mnews-title-box {}
  .mnews-title {}
  .mnews-list {}
  .plnews {}
  .plnews-list {}
  .plnews-item {}
  .plnews-item-box {}
  .plnews-item-title-box {}
  .plnews-item-title {}
  .plnews-item-date {}
  .plnews-item-image-box {}
  .plnews-item-image {}
  .plnews-item-desc {}
  .plnews-item-more-box {}
  .plnews-item-more {}
}

/* Components - Login */

.login-block {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.login-col {}
.login-col:nth-child(2n) {
  width: 53.5%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 53.5%;
  background: #002F47;
  color: #FFF;
}
.login-col:nth-child(2n + 1) {
  width: 39.4%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 39.4%;
}
.login-col-right {
  order: 2;
}
.login-box {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}
.login-col:nth-child(2n) .login-box {
  padding-left: 5rem;
  padding-right: 10rem;
}
.login-title-box {}
.login-title {
  margin: 0;
}
.login-form-box {}
.login-col-left {
  order: 1;
}
.login-desc {}
.login-link-box {
  text-align: right;
  margin-top: auto;
}
.login-link {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.login-link:hover {
  color: #002F47;
  background-color: transparent;
}
.login-col:nth-child(2n) .login-link:hover {
  color: #FFF;
}
.login-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.login-link:hover:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .login-block {}
  .login-col {}
  .login-col-right {}
  .login-box {}
  .login-title-box {}
  .login-title {}
  .login-form-box {}
  .login-col-left {}
  .login-desc {}
  .login-link-box {}
  .login-link {}
}

/* Form */

.form-block {}
.form-row {
  margin-bottom: 1.9rem;
}
.form-row:after {
  content: '';
  clear: both;
  display: block;
}
.form-col {
  width: calc(50% - 1rem);
}
.form-col:nth-child(2n) {
  float: right;
}
.form-col:nth-child(2n + 1) {
  float: left;
}
.form-input-box {
  cursor: text;
  position: relative;
  display: block;
}
.form-input {
  color: #002F47;
  width: 100%;
  box-sizing: border-box;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0 .8rem;
  border: none;
  border-bottom: 1px solid #69CDDD;
  transition: .2s all ease-in-out;
}
.form-input-box:hover .form-input,
.form-input:focus {
  border-color: #E30613;
}
.form-input-label {
  color: #002F47;
  text-transform: uppercase;
  transform: translate(0, -50%) scale(1);
  transform-origin: left;
  top: 50%;
  left: 0;
  position: absolute;
  transition: .2s all ease-in-out;
}
.form-input:focus + .form-input-label,
.form-input.not-empty + .form-input-label {
  top: 0;
  transform: translate(0, -50%) scale(.6);
}
.form-input:required + .form-input-label:after {
  content: ' *';
}
.form-textarea-box {
  cursor: text;
  padding-top: 3.6rem;
  display: block;
  position: relative;
}
.form-textarea {
  color: #002F47;
  border: 1px solid #69CDDD;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 1rem .8rem;
  height: 20rem;
  border-radius: 1.6rem;
  resize: none;
  transition: .2s all ease-in-out;
}
.form-textarea:hover,
.form-textarea:focus {
  border-color: #E30613;
}
.form-textarea-label {
  color: #002F47;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: .8rem;
}
.form-textarea:required + .form-textarea-label:after {
  content: ' *';
}
.form-checkbox-block {}
.form-checkbox-block:after {
  content: '';
  clear: both;
  display: block;
}
.form-checkbox-box {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  float: left;
}
.form-checkbox-input {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
.form-checkbox {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #69CDDD;
  background: transparent;
  border-radius: 3px;
  transition: .2s all ease-in-out;
}
.form-checkbox:before {
  content: '';
  width: .7rem;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 1.2rem;
  left: 0.3rem;
  transform: rotate(45deg);
}
.form-checkbox:after {
  content: '';
  width: 1.2rem;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 1rem;
  left: 0.7rem;
  transform: rotate(-45deg);
}
.form-checkbox-block:hover .form-checkbox {
  border-color: #E30613;
}
.form-checkbox-input:checked + .form-checkbox {
  background: #E30613;
  border-color: #E30613;
}
.form-checkbox-label {
  color: #999;
  margin-left: 4.4rem;
  line-height: 2.1rem;
  padding-top: .2rem;
  font-size: 1.3rem;
  font-weight: 300;
}
.form-checkbox-label a {
  color: #E30613;
  display: inline-block;
  padding: .2rem 0;
  text-decoration: none;
  position: relative;
  padding-left: 2.8rem;
  transition: .2s all ease-in-out;
}
.form-checkbox-label a:hover {
  padding-left: 3.4rem;
}
.form-checkbox-label a:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-red.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.form-select-box {
  cursor: pointer;
  position: relative;
  display: block;
}
.form-select {
  color: #002F47;
  box-sizing: border-box;
  height: 4rem;
  appearance: none;
  background: transparent url(../images/select-chevron.svg) no-repeat;
  background-size: 2.4rem 2.4rem;
  background-position: calc(100% - 1rem) 50%;
  border: none;
  padding: 0 4.8rem 0 .8rem;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: 1.5rem;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  border-bottom: 1px solid #69CDDD;
  transition: .2s all ease-in-out;
}
.form-select::-ms-expand {
  display: none;
}
.form-select-box:hover .form-select {
  border-color: #E30613;
}
.form-select-label {
  color: #002F47;
  text-transform: uppercase;
  transform-origin: left;
  left: 0;
  top: 0;
  transform: translate(0, -50%) scale(.6);
  position: absolute;
}
.form-select:required + .form-select-label:after {
  content: ' *';
}
.form-file-box {
  position: relative;
}
.form-file {}
.form-file-label {
  color: #002F47;
}
.form-file-button {}
.form-submit-box {}
.form-submit {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  cursor: pointer;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.form-submit:hover {
  color: #002F47;
  background-color: transparent;
}
.form-submit:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.form-submit:hover:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .form-block {}
  .form-row {}
  .form-col {}
  .form-input-box {}
  .form-input {}
  .form-input-label {}
  .form-textarea-box {}
  .form-textarea {}
  .form-textarea-label {}
  .form-checkbox-block {}
  .form-checkbox-box {}
  .form-checkbox-input {}
  .form-checkbox {}
  .form-checkbox-label {}
  .form-select-box {}
  .form-select {}
  .form-select-label {}
  .form-file-box {}
  .form-file {}
  .form-file-label {}
  .form-file-button {}
  .form-submit-box {}
  .form-submit {}
}

/* Components - Contact header */

.hcontact {
  position: relative;
}
.hcontact-box {
  padding-left: calc(33.5% + 12.2rem);
  min-height: calc(var(--container-static-width) * .335);
}
.hcontact-image-box {
  width: 33.5%;
  position: absolute;
  left: 0;
  top: 0;
}
.hcontact-image-box:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.hcontact-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.8rem;
}
.hcontact-title-box {
  margin-left: -1.2rem;
  margin-bottom: 4rem;
}
.hcontact-title {
  color: #002F47;
  margin: 0;
  font-size: 5.5rem;
  font-weight: 600;
}
.hcontact-cols {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.hcontact-col {
  width: 30%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
}
.hcontact-col-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hcontact-col-title-box {
  margin-bottom: 2rem;
}
.hcontact-col-title {
  color: #8097A3;
  margin: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hcontact-col-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
  margin-bottom: auto;
  padding-bottom: 1.6rem;
}
.hcontact-col-desc a {
  color: #002F47;
  text-decoration: none;
  transition: .2s all ease-in-out;
}
.hcontact-col-desc a:hover {
  color: #69CDDD;
}
.hcontact-col-logo-box {
  margin-bottom: 3.6rem;
}
.hcontact-col-logo {
  max-height: 5rem;
  max-width: 100%;
}
.hcontact-col-email-box {}
.hcontact-col-email {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  cursor: pointer;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.hcontact-col-email:hover {
  color: #002F47;
  background-color: transparent;
}
.hcontact-col-email:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.hcontact-col-email:hover:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}
.hcontact-col-link-box {
  margin-top: 1.6rem;
}
.hcontact-col-link {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 4rem;
  line-height: calc(3.8rem - 4px);
  color: #002F47;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  border: 2px solid transparent;
  padding: 0 2rem 0 4.6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.hcontact-col-link:hover {
  border-color: #E30613;
}
.hcontact-col-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.hcontact-col-link:hover:before {
  left: 2rem;
}
.hcontact-desc-box {
  margin-top: 3.6rem;
}
.hcontact-desc-title {
  color: #8097A3;
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hcontact-desc {
  color: #002F47;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2.1rem;
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .hcontact {}
  .hcontact-box {}
  .hcontact-image-box {}
  .hcontact-image {}
  .hcontact-title-box {}
  .hcontact-title {}
  .hcontact-cols {}
  .hcontact-col {}
  .hcontact-col-box {}
  .hcontact-col-title-box {}
  .hcontact-col-title {}
  .hcontact-col-desc {}
  .hcontact-col-logo-box {}
  .hcontact-col-logo {}
  .hcontact-col-email-box {}
  .hcontact-col-email {}
  .hcontact-col-link-box {}
  .hcontact-col-link {}
  .hcontact-desc-box {}
  .hcontact-desc-title {}
  .hcontact-desc {}
}

/* Components - Contact bar */

.bacontact-background {
  background: #002F47;
}
.bacontact-box {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.bacontact-title-box {
  flex: 1;
}
.bacontact-title {
  color: #FFF;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
}
.bacontact-title b,
.bacontact-title strong {
  font-weight: 400;
}
.bacontact-link-box {}
.bacontact-link {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  cursor: pointer;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.bacontact-link:hover {
  background-color: transparent;
}
.bacontact-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.bacontact-link:hover:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .bacontact-background {}
  .bacontact-box {}
  .bacontact-title-box {}
  .bacontact-title {}
  .bacontact-link-box {}
  .bacontact-link {}
}

/* Components - Contact boxes */

.bcontact-background {
  background: #F2F4F6;
}
.bcontact {}
.bcontact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
}
.bcontact-item {
  width: calc(25% - 1.5rem);
  background: #FFF;
  border-radius: 1.8rem;
}
.bcontact-item-1 {
  width: calc(25% - 1.5rem);
}
.bcontact-item-2 {
  width: calc(50% - 1rem);
}
.bcontact-item-3 {
  width: calc(75% - .5rem);
}
.bcontact-item-4 {
  width: 100%;
}
.bcontact-item-box {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}
.bcontact-item-body {}
.bcontact-item-title-box {
  margin-bottom: 2rem;
}
.bcontact-item-title {
  color: #8097A3;
  margin: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bcontact-item-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
}
.bcontact-item-desc a {
  color: #002F47;
  text-decoration: none;
  transition: .2s all ease-in-out;
}
.bcontact-item-desc a:hover {
  color: #69CDDD;
}
.bcontact-item-footer {
  margin-top: auto;
  padding-top: 1.6rem;
}
.bcontact-item-email {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #E30613;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 200;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.bcontact-item-email:hover {
  border-color: #E30613;
  color: #002F47;
}
.bcontact-item-email:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-red.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.bcontact-item-email:hover:before {
  left: 2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .bcontact-background {}
  .bcontact {}
  .bcontact-list {}
  .bcontact-item {}
  .bcontact-item-1 {}
  .bcontact-item-2 {}
  .bcontact-item-3 {}
  .bcontact-item-4 {}
  .bcontact-item-box {}
  .bcontact-item-body {}
  .bcontact-item-title-box {}
  .bcontact-item-title {}
  .bcontact-item-desc {}
  .bcontact-item-footer {}
  .bcontact-item-email {}
}

/* Components - Contact map */

.mcontact {}
.mcontact:after {
  content: '';
  clear: both;
  display: block;
}
.mcontact-map-box {
  width: calc(50% - 2.4rem);
  float: left;
  position: relative;
}
.mcontact-map-box:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.mcontact-map {
  border: 1px solid #E5E5E5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 3rem;
}
.mcontact-box {
  width: calc(50% - 2.4rem);
  float: right;
}
.mcontact-title-box {
  margin-bottom: 10rem;
}
.mcontact-title {
  color: #002F47;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
}
.mcontact-form-box {}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .mcontact {}
  .mcontact-map-box {}
  .mcontact-map {}
  .mcontact-box {}
  .mcontact-title-box {}
  .mcontact-title {}
  .mcontact-form-box {}
}

/* Components - News banner */

.bnews-background {
  padding-top: 0;
  background: #002F47;
}
.bnews-breadcrumbs {}
.bnews-breadcrumbs .breadcrumbs-block {
  padding-left: 0;
  padding-right: 0;
}
.bnews {
  position: relative;
}
.bnews-box {
  color: #FFF;
  padding-left: calc(min(40%, 48.6rem) + 10.6rem);
  min-height: min(calc((100vw - 2 * var(--container-padding)) * 0.4), 48.6rem);
}
.bnews-subtitle-box {
  margin-bottom: 2rem;
}
.bnews-subtitle {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bnews-title-box {
  margin-bottom: 2rem;
}
.bnews-title {
  color: #FFF;
  margin: 0;
  font-weight: 100;
  font-size: 5.5rem;
}
.bnews-title b,
.bnews-title strong {
  font-weight: 600;
}
.bnews-image-box {
  width: 48.6rem;
  max-width: 40%;
  position: absolute;
  left: 0;
  top: 0;
}
.bnews-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.8rem;
}
.bnews-desc {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
}
.bnews-link-box {
  margin-top: 8rem;
}
.bnews-link {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.bnews-link:hover {
  background-color: transparent;
}
.bnews-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.bnews-link:hover:before {
  left: 3.2rem;
  background-image: url(../images/arrow-button-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .bnews-background {}
  .bnews-breadcrumbs {}
  .bnews {}
  .bnews-box {}
  .bnews-subtitle-box {}
  .bnews-subtitle {}
  .bnews-title-box {}
  .bnews-title {}
  .bnews-image-box {}
  .bnews-image {}
  .bnews-desc {}
  .bnews-link-box {}
  .bnews-link {}
}

/* Components - Breadcrumbs */

.breadcrumbs-block {
  padding-top: .8rem;
  padding-bottom: .8rem;
}
.breadcrumbs-block + .container-block {
  padding-top: 2rem;
}
.breadcrumbs {}
.breadcrumbs-box {}
.breadcrumbs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumbs-list > li {
  padding-right:  3rem;
  position: relative;
}
.breadcrumbs-list > li:last-child {
  padding: 0;
}
.breadcrumbs-list > li:after {
  content: '/';
  color: #999;
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translate(0, -50%);
}
.breadcrumbs-list > li:last-child:after {
  display: none;
}
.breadcrumbs-link {
  color: #999;
  font-size: 1.3rem;
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  transition: .2s all ease-in-out;
}
.breadcrumbs-link:hover {
  color: #69CDDD;
}
.breadcrumbs-home {
  width: 4rem;
  height: 4rem;
  font-size: 0;
  background: url(../images/home.svg) no-repeat center;
}
.breadcrumbs-home:hover {
  background-image: url(../images/home-hover.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .breadcrumbs-block {}
  .breadcrumbs {}
  .breadcrumbs-box {}
  .breadcrumbs-list {}
  .breadcrumbs-list > li {}
  .breadcrumbs-link {}
  .breadcrumbs-home {}
}

/* Components - Career header */

.hcareer {
  position: relative;
}
.hcareer-box {
  padding-right: calc(33.5% + 12.2rem);
  min-height: calc(var(--container-static-width) * .335);
}
.hcareer-image-box {
  width: 33.5%;
  position: absolute;
  right: 0;
  top: 0;
}
.hcareer-image-box:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.hcareer-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.8rem;
}
.hcareer-title-box {
  margin-bottom: 4.8rem;
}
.hcareer-title {
  color: #002F47;
  margin: 0;
  font-size: 5.5rem;
  font-weight: 100;
  line-height: 6.1rem;
}
.hcareer-title b,
.hcareer-title strong {
  font-weight: 600;
}
.hcareer-desc {
  color: #002F47;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.7rem;
}
.hcareer-desc ul {
  margin: .6rem 0;
  padding: 0;
  list-style: none;
}
.hcareer-desc ul > li {
  padding-left: 2.8rem;
  position: relative;
}
.hcareer-desc ul > li:before {
  content: '';
  left: .9rem;
  width: .4rem;
  height: .4rem;
  background: #E30613;
  border-radius: 50%;
  top: 1.4rem;
  position: absolute;
}
.hcareer-link-box {
  margin-top: 4.8rem;
}
.hcareer-link {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.hcareer-link:hover {
  color: #002F47;
  background-color: transparent;
}
.hcareer-link:before {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-bottom-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.hcareer-link:hover:before {
  left: 2.2rem;
  background-image: url(../images/arrow-bottom-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .hcareer {}
  .hcareer-box {}
  .hcareer-image-box {}
  .hcareer-image {}
  .hcareer-title-box {}
  .hcareer-title {}
  .hcareer-desc {}
  .hcareer-link-box {}
  .hcareer-link {}
}

/* Components - Icons list */

.licons-background {
  background: #F2F4F6;
}
.licons-title-box {
  margin-bottom: 4rem;
}
.licons-title {
  color: #002F47;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
}
.licons-title b,
.licons-title strong {
  font-weight: 400;
}
.licons {}
.licons-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.licons-item {
  background: #FFF;
  color: #002F47;
  border-radius: 1.6rem;
  width: calc(100% / 6 - 2rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(100% / 6 - 2rem);
  box-sizing: border-box;
  padding: 2.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  transition: .4s all ease-in-out;
}
.licons-item:hover {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}
.licons-item-icon-box {
  position: relative;
  text-align: center;
  height: 7rem;
  line-height: 7rem;
  transition: .4s all ease-in-out;
}
.licons-item:hover .licons-item-icon-box {
  height: 8rem;
}
.licons-item-icon {
  width: 7rem;
  height: 7rem;
  left: 50%;
  top: 0;
  position: absolute;
  vertical-align: middle;
  object-fit: contain;
  transform: translate(-50%, 0) scale(1);
  transition: .4s all ease-in-out;
}
.licons-item:hover .licons-item-icon {
  transform: translate(-50%, .5rem) scale(1.3);
}
.licons-item-title-box {
  padding-top: 2.2rem;
}
.licons-item-title {
  margin: 0;
  line-height: 2rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
}
.licons-nav-arrows {
  display: none;
}
.licons-nav-left-box {}
.licons-nav-left {}
.licons-nav-right-box {}
.licons-nav-right {}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .licons-background {}
  .licons-title-box {}
  .licons-title {}
  .licons {}
  .licons-list {}
  .licons-item {}
  .licons-item-icon-box {}
  .licons-item-icon {}
  .licons-item-title-box {}
  .licons-item-title {}
  .licons-nav-arrows {}
  .licons-nav-left-box {}
  .licons-nav-left {}
  .licons-nav-right-box {}
  .licons-nav-right {}
}

/* Components - Career steps */

.scareer-background {
  background: #F2F4F6;
}
.scareer-title-box {
  margin-bottom: 4rem;
}
.scareer-title {
  color: #002F47;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
}
.scareer-title > b,
.scareer-title > strong {
  font-weight: 400;
}
.scareer {}
.scareer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  counter-reset: item;
}
.scareer-item {
  color: #002F47;
  background: #F6F7F9;
  width: calc(100% / 4 - 2rem);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(100% / 4 - 1.8rem);
  position: relative;
  counter-increment: item;
  box-sizing: border-box;
  padding: 2rem 2.4rem;
  border-radius: 1.6rem;
  transition: .2s all ease-in-out;
}
.scareer-item:hover {
  background: #FFF;
}
.scareer-item:before {
  content: counter(item) ".";
  color: #E30613;
  font-size: 5.5rem;
  font-weight: 100;
  text-align: center;
  display: block;
  margin-bottom: 1rem;
}
.scareer-item:after {
  content: '';
  width: 2.1rem;
  height: 1.4rem;
  background: url(../images/arrow-right.svg) no-repeat center / contain;
  position: absolute;
  top: 4.3rem;
  right: 3.2rem;
}
.scareer-item:last-child:after {
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/user-icon.svg);
  top: 3.8rem;
  right: 3.1rem;
}
.scareer-item-title-box {}
.scareer-item-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}
.scareer-item-desc {
  margin-top: 2rem;
  font-size: 1.3rem;
  line-height: 2.1rem;
  font-weight: 300;
  text-align: center;
}
.scareer-nav-arrows {
  display: none;
}
.scareer-nav-left-box {}
.scareer-nav-left {}
.scareer-nav-right-box {}
.scareer-nav-right {}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .scareer-background {}
  .scareer-title-box {}
  .scareer-title {}
  .scareer {}
  .scareer-list {}
  .scareer-item {}
  .scareer-item-title-box {}
  .scareer-item-title {}
  .scareer-item-desc {}
  .scareer-nav-arrows {}
  .scareer-nav-left-box {}
  .scareer-nav-left {}
  .scareer-nav-right-box {}
  .scareer-nav-right {}
}

/* Components - Career offers */

.ocareer-gallery-block {
  margin-bottom: 8rem;
}
.ocareer-gallery {}
.ocareer-gallery-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.ocareer-gallery-item {
  position: relative;
  width: calc(33.3333% - 1.6rem);
}
.ocareer-gallery-item:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.ocareer-gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.8rem;
}
.ocareer-gallery-nav-arrows {
  display: none;
}
.ocareer-gallery-nav-left-box {}
.ocareer-gallery-nav-left {}
.ocareer-gallery-nav-right-box {}
.ocareer-gallery-nav-right {}
.ocareer-box {}
.ocareer-box > td:first-child {
  width: 30%;
}
.ocareer-title-box {
    padding-right: 1rem;
}
.ocareer-title {
  color: #002F47;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
  line-height: 3.9rem;
}
.ocareer-title b,
.ocareer-title strong {
  font-weight: 400;
}
.ocareer-desc {
  color: #002F47;
  line-height: 2.7rem;
  font-size: 1.5rem;
  font-weight: 300;
}
.ocareer {}
.ocareer-table {
  border-collapse: collapse;
  width: 100%;
}
.ocareer-table td {
  padding: 0;
}
.ocareer-table-space {
  height: 8rem;
}
.ocareer-table-border-box {}
.ocareer-table-border {
  width: 100%;
  padding: 1rem 0;
}
.ocareer-table-border:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #F2F2F2;
}
.ocareer-table-row {
  color: #002F47;
}
.ocareer-table-row > td {}
.ocareer-table-row > td > span {
  display: block;
  line-height: 2.7rem;
  font-size: 1.5rem;
  font-weight: 300;
}
.ocareer-table-button-more {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  cursor: pointer;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  top: 0;
  right: 0;
  z-index: 2;
  opacity: 1;
  transition: .2s color ease-in-out, .2s background-color ease-in-out, .2s opacity ease-in-out;
}
.ocareer-table-button-more:hover {
  color: #002F47;
  background-color: transparent;
}
.ocareer-table-button-more:before {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-bottom-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.ocareer-table-button-more:hover:before {
  left: 2.2rem;
  background-image: url(../images/arrow-bottom-red.svg);
}
.ocareer-table-button-less {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #E30613;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  background: transparent;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: .2s color ease-in-out, .2s border-color ease-in-out, .2s opacity ease-in-out;
}
.ocareer-table-button-less:hover {
  color: #002F47;
  border-color: #E30613;
}
.ocareer-table-button-less:before {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-top-red.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.ocareer-table-button-less:hover:before {
  left: 1rem;
  background-image: url(../images/arrow-top-red.svg);
}
.ocareer-table-button {
  position: relative;
  text-align: right;
}
.ocareer-table-row.open .ocareer-table-button-more {
  z-index: 1;
  position: absolute;
  user-select: none;
  pointer-events: none;
  opacity: 0;
}
.ocareer-table-row.open .ocareer-table-button-less {
  position: relative;
  pointer-events: auto;
  user-select: auto;
  z-index: 2;
  opacity: 1;
}
.ocareer-table-row-info {
  position: relative;
}
.ocareer-table-row-info > td {
  vertical-align: top;
}
.ocareer-table-container {}
.ocareer-table-container:before {
  content: '';
  position: absolute;
  background: #F2F4F6;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ocareer-table-container:after {
  content: '';
  position: absolute;
  background: #FFF;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  border-radius: 1.8rem;
  z-index: 5;
  opacity: 0;
  transition: .2s opacity ease-in-out;
}
.ocareer-table-row-info:hover .ocareer-table-container:after {
  opacity: 1;
}
.ocareer-table-row-info.first .ocareer-table-container:after {
  top: 5rem;
}
.ocareer-table-row-info.last .ocareer-table-container:after {
  display: none;
}
.ocareer-table-row-info.first .ocareer-table-container:before {
  border-radius: 1.8rem 1.8rem 0 0;
  height: calc(100% - 1rem);
  top: 1rem;
}
.ocareer-table-row-info.last .ocareer-table-container:before {
  border-radius: 0 0 1.8rem 1.8rem;
}
.ocareer-table-row-info.first.last .ocareer-table-container:before {
  border-radius: 1.8rem;
}
.ocareer-table-list-title {
  color: #002F47;
  position: relative;
  z-index: 10;
  line-height: 3.1rem;
  font-size: 2.5rem;
  font-weight: 100;
  padding-top: 3.6rem;
  padding-left: 6rem;
}
.ocareer-table-list-title b,
.ocareer-table-list-title strong {
  font-weight: 600;
}
.ocareer-table-row-info.first .ocareer-table-list-title {
  padding-top: 6.6rem;
  padding-right: 2rem;
}
.ocareer-table-list-box {
  position: relative;
  z-index: 10;
  padding: 3.6rem 0;
}
.ocareer-table-row-info.first .ocareer-table-list-box {
  padding-top: 6.6rem;
}
.ocareer-table-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ocareer-table-list > li {
  color: #002F47;
  position: relative;
  padding-left: 3.2rem;
  line-height: 2.7rem;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.ocareer-table-list > li:last-child {
  margin-bottom: 0;
}
.ocareer-table-list > li:before {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/list-check.svg) no-repeat center / contain;
  position: absolute;
  top: .2rem;
  left: 0;
}
.ocareer-table-apply-box {
  position: relative;
  z-index: 10;
  padding: 0 2rem;
  text-align: center;
  margin: 0 2rem;
  border-top: 1px solid #FFF;
  transition: .4s all ease-in-out;
}
.ocareer-table-row-info.open .ocareer-table-apply-box {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.ocareer-table-apply-title {
  color: #002F47;
  font-size: 2.5rem;
  font-weight: 100;
  line-height: 3.1rem;
}
.ocareer-table-apply-title b,
.ocareer-table-apply-title strong {
  font-weight: 600;
}
.ocareer-table-apply-button-box {
  margin-top: 2.4rem;
}
.ocareer-table-apply-button {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  border: 2px solid #E30613;
  padding: 0 2rem 0 6rem;
  background: #E30613;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.ocareer-table-apply-button:hover {
  color: #002F47;
  background-color: transparent;
}
.ocareer-table-apply-button:before {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-bottom-white.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.ocareer-table-apply-button:hover:before {
  left: 2.2rem;
  background-image: url(../images/arrow-bottom-red.svg);
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .ocareer-gallery-block {}
  .ocareer-gallery {}
  .ocareer-gallery-list {}
  .ocareer-gallery-item {}
  .ocareer-gallery-image {}
  .ocareer-gallery-nav-arrows {}
  .ocareer-gallery-nav-left-box {}
  .ocareer-gallery-nav-left {}
  .ocareer-gallery-nav-right-box {}
  .ocareer-gallery-nav-right {}
  .ocareer-box {}
  .ocareer-title-box {}
  .ocareer-title {}
  .ocareer-desc {}
  .ocareer {}
  .ocareer-table {}
  .ocareer-table-row {}
  .ocareer-table-button-more {}
  .ocareer-table-button-less {}
  .ocareer-table-row-info {}
  .ocareer-table-container {}
  .ocareer-table-list-title {}
  .ocareer-table-list-box {}
  .ocareer-table-list {}
  .ocareer-table-apply-box {}
  .ocareer-table-apply-title {}
  .ocareer-table-apply-button-box {}
  .ocareer-table-apply-button {}
}

/* Components - Career form */

.fcareer {}
.fcareer:after {
  content: '';
  cleasr: both;
  display: block;
}
.fcareer-box {
  overflow: hidden;
  padding-right: 7.2rem;
}
.fcareer-gallery {
  width: 41.7rem;
  float: right;
}
.fcareer-gallery-item {
  position: relative;
  margin-bottom: 1.6rem;
}
.fcareer-gallery-item:last-child {
  margin: 0;
}
.fcareer-gallery-item:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.fcareer-gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3rem;
}
.fcareer-title-box {
  margin-bottom: 4.8rem;
}
.fcareer-title {
  color: #002F47;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 100;
}
.fcareer-title b,
.fcareer-title strong {
  font-weight: 400;
}
.fcareer-form {}
.fcareer-form .form-submit-box {
  text-align: right;
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .fcareer {}
  .fcareer-box {}
  .fcareer-gallery {}
  .fcareer-gallery-item {}
  .fcareer-gallery-image {}
  .fcareer-title-box {}
  .fcareer-title {}
  .fcareer-form {}
}

/* Components - Links list */

.llinks {}
.llinks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.llinks-item {
  margin-bottom: .4rem;
}
.llinks-item:last-child {
  margin: 0;
}
.llinks-item-link {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 5rem;
  line-height: calc(4.8rem - 4px);
  color: #E30613;
  text-decoration: none;
  border: 2px solid transparent;
  padding: 0 2rem 0 6rem;
  border-radius: 4rem;
  position: relative;
  transition: .2s all ease-in-out;
}
.llinks-item-link:hover {
  border-color: #E30613;
  color: #002F47;
}
.llinks-item-link:before {
  content: '';
  width: 1.2rem;
  height: 1.1rem;
  background: url(../images/arrow-button-red.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.llinks-item-link:hover:before {
  left: 2rem;
}

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  .llinks {}
  .llinks-list {}
  .llinks-item {}
  .llinks-item-link {}
}

/* Components - Footer */

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  /* Mobile */
}

/* Components - Footer */

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  /* Mobile */
}

/* Components - Footer */

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  /* Mobile */
}

/* Components - Footer */

@media screen and (min-width: 992px) {
  /* Hover */
}

@media screen and (max-width: 991px) {
  /* Mobile */
}

