@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-size: 1em;
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 600;
}

a {
  text-decoration: underline;
  color: #0065af;
}
a:hover {
  text-decoration: none;
}

h1 {
  font-size: 3em;
  margin: 0 0 32px;
  font-weight: 600;
  padding: 0;
}
@media (max-width: 639px) {
  h1 {
    font-size: 2.5em;
  }
}

h2 {
  font-size: 2em;
  font-weight: 600;
  margin: 0 0 24px;
  padding: 0;
}

h3 {
  margin: 0;
}

p {
  font-size: 1.2em;
  margin: 0 0 12px;
  padding: 0;
}
@media (max-width: 639px) {
  p {
    font-size: 1em;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.embed-wrapper {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
}
.embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.button {
  display: inline-block;
  padding: 6px 12px;
  background: #0065af;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
}
.button:hover {
  background: #0082e2;
}

.button-white {
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  color: #0065af;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
}
.button-white:hover {
  background: #afddff;
}

.button-contact {
  display: inline-block;
  padding: 6px 12px;
  background: #fc0;
  color: #363636;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
}
.button-contact:hover {
  background: #ffd633;
}

.button-menu {
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  color: #363636;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
}
.button-menu:hover {
  background: white;
}

.buttons {
  text-align: center;
  margin: 12px 0;
}
.buttons > * {
  margin: 0 12px;
}

.content > * {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.header {
  position: relative;
  color: #fff;
  background: #0065af url("../img/bg.png") center center no-repeat;
  background-blend-mode: overlay;
  background-size: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 100px), 65% 100%, 0% calc(100% - 70px));
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (max-width: 1299px) {
  .header {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 80px), 65% 100%, 0% calc(100% - 50px));
    padding-bottom: 10px;
    margin-bottom: 24px;
  }
}
@media (max-width: 799px) {
  .header {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 65% 100%, 0% calc(100% - 30px));
    padding-bottom: 10px;
    margin-bottom: 24px;
  }
}
.header > * {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 40px;
}
.header .menubar {
  color: #363636;
  margin-bottom: 60px;
  background: #fff;
  padding: 0 20px;
  height: 60px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menubar .logo {
  display: block;
  flex: 0 0 auto;
}
.header .menubar .logo img {
  height: 25px;
  display: block;
}
.header .menubar .links {
  display: inline-block;
  list-style-type: none;
  margin: 0 48px 0 0;
  padding: 0;
}
.header .menubar .links li {
  display: inline-block;
  margin: 0 12px;
  padding: 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.header .menubar .links li:hover {
  border-bottom-color: #363636;
}
.header .menubar .links li a {
  color: #363636;
  display: inline-block;
  padding: 3px 0;
  text-transform: uppercase;
  text-decoration: none;
}
.header .menubar .button-menu {
  display: none;
  width: 60px;
  height: 60px;
  margin: -18px -14px;
  position: relative;
  top: 0;
  background-image: url("../img/ico-menu.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.header .menubar .menu-wrapper {
  position: relative;
}
@media (max-width: 899px) {
  .header .menubar .links {
    margin-right: 16px;
  }
}
@media (max-width: 799px) {
  .header .menubar .links {
    font-size: 0.9em;
  }
  .header .menubar .links li {
    margin: 0 6px;
  }
  .header .menubar .button {
    font-size: 0.9em;
  }
}
@media (max-width: 639px) {
  .header .menubar .button-menu {
    display: inline-block;
  }
  .header .menubar .menu-content {
    display: none;
  }
}
@media (max-width: 359px) {
  .header .menubar {
    margin-bottom: 32px;
  }
}

#menu_popup {
  display: block;
  position: absolute;
  top: 80px;
  right: 10px;
  background: #fff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  padding: 0 32px 32px;
  min-width: 200px;
}
#menu_popup .links {
  display: block;
  margin: 0 0 24px;
  list-style-type: none;
  padding: 0;
}
#menu_popup .links li {
  display: block;
  margin: 16px 0;
  border: none;
  padding: 0;
}
#menu_popup .links li a {
  color: #363636;
  display: inline-block;
  padding: 3px 0;
  text-transform: uppercase;
  text-decoration: none;
}
#menu_popup .links li a:hover {
  text-decoration: underline;
}

.footer {
  background: #363636;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}
.footer .button-top {
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 48px;
  height: 48px;
  color: #363636;
  border-radius: 4px;
  background: #fc0 url("../img/ico-arrow-up.svg") center center no-repeat;
  background-size: 24px;
  position: fixed;
  bottom: 72px;
  right: 32px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.footer .button-top:hover {
  background-color: #ffd633;
}
.footer .button-top.visible {
  opacity: 1;
}

.header-content {
  margin-top: 80px;
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-content .image {
  width: 35%;
}
.header-content .image img {
  width: 100%;
  height: auto;
}
.header-content .name {
  width: 55%;
}
.header-content .name .upper-motto {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.9em;
  line-height: 150%;
}
.header-content .name h1 {
  font-size: 4em;
}
.header-content .name .buttons {
  margin: 40px -12px 0;
  text-align: left;
}
.header-content .name .buttons > * {
  margin-bottom: 12px;
}
.header-content .text-variant-2 {
  display: none;
  margin: 32px -24px 0;
  width: calc(100% + 48px);
}
.header-content .text-variant-2 .buttons {
  width: 100%;
  text-align: center;
}
.header-content .text-variant-2 .buttons > * {
  margin-bottom: 12px;
}
@media (max-width: 599px) {
  .header-content .name h1 {
    font-size: 3em;
  }
  .header-content .text-variant-1 {
    display: none;
  }
  .header-content .text-variant-2 {
    display: block;
  }
}
@media (max-width: 359px) {
  .header-content {
    display: block;
    margin-top: 32px;
  }
  .header-content .image {
    width: 80%;
    margin: 0 auto 32px;
  }
  .header-content .name {
    width: auto;
  }
  .header-content .text-variant-1 {
    display: none;
  }
  .header-content .text-variant-2 {
    display: block;
  }
}

.features {
  background: #f0f0f0;
  padding-top: 160px;
  margin-top: -100px;
  min-height: 280px;
  max-width: none;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.features .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.features .list {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.features .list li {
  flex: 0 1 auto;
  padding-left: 52px;
  position: relative;
  height: 50px;
}
.features .list li h3 span {
  display: block;
}
.features .list li img {
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.5s ease;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
}
.features .list li.separator {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0 36px;
  flex: 0 0 auto;
  background: #000;
  padding: 0;
}
@media (max-width: 1199px) {
  .features .list h3 {
    font-size: 1em;
  }
  .features .list li {
    display: inline-block;
    padding-left: 44px;
  }
  .features .list li.separator {
    width: 1px;
    margin: 0 16px;
  }
  .features .list li img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 899px) {
  .features {
    padding-bottom: 32px;
  }
  .features .list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .features .list li {
    width: 30%;
    margin-bottom: 12px;
  }
  .features .list li.separator {
    display: none;
  }
  .features .list li:nth-child(1),
.features .list li:nth-child(7) {
    margin-right: 10%;
  }
}
@media (max-width: 599px) {
  .features {
    margin-top: -137px;
    padding-bottom: 16px;
  }
  .features .list li {
    width: 50%;
    margin-right: 0 !important;
  }
}
@media (max-width: 419px) {
  .features {
    margin-top: -177px;
  }
  .features .list {
    display: block;
  }
  .features .list li {
    display: flex;
    align-items: center;
    padding-left: 0;
    width: auto;
    min-height: 32px;
  }
  .features .list li h3 span {
    display: inline;
  }
  .features .list li img {
    width: 24px;
    height: 24px;
    position: relative;
    top: auto;
    left: auto;
  }
}

.media {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
}
.media .video {
  flex: 0 1 auto;
  width: 40%;
}
.media .descr {
  flex: 1;
  max-width: 55%;
}
@media (max-width: 899px) {
  .media {
    display: block;
  }
  .media .video {
    width: auto;
    max-width: 640px;
    margin: 0 auto 32px;
  }
  .media .descr {
    max-width: none;
  }
}
@media (max-width: 639px) {
  .media {
    padding-bottom: 12px;
  }
}

.accessories {
  max-width: none;
  padding: 0;
  position: relative;
  margin-bottom: 0;
}
.accessories h2 {
  background: #f0f0f0;
  padding: 24px;
  text-align: center;
  margin-bottom: 0;
  font-size: 2em;
}
@media (max-width: 599px) {
  .accessories h2 {
    font-size: 1.5em;
  }
}
.accessories .list-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.accessories .list {
  background-image: url("../img/colibri-logo-icon.svg");
  background-repeat: no-repeat;
  background-size: 44%;
  background-position: right center;
  padding: 32px 0;
  padding-right: 44%;
  position: relative;
}
.accessories .list:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  left: 64px;
  width: 2px;
  background: #F0F0F0;
}
.accessories .list .item {
  display: block;
  position: relative;
  padding: 32px 0;
  padding-left: 172px;
  margin: 32px 0;
  text-decoration: none;
  color: #363636;
}
.accessories .list .item .image {
  transition: background 0.75s ease, border-color 0.75s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 5px solid #F0F0F0;
  background: #fafafa;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.accessories .list .item .image img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  padding: 12px;
}
.accessories .list .item h3 {
  text-transform: uppercase;
  margin: 0 0 10px;
}
.accessories .list .item p {
  font-size: 1em;
}
.accessories .list .item.item-foil img {
  left: 2px;
  top: -3px;
}
.accessories .list .item.item-ecmo-adult img {
  left: -8px;
  top: 2px;
}
.accessories .list .item:after {
  content: "";
  display: block;
  height: 6px;
  margin-bottom: -6px;
  background: url("../img/ico-more.svg") center center no-repeat;
  background-size: auto 6px;
  opacity: 0;
  transition: opacity 0.75s ease;
  width: 60%;
}
.accessories .list .item.with-description h3, .accessories .list .item.with-description .image {
  cursor: pointer;
}
.accessories .list .item.with-description:hover .image {
  border-color: #0A9FDB;
  background: #fafdff;
}
.accessories .list .item.with-description:not(.expanded):hover:after {
  opacity: 1;
}
.accessories .list .item.with-description .description {
  margin-bottom: -32px;
  display: none;
}
.accessories .list .item.with-description .description img {
  width: 100%;
}
@media (max-width: 899px) {
  .accessories .list-wrapper:before {
    content: "";
    position: absolute;
    top: 90px;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url("../img/colibri-logo-icon.svg");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center center;
    opacity: 0.05;
  }
  .accessories .list {
    padding-right: 0;
    background: none;
  }
  .accessories .list:before {
    left: 48px;
  }
  .accessories .list .item {
    margin: 0;
    padding-left: 130px;
  }
  .accessories .list .item .image {
    width: 96px;
    height: 96px;
  }
}

.contact-form-wrapper {
  max-width: none;
  padding: 0;
  background: #fafafa;
  margin: 0;
}
.contact-form-wrapper h2 {
  text-align: center;
  padding: 24px 24px;
  margin-bottom: 0;
  background: #f0f0f0;
}
@media (max-width: 599px) {
  .contact-form-wrapper h2 {
    font-size: 1.5em;
  }
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px;
}
.contact-form .form-line {
  display: flex;
  justify-content: space-between;
}
.contact-form .form-line .input {
  width: 48%;
  margin-bottom: 16px;
}
.contact-form .form-line .input.wide {
  width: 100%;
}
.contact-form .form-line .input label {
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
}
.contact-form .form-line .input label.required:after {
  content: "*";
  color: red;
  margin-left: 4px;
}
.contact-form .form-line .input input, .contact-form .form-line .input textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1em;
}
.contact-form .form-line .input textarea {
  height: 150px;
  resize: vertical;
}
.contact-form .form-line .input .button {
  align-self: center;
}
.contact-form .form-line .input .error-message {
  color: red;
  display: none;
  font-size: 0.9em;
  margin-top: 8px;
  flex: none;
  width: 100%;
}
.contact-form .form-line .input.checkbox .wrapper {
  display: flex;
  align-items: start;
}
.contact-form .form-line .input.checkbox input {
  width: auto;
  margin-right: 8px;
}
.contact-form .form-line .input.checkbox label {
  cursor: pointer;
}
.contact-form .form-line .input.checkbox label span {
  display: block;
}
.contact-form .form-line .input.checkbox .error-message {
  margin-left: 28px;
}
.contact-form .form-line .input.error input {
  border-color: red;
}
.contact-form .form-line .input.error .error-message {
  display: block;
}
.contact-form .buttons {
  margin-top: 24px;
}
.contact-form .success {
  text-align: center;
  padding: 24px;
  background: #e0ffe0;
  border: 1px solid #b2ffb2;
  border-radius: 4px;
  color: #2e662e;
}
@media (max-width: 599px) {
  .contact-form .form-line .input label span {
    display: inline !important;
  }
}
@media (max-width: 479px) {
  .contact-form .form-line {
    display: block;
  }
  .contact-form .form-line .input {
    width: auto;
  }
}

.overlay-active {
  overflow: hidden;
}

#overlay-template {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(16px);
}
.overlay .overlay-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 24px;
  border-radius: 3px;
  max-width: calc(100% - 48px);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
.overlay .overlay-content-wrapper h3 {
  margin-top: 0;
}
.overlay .overlay-content-wrapper .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 42px;
  font-weight: bold;
  display: block;
  background: #fff;
  text-decoration: none;
  color: #363636;
  width: 48px;
  height: 48px;
  line-height: 46px;
  text-align: center;
  border-radius: 3px;
}
.overlay .overlay-content-wrapper .close:hover {
  color: dimgray;
}
.overlay .overlay-content {
  min-height: 100px;
}
.overlay .embed-wrapper {
  width: 640px;
}
@media (max-width: 799px) {
  .overlay .overlay-content-wrapper {
    width: 100%;
    padding: 16px;
  }
  .overlay .embed-wrapper {
    width: auto;
  }
}

#viewer {
  width: 100%;
  height: 100%;
  overflow: auto;
  margin: 64px auto;
}
@media (max-width: 639px) {
  #viewer {
    margin: 32px 0;
    padding: 0 8px;
  }
}

.pdf-page {
  border: 1px solid #363636;
  direction: ltr;
  width: 100%;
  height: auto;
  min-height: 20px;
}

/*# sourceMappingURL=app.css.map */
