@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-size: "16px";
  font-weight: 400;
  color: #302d86;
}

img {
  max-width: 100%;
}

a {
  color: #302d86;
  text-decoration: none;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  padding: 0;
}

.custom-container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.button {
  display: inline-block;
  padding: 5px 24px;
  text-align: center;
  border: 2px solid #0097ce;
  border-radius: 50px;
  background-color: transparent;
  color: #0097ce;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  min-width: 150px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.button:hover {
  text-decoration: none;
  background-color: #0097ce;
  color: #ffffff;
}
.button.set_disabled {
  pointer-events: none;
}
.button.set_size_sm {
  font-size: 0.875rem;
  padding: 2px 22px;
  min-width: auto;
}
.button.set_size_lg {
  min-width: 250px;
}

.button-default {
  display: inline-block;
  padding: 5px 24px;
  text-align: center;
  border: 2px solid #302d86;
  border-radius: 50px;
  background-color: transparent;
  color: #302d86;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  min-width: 150px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.button-default:hover {
  text-decoration: none;
  background-color: #302d86;
  color: #ffffff;
}
.button-default.set_disabled {
  pointer-events: none;
}
.button-default.set_size_sm {
  font-size: 0.875rem;
  padding: 2px 22px;
  min-width: auto;
}
.button-default.set_size_lg {
  min-width: 250px;
}

.button-primary {
  display: inline-block;
  padding: 5px 24px;
  text-align: center;
  border: 2px solid #0097ce;
  border-radius: 50px;
  background-color: transparent;
  color: #0097ce;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  min-width: 150px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  background-color: #0097ce;
  color: #ffffff;
}
.button-primary:hover {
  text-decoration: none;
  background-color: #0097ce;
  color: #ffffff;
}
.button-primary.set_disabled {
  pointer-events: none;
}
.button-primary.set_size_sm {
  font-size: 0.875rem;
  padding: 2px 22px;
  min-width: auto;
}
.button-primary.set_size_lg {
  min-width: 250px;
}
.button-primary:hover {
  background-color: #302d86;
  border-color: #302d86;
}

.button__back {
  margin-top: 20px;
}

.button-disabled {
  display: inline-block;
  padding: 5px 24px;
  text-align: center;
  border: 2px solid #f5f5f5;
  border-radius: 50px;
  background-color: transparent;
  color: #f5f5f5;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  min-width: 150px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  background-color: #f5f5f5;
  border-color: #d2d3d5;
  color: #757575;
  pointer-events: none;
}
.button-disabled:hover {
  text-decoration: none;
  background-color: #f5f5f5;
  color: #ffffff;
}
.button-disabled.set_disabled {
  pointer-events: none;
}
.button-disabled.set_size_sm {
  font-size: 0.875rem;
  padding: 2px 22px;
  min-width: auto;
}
.button-disabled.set_size_lg {
  min-width: 250px;
}

.input-group {
  margin-bottom: 30px;
  position: relative;
}

.input {
  width: 100%;
  background: none;
  padding: 5px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #757575;
  border: none;
  border-bottom: 1px solid #adadad;
}

.textarea {
  width: 100%;
  background: none;
  padding: 5px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #757575;
  border: 1px solid #adadad;
  min-height: 90px;
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1px solid #adadad;
}
.checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkbox:hover .checkbox__input ~ .checkbox__checkmark {
  background-color: #ccc;
}
.checkbox__input:checked ~ .checkbox__checkmark {
  background-color: #0097ce;
}
.checkbox__input:checked ~ .checkbox__checkmark:after {
  display: block;
}

.input-group {
  margin-bottom: 30px;
  position: relative;
}

.header__wrapper {
  border-bottom: 2px solid #0097ce;
}
.header__topbar {
  display: none;
}
.header__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__social img,
.header__social svg {
  max-width: 20px;
  height: 20px;
}
.header__social img path,
.header__social svg path {
  fill: #302d86;
}

@media (min-width: 992px) {
  .header {
    margin-top: 45px;
  }
  .header__topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }
}
.navbar-custom {
  z-index: 100;
}
.navbar-custom .navbar-brand .logo {
  display: block;
  width: 140px;
  height: auto;
}
.navbar-custom .navbar-toggler {
  border-color: #302d86;
  color: #302d86;
  margin-right: 20px;
  border-radius: 0;
  padding: 9px 5px 9px 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.navbar-custom .navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-custom .navbar-toggler .icon-bar {
  display: block;
  height: 2px;
  border-radius: 1px;
  background-color: #302d86;
  width: 22px;
  transition: all 0.2s;
}
.navbar-custom .navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-custom .navbar-toggler .middle-bar {
  opacity: 0;
}
.navbar-custom .navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-custom .navbar-toggler.collapsed {
  padding: 9px 10px;
}
.navbar-custom .navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-custom .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}
.navbar-custom .navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}
.navbar-custom .navbar-nav {
  position: relative;
  margin-bottom: -18px;
}
.navbar-custom .nav-item {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
  padding-bottom: 10px;
}
.navbar-custom .nav-item.dropdown {
  position: relative;
}
.navbar-custom .nav-link {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #302d86;
  padding-right: 0.2rem !important;
  padding-left: 0.2rem !important;
}
.navbar-custom .dropdown-menu {
  border: 2px solid #0097ce;
  border-radius: 0;
  margin-top: 8px;
}
.navbar-custom .dropdown-menu > .container-flex {
  padding: 5px 6px;
}
.navbar-custom .dropdown-menu .nav-lvl-2 {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item {
  padding: 0.8rem 1.5rem;
  color: #302d86;
  font-size: 1.0625rem;
  font-weight: 400;
  white-space: normal;
}
.navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item:hover, .navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item:focus, .navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item:active {
  color: #302d86;
  font-weight: normal;
  background-color: transparent;
}
.navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item.active > span, .navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item:hover > span, .navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item:focus > span, .navbar-custom .dropdown-menu .nav-lvl-2 .dropdown-item:active > span {
  display: inline-block;
  position: relative;
}
.navbar-custom .navbar-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: 15px;
}
.navbar-custom .navbar-social img,
.navbar-custom .navbar-social svg {
  max-width: 20px;
  height: 20px;
}
.navbar-custom .navbar-social img path,
.navbar-custom .navbar-social svg path {
  fill: #302d86;
}
.navbar-custom .navbar-websites {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 10px;
}
.navbar-custom .navbar-websites img,
.navbar-custom .navbar-websites svg {
  max-height: 45px;
  width: auto;
}

@media (min-width: 992px) {
  .navbar-custom .navbar-brand .logo {
    margin-top: -42px;
  }
  .navbar-custom .navbar-social {
    display: none;
  }
  .navbar-custom .navbar-websites {
    margin: 0 0 0 10px;
  }
  .navbar-custom .navbar-websites img,
  .navbar-custom .navbar-websites svg {
    max-height: 40px;
    width: auto;
  }
}
.fixed-nav .header__wrapper {
  padding-top: 100px;
}
.fixed-nav .navbar-custom {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background-color: #ffffff;
  border-bottom: 2px solid #0097ce;
  padding: 4px 0;
}
.fixed-nav .navbar-custom .logo {
  width: 100px;
  margin-top: 0;
}
.fixed-nav .navbar-custom .dropdown-menu {
  margin-top: 12px;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 9px;
  margin-left: 0;
  left: 0;
}

.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
  margin-left: 0;
}

.dropdown .nav-item,
.droped .nav-item {
  padding-bottom: 0;
}

.dropdown .dropdown-menu.show {
  margin-top: -1px;
}

@media screen and (min-width: 992px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: -2px;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0;
  }
}
.section {
  position: relative;
}
.section.set_bg_grey {
  background-color: #f5f5f5;
}
.section__header_title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 15px;
  margin: 30px 0;
}
.section__header_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #302d86;
  width: 61px;
  height: 7px;
  border: 0;
  border-radius: 10px;
  transform: translateX(-50%);
}

.slider_header__swiper {
  margin: 35px 0 0 0;
}
.slider_header__row {
  align-items: center;
}
.slider_header__col1 {
  order: 2;
}
.slider_header__info {
  position: relative;
}
.slider_header__info_title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-align: center;
}
.slider_header__info_subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.75rem;
  text-align: center;
}
.slider_header__progress_bar {
  margin-top: 45px;
  position: relative;
  width: 176px;
  height: 7px;
  background-color: #d9d9d9;
  border: 0;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}
.slider_header__progress_bar .my_progress {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  background-color: #0097ce;
  border: 0;
  border-radius: 10px;
}
.slider_header__image_wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  max-height: 486px;
}
.slider_header__image {
  width: 80%;
}

@media (min-width: 768px) {
  .slider_header__col1 {
    order: 1;
  }
  .slider_header__col2 {
    order: 2;
  }
  .slider_header__info_title {
    font-size: 3rem;
    line-height: 3.625rem;
    text-align: left;
  }
  .slider_header__info_subtitle {
    font-size: 2.1875rem;
    line-height: 3rem;
    text-align: left;
  }
  .slider_header__progress_bar {
    margin-left: 0;
    margin-right: 0;
  }
  .slider_header__image {
    width: 100%;
  }
}
.about {
  background-color: #f5f5f5;
  padding: 30px 0;
}
.about__content {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.9375rem;
  padding: 40px 0 0 0;
}
.about__content_logo {
  display: flex;
  align-items: center;
  margin: 35px 0;
}
.about__content_logo img {
  width: auto;
  max-height: 70px;
}
.about__content_pifs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 22px;
  max-width: 445px;
  margin-inline: auto;
}
.about__content_pifs > div {
  flex: 1;
  text-align: right;
}
.about__content_pifs img {
  width: 100px;
  height: auto;
}
.about__image_wrapper {
  margin: 35px 0 0 0;
  text-align: center;
}

@media (min-width: 768px) {
  .about .section__header_title {
    margin-left: 460px;
  }
  .about__image_wrapper {
    margin: -165px 0 -30px 0;
  }
}
@media (min-width: 992px) {
  .about .section__header_title {
    margin-left: 550px;
  }
}
.calendar {
  margin: 100px 0;
}
.calendar__guarantee_icon {
  color: #8a1b3c;
  font-weight: 600;
  font-size: 14px;
}
.calendar__guarantee_icon::after {
  content: "gwarancja terminu";
  display: block;
  line-height: 1em;
  margin-top: 2px;
}
.calendar__guarantee_legend {
  color: #8a1b3c;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: -10px;
}
.calendar .calendar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 60px auto 30px auto;
  text-align: center;
  justify-content: center;
  font-weight: 600;
}
.calendar .calendar-nav .calendar-nav__item {
  position: relative;
  color: #999999;
  margin-left: -70px;
  transform: translateX(35px);
  display: flex;
  align-items: center;
}
.calendar .calendar-nav .calendar-nav__item::before, .calendar .calendar-nav .calendar-nav__item::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #999999;
}
.calendar .calendar-nav .calendar-nav__item--active {
  color: #0097ce;
  z-index: 10;
}
.calendar .calendar-nav .calendar-nav__item--active::before, .calendar .calendar-nav .calendar-nav__item--active::after {
  background-color: #0097ce;
}
.calendar .calendar-nav__link {
  color: inherit;
  margin: 0 5px;
}
.calendar__items {
  margin-top: 70px;
}
.calendar__table-wrapper {
  margin: 50px 0;
  overflow-x: auto;
}
.calendar__table {
  table-layout: fixed;
  width: 100%;
  min-width: 1100px;
}
.calendar__table .col--min {
  width: 11%;
}
.calendar__table .col--med {
  width: 25%;
}
.calendar__table .col--big {
  width: 31%;
}
.calendar__th-cell {
  background-color: #d9d9d9;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  padding: 13px 10px;
  font-size: 0.875rem;
}
.calendar__more-wrapper {
  display: flex;
}
.calendar__more-button {
  margin: auto;
}
.calendar .calendar-legend {
  font-size: 0.875rem;
  margin: -15px 10px 20px 10px;
}
.calendar .calendar-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendar .calendar-legend__item img {
  max-height: 22px;
}
.calendar .event {
  border-bottom: 1px solid #999999;
}
.calendar .event:last-of-type {
  border-bottom: none;
}
.calendar .event__cell {
  text-align: center;
  vertical-align: middle;
  color: #646464;
  padding: 15px;
  font-weight: 600;
  font-size: 0.9375rem;
}
.calendar .event__cell--place {
  font-weight: 700;
}
.calendar .event__cell--subject {
  color: #302d86;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}
.calendar .event__cell--price {
  color: #999999;
  font-weight: 600;
}
.calendar .event__cell--promo {
  color: #0097ce;
  font-weight: 600;
}
.calendar .event__buttons {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}
.calendar .event__guarantee {
  background-color: #302d86;
  color: #ffffff;
  padding: 7px;
  margin: 4px 0 0 0;
  text-align: center;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 0.875rem;
}

.news {
  margin: 30px 0 80px 0;
}
.news__container1 {
  background-color: #f5f5f5;
  padding: 45px 0;
}
.news__container1 .custom-container {
  display: flex;
  justify-content: space-between;
}
.news__container1 .news__item_row {
  flex-direction: column;
  gap: 20px;
}
.news__container2 {
  padding: 35px 0;
}
.news__container2 .custom-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.news__container2 .news__item_row {
  flex-direction: column;
}
.news__container2 .news__item_col1 {
  flex: 0 0 auto;
}
.news__item {
  position: relative;
  flex: 1;
}
.news__item_row {
  display: flex;
  gap: 20px;
}
.news__item_col1, .news__item_col2 {
  flex: 1;
}
.news__item_image_wrapper {
  display: block;
}
.news__item_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.news__item_date {
  color: #a7a4d1;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.news__item_title {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  color: #302d86;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.news__more {
  text-align: center;
  margin: 32px 0;
}

@media (min-width: 576px) {
  .news__container2 .custom-container {
    flex-direction: row;
  }
  .news__item {
    position: relative;
    flex: 1;
  }
  .news__item.index_0 .news__item_image {
    aspect-ratio: 4/3;
  }
  .news__item.index_0 .news__item_date {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }
  .news__item.index_0 .news__item_title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .news__container1 .news__item_row {
    flex-direction: row;
    gap: 65px;
  }
  .news__container1 .news__item_col2 {
    align-self: center;
  }
  .news__item.index_0 .news__item_image {
    max-width: 550px;
  }
}
@media (min-width: 992px) {
  .news__container2 .custom-container {
    gap: 20px;
  }
  .news__container2 .news__item_row {
    flex-direction: row;
  }
  .news__container2 .news__item_col1 {
    flex: 0 0 auto;
    width: 44%;
  }
}
.newsletter {
  padding: 50px 0 0 0;
}
.newsletter__wrapper {
  background-color: #f5f5f5;
  color: #757575;
  padding: 50px 0 40px 0;
}
.newsletter__message {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0 20px 40px 20px;
}
.newsletter__form {
  max-width: 430px;
  margin: 0 auto;
}
.newsletter__input {
  width: 100%;
}
.newsletter__submit {
  width: 100%;
  margin-bottom: 30px;
}
.newsletter__label {
  display: flex;
  align-items: start;
  margin: 0 10px;
}
.newsletter__checkbox {
  margin: 3px 0 0 0;
}
.newsletter__checkbox-text {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.125rem;
}

@media (min-width: 768px) {
  .newsletter__wrapper {
    padding: 75px 0 85px 0;
  }
  .newsletter__message {
    font-size: 1.5rem;
    line-height: 1.875rem;
    padding: 10px 20px;
  }
}
.partners {
  margin: 90px 0;
}
.partners__swiper {
  margin: 100px 0;
}
.partners__swiper .swiper-wrapper {
  align-items: center;
}
.partners__swiper_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 100%;
  filter: grayscale(100%);
}
.partners__swiper_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  margin: 50px 0 0 0;
}
.contact__wrapper {
  background-color: #f5f5f5;
  color: #757575;
  padding: 65px 0 75px 0;
}
.contact__message {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0 20px 40px 20px;
}
.contact__title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact__form {
  max-width: 430px;
  margin: 0 auto;
}
.contact__submit {
  width: 100%;
}

.footer {
  background-color: #d2d3d5;
}
.footer a {
  color: #0097ce;
}
.footer__wrapper {
  color: #757575;
  padding: 45px 20px 25px 20px;
}
.footer__row {
  justify-content: center;
  gap: 20px;
}
.footer__logo {
  max-width: 200px;
}
.footer__logo path {
  fill: #444444;
}
.footer__pifs {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  max-width: 420px;
}

@media (min-width: 576px) {
  .footer__wrapper {
    padding: 45px 45px 25px 45px;
  }
}
.services {
  padding: 50px 0 50px 0;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.services__item {
  text-align: center;
}
.services__item_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.2s ease-in-out;
}
.services__item_image:hover {
  scale: 1.1;
}
.services__item_image_wrapper {
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  overflow: hidden;
}
.services__item_title {
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services__item_image_wrapper {
    aspect-ratio: 4/3;
  }
}
.work {
  padding: 0;
}
.work__wrapper {
  background-color: #f5f5f5;
  padding: 50px 0 100px 0;
}
.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.work__frame_image {
  display: none;
  position: relative;
  padding: 0;
}
.work__frame_text {
  position: relative;
  padding: 40px;
}
.work__item {
  background-color: white;
}
.work__item_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work__item_image_wrapper {
  position: absolute;
  inset: 0;
}
.work__item_title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.work__item_content {
  font-size: 1rem;
}

@media (min-width: 992px) {
  .work__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .work__frame_image {
    display: block;
  }
  .work__item {
    min-height: 320px;
  }
}
.training_catalogue {
  padding: 50px 0 50px 0;
}
.training_catalogue__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.training_catalogue__item {
  text-align: center;
}
.training_catalogue__item_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.2s ease-in-out;
}
.training_catalogue__item_image:hover {
  scale: 1.1;
}
.training_catalogue__item_image_wrapper {
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  overflow: hidden;
}
.training_catalogue__item_title {
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .training_catalogue {
    padding: 50px 0 100px 0;
  }
  .training_catalogue__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .training_catalogue__item_image_wrapper {
    aspect-ratio: 4/3;
  }
}
.list_15__grid,
.list_16__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
.list_15__item,
.list_16__item {
  text-align: left;
}
.list_15__item_link,
.list_16__item_link {
  display: block;
}
.list_15__item_image,
.list_16__item_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.2s ease-in-out;
}
.list_15__item_image:hover,
.list_16__item_image:hover {
  scale: 1.1;
}
.list_15__item_image_wrapper,
.list_16__item_image_wrapper {
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  overflow: hidden;
}
.list_15__item_date,
.list_16__item_date {
  color: #a7a4d1;
  font-weight: 500;
}
.list_15__item_title,
.list_16__item_title {
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .list_15__grid,
  .list_16__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.div_pagination {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pagination_menu {
  text-align: center;
}

.pagination_menu span,
.pagination_menu a {
  display: inline-block;
  padding: 3px;
  margin: 3px;
}

.pagination_menu span.active,
.pagination_menu a.active {
  text-decoration: underline !important;
}

.training-details {
  margin: 50px 0;
}
.training-details__h1 {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 15px;
  margin: 30px 0;
  text-align: center;
}
.training-details__h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #302d86;
  width: 61px;
  height: 7px;
  border: 0;
  border-radius: 10px;
  transform: translateX(-50%);
}
.training-details__header {
  margin: 60px 0;
}
.training-details__header_row {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.training-details__header_col1, .training-details__header_col2 {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.training-details__header_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 550/366;
}
.training-details__header_cycle {
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.training-details__header_title {
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.training-details__header_icons {
  margin: 30px -15px;
  overflow: hidden;
}
.training-details__header_icons_item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 15px;
  min-width: 100px;
}
.training-details__header_icons_value {
  font-size: 0.875rem;
  font-weight: 500;
}
.training-details__header_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}
.training-details__body_title {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 20px;
}
.training-details__body_content {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin: 20px 0 32px 0;
}
.training-details__body_person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.training-details__body_person_image {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.training-details__body_person_image_wrapper {
  text-align: center;
}
.training-details__body_person_info {
  flex: 1;
}
.training-details__body_person_info_name {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 10px;
  margin-bottom: 25px;
  text-align: center;
}
.training-details__footer {
  margin: 50px 0;
}
.training-details__footer_row {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.training-details__footer_col1, .training-details__footer_col2 {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.training-details__footer_title {
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 20px;
}
.training-details__footer_content {
  padding: 20px;
  font-size: 1rem;
}
.training-details__footer_content.set_bg_grey {
  background-color: #f5f5f5;
}
.training-details__footer_content.set_text_justify {
  text-align: justify;
  text-justify: inter-word;
}
.training-details__footer_content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.training-details__footer_content ul > li {
  margin-bottom: 20px;
}
.training-details__footer_content ul > li::before {
  content: "•";
  display: inline-block;
  margin: 0 5px 0 10px;
}
.training-details__footer_list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 300px;
}
.training-details__footer_list_item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.training-details__footer_list_item_title {
  font-size: 1.125rem;
  font-weight: 700;
}
.training-details__footer_buttons {
  margin: 50px 0;
}
.training-details__footer_buttons_row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.training-details__footer_buttons_col1, .training-details__footer_buttons_col2 {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.training-details__footer_buttons_col2 {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .training-details__body_person {
    flex-direction: row;
  }
  .training-details__body_person_image_wrapper {
    flex: 0 0 230px;
  }
  .training-details__body_person_info_name {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
  }
  .training-details__footer_content {
    padding: 25px 40px;
  }
}
@media (min-width: 768px) {
  .training-details__header_row {
    flex-direction: row;
    gap: 50px;
  }
  .training-details__footer_row {
    flex-direction: row;
    gap: 50px;
  }
  .training-details__footer_list {
    height: 90%;
  }
  .training-details__footer_buttons_row {
    flex-wrap: nowrap;
  }
  .training-details__footer_buttons_col2 {
    flex-wrap: nowrap;
  }
}
.info1 {
  padding: 50px 0 0 0;
}
.info1__wrapper {
  background-color: #f5f5f5;
  padding: 50px 0 40px 0;
}
.info1__content {
  font-size: 1.125rem;
  line-height: 1.5rem;
  padding: 0 20px 40px 20px;
}

.info2 {
  padding: 50px 0 0 0;
}
.info2__wrapper {
  background-color: #f5f5f5;
  padding: 50px 0 40px 0;
}
.info2__content {
  font-size: 1.125rem;
  line-height: 1.5rem;
  padding: 0 20px 40px 20px;
}

.newsletter-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 151, 206, 0.4);
}
.newsletter-modal__body {
  position: absolute;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.newsletter-modal__content {
  background-color: #ffffff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
}
.newsletter-modal__close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.newsletter-modal__close:hover, .newsletter-modal__close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.newsletter-popup-block {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

body .mfp-bg {
  background-color: #0097ce;
  opacity: 0.4;
}

.page_default {
  margin: 50px 0;
}
.page_default__h1 {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 15px;
  margin: 30px 0;
  text-align: center;
}
.page_default__h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #302d86;
  width: 61px;
  height: 7px;
  border: 0;
  border-radius: 10px;
  transform: translateX(-50%);
}
.page_default__content {
  margin: 10px 0 30px 0;
  font-size: 1.125rem;
}
.page_default section.calendar {
  margin: 50px 0;
}

.page__image_top {
  margin-bottom: 30px;
}
.page__image_top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  .page__image_top {
    height: 400px;
  }
  .page__image_top img {
    aspect-ratio: unset;
  }
}