@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap);
html {
  font-family: "Montserrat";
}

.paragraph {
  display: block;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
}
.paragraph ul {
  margin: 1em 0;
  padding-left: 28px;
}
.paragraph ul li {
  list-style: disc;
}
.paragraph--bold {
  font-weight: 700;
}
.paragraph--quote {
  font-weight: bold;
  font-size: 20px;
  line-height: 32px;
  padding-left: 24px;
  border-left: 8px solid #E5F4F3;
}

ul {
  padding-left: 28px;
}
ul li {
  font-size: 16px;
  line-height: 24px;
  list-style: disc;
}
ul li:not(:last-child) {
  margin-bottom: 24px;
}

body, html {
  color: #191B23;
}
body.no-scroll, html.no-scroll {
  overflow: hidden;
}

.container-small {
  max-width: 936px;
  width: 100%;
}

.link {
  color: #0E4AAD;
}
.link:hover {
  opacity: 0.8;
}

.c-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat";
  color: #0E4AAD;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .c-link {
    text-align: center;
    font-size: 16px;
  }
}
.c-link.disabled, .c-link.disabled:hover {
  opacity: 1;
  color: #191B23;
  cursor: default;
}
.c-link:hover {
  opacity: 0.8;
}
.c-link.in-text {
  font-size: unset;
}
.c-link--big {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
}
@media (max-width: 768px) {
  .c-link--big {
    text-align: center;
  }
}
.c-link--big.c-link--active {
  background: #E5F4F3;
  border-radius: 8px;
  color: #1D3B6D;
}
@media (max-width: 768px) {
  .c-link--big.c-link--active {
    background: #1D3B6D;
    color: white;
  }
}
.c-link--with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-link--with-icon img {
  display: block;
  margin-right: 8px;
}

@media (min-width: 1024px) {
  .c-nav .c-link + .c-link {
    margin-left: 0px;
  }
}

.c-button {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 80px;
  margin: 8px;
  transition: box-shadow 0.3s ease;
}
.c-button--danger {
  background: #E93653;
  box-shadow: 0 0 0 2px rgba(233, 54, 83, 0.2);
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-button--danger {
    box-shadow: 0 0 0 8px rgba(233, 54, 83, 0.2);
  }
}
.c-button--danger:focus, .c-button--danger:active, .c-button--danger:hover {
  box-shadow: 0 0 0 4px rgba(233, 54, 83, 0.2), inset 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}
.c-button--blue {
  background: #0E4AAD;
  box-shadow: 0 0 0 2px rgba(14, 74, 173, 0.2);
}
@media (min-width: 768px) {
  .c-button--blue {
    box-shadow: 0 0 0 8px rgba(14, 74, 173, 0.2);
  }
  .c-button--blue:focus, .c-button--blue:active, .c-button--blue:hover {
    box-shadow: 0 0 0 8px rgba(14, 74, 173, 0.2), inset 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  }
}
.c-button--blue-hollow {
  background: transparent;
  border: 1.5px solid #0E4AAD;
  color: #0E4AAD;
  transition: all 0.2s ease;
}
.c-button--blue-hollow:focus, .c-button--blue-hollow:active, .c-button--blue-hollow:hover {
  opacity: 0.8;
}
.c-button--white {
  box-shadow: none;
  background: #fff;
  color: #0E4AAD;
  margin: 0;
}
.c-button--no-padding {
  padding: 0;
}
.c-button--lightblue {
  background: #E5F4F3;
  color: #0E4AAD;
}
.c-button--small {
  padding: 0 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  height: 40px;
  margin: 0;
}

.c-header__bottom-links {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .c-header__bottom-links a {
    margin-bottom: 16px;
  }
}
@media (min-width: 1024px) {
  .c-header__bottom-links {
    flex-direction: row;
  }
  .c-header__bottom-links .c-link + .c-link {
    margin-left: 16px;
  }
}
.c-header .c-link {
  padding: 8px 12px;
}
.c-header__logo--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .c-header__logo--desktop {
    display: block;
  }
}
.c-header__nav {
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  display: none;
}
@media (min-width: 1024px) {
  .c-header__nav {
    position: static;
    background: initial;
    display: block;
  }
}
@media (max-width: 768px) {
  .c-header__nav {
    background-color: white;
    padding-left: 8px !important;
    padding-right: 8px !important;
    padding-top: 0px !important;
    padding-bottom: 8px !important;
  }
  .c-header__nav > div {
    background: #f3f5f8;
    border-radius: 0px 0px 32px 32px;
    height: 100%;
    padding: 8px;
    padding-top: 16px;
    justify-content: space-between;
  }
  .c-header__nav > div nav {
    padding-bottom: 12px;
  }
  .c-header__nav > div nav a {
    padding: 0px !important;
    font-weight: bold;
    margin-bottom: 32px;
  }
}
.c-header__open {
  display: block;
}
.c-header__close {
  display: none;
}
.c-header.open {
  background: white;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.c-header.open .c-header__mobile {
  background-color: #f3f5f8;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 8px;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-radius: 32px 32px 0 0;
}
.c-header.open .c-header__nav {
  display: block;
}
.c-header.open .c-header__open {
  display: none;
}
.c-header.open .c-header__close {
  display: block;
}
.c-header__mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
}
.c-header__mobile #mobile-header-close-btn {
  width: 22px;
}
.c-header__mobile-selected {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.c-header__mobile button {
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .c-header__mobile {
    display: none;
  }
}
.c-header__omsz {
  display: none;
}
@media (min-width: 1024px) {
  .c-header__omsz {
    display: block;
  }
}

@media (max-width: 768px) {
  .language-button.c-link {
    background-color: transparent !important;
    font-weight: 500;
    color: #0E4AAD;
  }
}
.language-button.c-link--active {
  background: #3DBEB3 !important;
}
@media (max-width: 768px) {
  .language-button.c-link--active {
    color: #04063D;
  }
}

.c-content {
  min-height: 60vh;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .c-content {
    margin-top: 0;
  }
}

.c-footer {
  background: #F3F5F8;
  border-radius: 24px;
  margin: 16px;
}
.c-footer__icon-instagram img {
  height: 23px;
  width: auto;
}

.c-breadcrumb {
  color: #4F5468;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.c-breadcrumb__home img {
  display: block;
  width: 16px;
  height: auto;
}

.c-badge {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  padding: 8px 16px;
  background: #E5F4F3;
  border-radius: 4px;
  color: #0E4AAD;
  transition: opacity 0.2s ease;
  text-align: center;
  flex-shrink: 0;
  flex-grow: 0;
}
.c-badge--white {
  color: #0E4AAD;
  background: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.c-badge--blue {
  color: #fff;
  background: #0E4AAD;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.c-badge--rounded {
  border-radius: 32px;
}
.c-badge--rounded:hover {
  opacity: 0.8;
}

.c-blog-intro {
  border: 1px solid #E5F4F3;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 16px;
}
.c-blog-intro__thumbnail {
  width: 100%;
  background: #E4E9F0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.c-blog-intro__thumbnail img {
  display: block;
  width: 100%;
}
.c-blog-intro__thumbnail h3 {
  position: absolute;
  left: 0;
  bottom: 16px;
  padding: 8px;
  background: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #1B1D42;
}
.c-blog-intro__content h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-bottom: 16px;
}
.c-blog-intro__content h3 a {
  color: #000;
  transition: opacity 0.2s ease;
}
.c-blog-intro__content h3 a:hover {
  opacity: 0.8;
}
.c-blog-intro__badges {
  display: inline-block;
  margin-bottom: 16px;
}
.c-blog-intro__badges .c-badge {
  display: inline-block !important;
  margin-bottom: 8px;
}
.c-blog-intro__badges .c-badge:not(:last-child) {
  margin-right: 8px;
}
.c-blog-intro small {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #4F5468;
}
.c-blog-intro p {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #4F5468;
  margin-bottom: 16px;
}

.c-emergency {
  margin: 18px 16px;
  background: #FDF6F1;
  border-radius: 24px;
  padding: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-emergency {
    padding: 96px 16px 80px;
  }
}
.c-emergency__inner {
  max-width: 936px;
  width: 100%;
  margin: 0 auto;
}
.c-emergency__inner h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 32px;
  color: #04063D;
  margin-bottom: 32px;
}
.c-emergency__bg {
  position: absolute;
  right: 0;
  bottom: -40px;
}
.c-emergency__list {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #4F5468;
}
.c-emergency__list li {
  font-size: 14px;
  margin-bottom: 0px !important;
}
.c-emergency__white {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
}
.c-emergency__white p {
  font-size: 14px;
  line-height: 24px;
  color: #1B1D42;
}
.c-emergency .c-button--danger {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .c-emergency .c-button--danger {
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .p-blog {
    padding: 0 10px;
  }
}
@media (max-width: 1024px) {
  .p-blog.has-image-post .p-blog__content {
    margin-top: -33px;
    padding: 0px 10px;
  }
}
.p-blog.has-image-post .p-blog__content .spotify-iframe-wrapper iframe {
  width: 560px;
  max-width: 100%;
  height: 200px;
}
.p-blog.has-image-post .p-blog__top {
  padding-bottom: 10rem !important;
}
@media (max-width: 1024px) {
  .p-blog.has-image-post .p-blog__top {
    padding: 24px 1rem;
    margin: 0px !important;
    padding-top: 10px !important;
    padding-bottom: 3rem !important;
  }
}
@media (max-width: 1024px) {
  .p-blog.has-image-post .p-blog__top h1 {
    font-size: 20px;
    margin-bottom: 10px !important;
  }
}
@media (max-width: 1024px) {
  .p-blog.has-image-post .p-blog__top .c-breadcrumb {
    margin-bottom: 8px !important;
    display: block !important;
  }
  .p-blog.has-image-post .p-blog__top .c-breadcrumb > div {
    display: inline-block !important;
  }
}
.p-blog.no-image-post__badges {
  margin-bottom: 0px;
}
.p-blog.no-image-post .p-blog__content {
  margin-top: 12px !important;
  padding: 0px 10px;
}
@media (max-width: 1024px) {
  .p-blog.no-image-post .publication-date {
    margin-top: 0px !important;
    margin-bottom: 1rem;
  }
}
.p-blog.no-image-post .p-blog__top {
  margin: 0 16px;
  padding: 24px 1rem;
}
@media (max-width: 1024px) {
  .p-blog.no-image-post .p-blog__top {
    margin: 0px !important;
    padding-top: 10px !important;
    padding-bottom: 3px !important;
  }
}
.p-blog.no-image-post .p-blog__top h1 {
  margin-bottom: 34px;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .p-blog.no-image-post .p-blog__top h1 {
    font-size: 20px;
    margin-bottom: 10px !important;
  }
}
.p-blog.no-image-post .p-blog__top .c-breadcrumb {
  align-items: center;
}
@media (max-width: 1024px) {
  .p-blog.no-image-post .p-blog__top .c-breadcrumb {
    margin-bottom: 8px !important;
    display: block !important;
  }
  .p-blog.no-image-post .p-blog__top .c-breadcrumb > div {
    display: inline-block !important;
  }
}
.p-blog.no-image-post .p-blog__content {
  margin-top: 0px;
}
.p-blog__top {
  background: #E5F4F3;
  border-radius: 24px;
  padding-top: 24px;
  padding-bottom: 170px;
  margin: 0 16px;
}
.p-blog__top h1 {
  font-weight: bold;
  font-size: 48px;
  line-height: 56px;
  color: #1B1D42;
  margin-bottom: 48px;
}
.p-blog__top small {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #4F5468;
}
.p-blog__badges {
  margin-bottom: 0px;
  display: inline-block;
}
.p-blog__badges .c-badge {
  display: inline-block !important;
  margin-bottom: 8px;
}
.p-blog__badges .c-badge:not(:last-child) {
  margin-right: 8px;
}
.p-blog__content {
  margin-top: -146px;
  max-width: 936px;
}
@media (max-width: 1024px) {
  .p-blog__content #youtube-iframe-wrapper {
    display: flex;
    justify-content: center;
  }
}
.p-blog__image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 24px;
  border-radius: 8px;
}
.p-blog__more {
  display: flex;
  justify-content: space-between;
}
.p-blog__more .c-blog-intro {
  flex: 1;
}
.p-blog__more .c-blog-intro + .c-blog-intro {
  margin-left: 24px;
}

.p-blog-list__intro h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 24px;
  margin-bottom: 40px;
}
.p-blog-list__intro p {
  color: #4F5468;
  max-width: 936px;
  font-size: 16px;
  line-height: 24px;
}
.p-blog-list__intro p.bold {
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-blog-list__intro p {
    font-size: 20px;
    line-height: 32px;
  }
}
.p-blog-list__featured {
  background: #FFFFFF;
  border: 1px solid #E5F4F3;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-blog-list__featured {
    padding: 24px;
  }
}
.p-blog-list__featured-video {
  width: 100%;
  /*height: 280px;*/
  background: #E4E9F0;
  flex-shrink: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-blog-list__featured-video {
    max-width: 465px;
    margin-bottom: 0;
  }
}
.p-blog-list__featured-content h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 16px;
}
.p-blog-list__featured-content small {
  font-size: 12px;
  line-height: 16px;
  color: #1B1D42;
  margin-bottom: 16px;
  display: block;
}
.p-blog-list__featured-content p {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
.p-blog-list__featured-content .c-badge + .c-badge {
  margin-left: 8px;
}
.p-blog-list__featured-badges {
  margin-bottom: 16px;
}
.p-blog-list__content {
  margin-top: -60px;
}
@media (min-width: 768px) {
  .p-blog-list__content {
    margin-top: -138px;
  }
}
.p-blog-list__list {
  width: 100%;
  flex-shrink: 0;
  margin-right: 24px;
}
@media (min-width: 1024px) {
  .p-blog-list__list {
    max-width: 512px;
  }
}
@media (min-width: 1280px) {
  .p-blog-list__list {
    max-width: 768px;
  }
}
.p-blog-list__categories .c-badge {
  margin: 0 8px 8px 0;
}
.p-blog-list__categories h3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}
.p-blog-list__more {
  align-items: flex-start;
}
.p-blog-list__top {
  background: #E5F4F3;
  border-radius: 24px;
  padding: 16px 16px 70px;
  margin: 0 16px;
}
@media (min-width: 768px) {
  .p-blog-list__top {
    padding-top: 24px;
    padding-bottom: 170px;
  }
}

.p-rolunk__top {
  background: #E5F4F3;
  border-radius: 24px;
  padding: 24px 16px 0;
  margin: 0 16px;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-rolunk__top {
    flex-direction: column;
    padding-bottom: 32px;
  }
}
.p-rolunk__top h1 {
  font-weight: bold;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: #1B1D42;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .p-rolunk__top h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
.p-rolunk__top p {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #4F5468;
  max-width: 648px;
}
@media (min-width: 768px) {
  .p-rolunk__top p {
    color: #1B1D42;
  }
}
.p-rolunk__top-bg {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
.p-rolunk__top-bg img {
  width: 400px;
  margin-right: -70px;
  margin-bottom: -20px;
}
@media (min-width: 768px) {
  .p-rolunk__top-bg {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 0;
  }
  .p-rolunk__top-bg img {
    width: auto;
    margin: 0;
  }
}
.p-rolunk__content {
  max-width: 648px;
  padding: 24px 16px 0;
}
.p-rolunk__content-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
@media (min-width: 768px) {
  .p-rolunk__content-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
}
.p-rolunk__content h3 {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 20px;
  line-height: 32px;
  color: #1B1D42;
}
.p-rolunk__content p {
  margin-bottom: 24px;
}

.p-surgossegi-teendok__blue {
  background: #E5F4F3;
  border-radius: 24px;
  padding: 24px 16px;
  margin: 0 16px;
}
@media (min-width: 768px) {
  .p-surgossegi-teendok__blue {
    padding: 24px 16px 40px;
  }
}
.p-surgossegi-teendok__blue h1 {
  font-weight: bold;
  font-weight: bold;
  color: #1B1D42;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .p-surgossegi-teendok__blue h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
.p-surgossegi-teendok__blue h3 {
  font-weight: bold;
  font-size: 26px;
  line-height: 32px;
  color: #1B1D42;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-surgossegi-teendok__blue h3 {
    margin-bottom: 40px;
  }
}
.p-surgossegi-teendok__blue--second h3 {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p-surgossegi-teendok__blue--second {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .p-surgossegi-teendok__blue--second h3 {
    margin-bottom: 40px;
  }
}
.p-surgossegi-teendok__content {
  max-width: 648px;
  padding-top: 24px;
}
.p-surgossegi-teendok__content-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-surgossegi-teendok__content h3 {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 20px;
  line-height: 32px;
  color: #1B1D42;
}
.p-surgossegi-teendok__content p {
  margin-bottom: 24px;
}
.p-surgossegi-teendok__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 936px;
}
.p-surgossegi-teendok__dont, .p-surgossegi-teendok__do {
  margin-left: auto;
  margin-right: auto;
  max-width: 936px;
}
@media (min-width: 768px) {
  .p-surgossegi-teendok__dont > div, .p-surgossegi-teendok__do > div {
    width: 50%;
  }
}
.p-surgossegi-teendok__dont h3, .p-surgossegi-teendok__do h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-surgossegi-teendok__dont h3, .p-surgossegi-teendok__do h3 {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.p-surgossegi-teendok__dont h3 img, .p-surgossegi-teendok__do h3 img {
  margin-right: 16px;
}
.p-surgossegi-teendok__dont h3 {
  color: #E93653;
}
.p-surgossegi-teendok__do h3 {
  color: #2EB765;
}
@media (min-width: 1024px) {
  .p-surgossegi-teendok #good-to-keep-in-mind {
    height: calc(100% - 72px);
  }
}

#cookie-holder {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 9999999;
  background-color: #0E4AAD;
  color: white;
  padding: 10px 0;
}
@media (max-width: 768px) {
  #cookie-holder {
    padding: 10px;
  }
}
#cookie-holder .container {
  display: flex;
}
@media (max-width: 768px) {
  #cookie-holder .container {
    flex-direction: column;
  }
}
#cookie-holder .container > div:first-child {
  line-height: 22px;
}
#cookie-holder .container div a {
  color: #3dbdb3;
  text-decoration: none;
}
#cookie-holder .container div button {
  text-align: center;
  padding: 5px 10px;
  background-color: #3dbdb3;
  border-radius: 4px;
  color: #fff !important;
  margin-left: 5px;
  margin-right: 1px;
}
@media (max-width: 768px) {
  #cookie-holder .container div button {
    margin-left: 0px;
    margin-top: 5px;
  }
}
