.container {
  max-width: 1364px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}
.container--wide {
  max-width: 1688px;
}
.container--full {
  max-width: 2012px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 46px;
    padding-right: 46px;
  }
}

.skip-to-content-link {
  background: #db350f;
  /* height: 30px; */
  left: 50%;
  color: #fff;
  font-size: 18px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 8px;
  position: absolute;
  transform: translate(-50%, -100%);
  transition: transform 0.3s;
  z-index: 100;
}

.skip-to-content-link:focus {
  transform: translate(-50%, 0%);
}

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.header--hidden {
  transform: translateY(-100%);
}
.header__placeholder {
  height: 98px;
}
.header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo:hover {
  opacity: 1;
}
.header__logo img {
  width: 130px;
}
.header__main {
  display: none;
}
.header__nav > ul {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #056083;
  font-weight: 700;
  font-size: 22px;
}
.header__nav > ul > li {
  position: relative;
}
.header__nav button {
  color: inherit;
  font: inherit;
}
.header__nav button:hover {
  opacity: 0.8;
}
.header__nav__sub {
  display: none;
  position: absolute;
  bottom: 0;
  left: -44px;
  transform: translateY(100%);
  padding-top: 40px;
}
.header__nav__sub ul {
  background-color: #ededed;
  border-top: 6px solid #029100;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.15);
  color: #464646;
  font-weight: 400;
  white-space: nowrap;
}
.header__nav__sub a {
  display: block;
  padding: 13px 44px;
}
.header__nav__sub a:hover {
  background-color: #fffdf4;
  color: #ff2e00;
  font-weight: 500;
}
.header__nav .active {
  color: #029100;
}
.header__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.header__buttons img {
  width: 20px;
}
.header__lang, .header__share, .header__search {
  position: relative;
  display: flex;
}
.header__lang__btn, .header__share__btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__lang__btn::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  background-image: url("../images/arrow_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__lang__list, .header__share__list {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  padding-top: 2px;
}
.header__search__list {
  display: none;
  position: absolute;
  bottom: 0;
  left: -700%;
  transform: translate(-50%, 100%);
  padding-top: 2px;
}

.search-container {
    display: flex;
    gap: 10px;
}

.search-container > input {
    border: 1px solid #c5c5c5;
    border-radius: 10px;
    padding: 5px 20px;
}
.search-container > input:focus-visible {
    outline: none;
    box-shadow: none
}


.search-container > button {
    background-color: #33b400;
    border-radius: 9999px !important;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
    padding: 6px 20px;
    font-size: 20px;
}
.search-container > a {
    min-width: 50px;
}


.header__lang__list ul, .header__share__list ul, .header__search__list ul {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  padding: 0.4em 1em;
  color: #056083;
  font-weight: 500;
}
.header__lang__list .active, .header__search__list .active {
  color: #029100;
}
.header__search__btn:hover,
.header__lang__btn:hover,
.header__menu:hover,
.header__share__btn:hover {
  opacity: 0.8;
}

.d-flex {
    display: flex;
    &.flex-center {
        justify-content: center;
    }
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.search-result-item {
    a {
        font-weight: 600;
    }
    p {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
  .header {
    height: 158px;
  }
  .header__placeholder {
    height: 158px;
  }
  .header__logo img {
    width: 173px;
  }
  .header__buttons {
    gap: 40px;
  }
  .header__buttons img {
    width: 27px;
  }
  .header__lang__btn, .header__share__btn {
    gap: 14px;
  }
  .header__lang__btn::after {
    width: 12px;
    height: 6px;
  }
  .header__lang__list ul, .header__share__list ul, .header__search__list ul {
    padding: 0.6em 1.25em;
  }
}
@media (max-width: 1024px) {
    .header__search__list {   
        left: -500%;
    }
}

@media (min-width: 1024px) {

  .header {
    height: 140px;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.15);
  }
  .header__placeholder {
    height: 140px;
  }
  .header .container {
    gap: 50px;
  }
  .header__logo img {
    width: 150px;
  }
  .header__main {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
  }
  .header__main .btn {
    padding: 6px 40px;
    font-size: 22px;
  }
  .header__buttons {
    gap: 32px;
  }
  .header__buttons img {
    width: 24px;
  }
  .header__lang__btn, .header__share__btn {
    gap: 12px;
  }
  .header__menu {
    display: none;
  }
}

@media (min-width: 1280px) {
  .header .container {
    gap: 80px;
  }
  .header__logo img {
    width: 162px;
  }
  .header__main {
    gap: 80px;
  }
  .header__main .btn {
    padding: 6px 58px;
    font-size: 26px;
  }
  .header__nav > ul {
    gap: 80px;
    font-size: 24px;
  }
}

@media (min-width: 1440px) {
  .header__nav > ul {
    gap: 100px;
    font-size: 28px;
  }
}

.footer {
  margin-top: -30px;
  overflow: hidden;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 2012px;
  margin: 0 auto;
}
.footer__top {
  background-color: #ccecf3;
  border-top-left-radius: 23px;
  padding: 80px 28px;
}
.footer__top p {
  margin-top: 0.5em;
}
.footer__enquiry {
  display: flex;
}
.footer__phone {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.footer__phone > *:not(:last-child)::after {
  content: "|";
  margin: 0 0.4em;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background-color: #fff2bc;
  color: #000;
  padding: 80px 28px 40px;
  text-align: center;
  font-size: 16px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 60px;
}
.footer__links img {
  width: auto;
  height: 57px;
}
.footer__policies ul {
  margin-bottom: 0;
}
.footer__policies li {
  display: inline-block;
}
.footer__policies li:not(:last-child):after {
  content: "|";
  margin: 0 0.2em 0 0.4em;
}

.footer__policies .accessibility {
  margin: auto;
  display: block;
  width: fit-content;
}

@media (max-width: 400px) {
  .footer__top {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .footer {
    margin-top: -40px;
  }
  .footer__wrapper {
    flex-direction: row;
  }
  .footer__top {
    border-top-left-radius: 40px;
    padding: 40px 10px 30px 46px;
    width: 47%;
  }
  .footer__phone {
    flex-direction: column;
  }
  .footer__phone > *:not(:last-child)::after {
    display: none;
  }
  .footer__bottom {
    flex: 1;
    padding: 40px 46px 30px;
  }
  .footer__links {
    flex-wrap: nowrap;
    gap: 16px 30px;
    margin: 50px -42px 0;
  }
  .footer__links img {
    height: 46px;
  }
}

@media (min-width: 992px) {
  .footer__links {
    gap: 16px 40px;
  }
  .footer__links img {
    height: 52px;
  }
}

@media (min-width: 1024px) {
  .footer {
    background-color: #fff2bc;
    margin-top: 0;
  }
  .footer__wrapper {
    padding: 0 46px;
  }
  .footer__top {
    position: relative;
    z-index: 1;
    width: 46%;
    padding: 40px 0 30px 46px;
  }
  .footer__top::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50px;
    width: 9999px;
    height: 100%;
    background-color: #ccecf3;
    pointer-events: none;
  }
  .footer__top p {
    margin-top: 0;
  }
  .footer__bottom {
    align-items: flex-start;
    padding: 40px 46px 30px 0;
    font-size: 18px;
  }
  .footer__links {
    width: 100%;
    max-width: 700px;
    justify-content: space-between;
    gap: 16px;
    margin: 40px 0 0;
  }
  .footer__links img {
    height: 70px;
  }
  .footer__policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 865px;
    gap: 0 30px;
  }

  .footer__policies .accessibility {
    margin: unset;
  }
}

@media (min-width: 1280px) {
  .footer__top {
    width: 50%;
    font-size: 24px;
    line-height: 2;
  }
  .footer__phone {
    flex-direction: row;
  }
  .footer__phone > *:not(:last-child)::after {
    display: inline-block;
  }
  .footer__bottom {
    font-size: 20px;
  }
  .footer__links img {
    height: 80px;
  }
}

.breadcrumb {
  position: relative;
  color: #464646;
  font-size: 16px;
}
.breadcrumb ol {
  position: absolute;
  padding: 10px 0;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li:not(:last-child):after {
  content: ">";
  margin: 0 0.4em 0 0.6em;
}

@media (min-width: 1024px) {
  .breadcrumb ol {
    right: 0;
  }
}

.section {
  padding: 80px 0;
}
.section:last-child {
  padding-bottom: 110px;
}
.section--bg {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-y: 30px;
}
.section--programme {
  position: relative;
  overflow: hidden;
}
/* .section--programme::before,
.section--programme::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
} */

.section--programme--bg1,
.section--programme--bg2 {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
/* .section--programme::before,  */.section--programme--bg1 {
  top: 30px;
  left: -10px;
  width: 180px;
  aspect-ratio: 500 / 640;
  /* background-image: url("../images/programme_bg_1.png"); */
}
/* .section--programme::after, */ .section--programme--bg2 {
  top: -8px;
  right: -8px;
  width: 180px;
  aspect-ratio: 400 / 430;
  /* background-image: url("../images/programme_bg_2.png"); */
}
.section--programme h2 {
  margin-bottom: 12px;
}

@media (max-width: 500px) {
  /* .section--programme::before, */ .section--programme--bg1 {
    width: 35%;
  }
  /* .section--programme::after,  */.section--programme--bg2 {
    width: 35%;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
  .section:last-child {
    padding-bottom: 140px;
  }
  /* .section--programme::before,  */.section--programme--bg1 {
    width: 262px;
  }
  /* .section--programme::after,  */.section--programme--bg2 {
    top: 20px;
    right: 50px;
    width: 262px;
  }
  .section--programme h2 {
    margin-bottom: 28px;
  }
}

@media (min-width: 1024px) {
  .section:last-child {
    padding-bottom: 160px;
  }
  /* .section--programme::before,  */.section--programme--bg1 {
    top: 0;
    width: 360px;
  }
  /* .section--programme::after, */ .section--programme--bg2 {
    top: 90px;
    right: 0;
    width: 360px;
  }
  .section--programme h2 {
    margin-bottom: 50px;
  }
}

@media (min-width: 1440px) {
  /* .section--programme::before, */ .section--programme--bg1 {
    width: 500px;
  }
  /* .section--programme::after, */ .section--programme--bg2 {
    width: 500px;
  }
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    gap: 40px;
  }
  .split > * {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .split {
    gap: 80px;
  }
}

@media (min-width: 1280px) {
  .split {
    gap: 120px;
  }
}

.dialog {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.dialog::backdrop {
  background-color: #282829;
  opacity: 0;
  transition: opacity 0.3s;
}
.dialog--open::backdrop {
  opacity: 0.9;
}
.dialog--menu::backdrop {
  opacity: 0;
}
.dialog__wrapper {
  color: #fff;
  border-radius: 20px;
  margin: 20px 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.dialog--open .dialog__wrapper {
  opacity: 1;
}
.dialog__wrapper--white {
  color: #464646;
  background-color: #fff;
  box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
.dialog__inner {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 22px 32px 50px;
}
.dialog__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.dialog__top--end {
  justify-content: flex-end;
}
.dialog__heading {
  flex: 1;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
}
.dialog__title {
  display: inline;
}
.dialog__time {
  white-space: nowrap;
}
.dialog__close {
  width: 30px;
  height: 30px;
  background-image: url("../images/close_dialog.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dialog__wrapper--white .dialog__close {
  background-image: url("../images/close_dialog_dark.svg");
}
.dialog__close:hover {
  opacity: 0.8;
}
.dialog__iframe {
  width: 100%;
  max-height: calc(100vh - 150px);
  aspect-ratio: 16 / 9;
  border: none;
}
.dialog__album {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
.dialog__album img {
  aspect-ratio: 164 / 122;
  object-fit: cover;
}
.dialog__swiper .swiper-wrapper {
  max-height: calc(100vh - 200px);
}
.dialog__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialog__swiper img {
  object-fit: contain;
}
.dialog__img {
  max-height: calc(100vh - 140px);
  object-fit: contain;
}
.dialog .swiper-pagination-fraction {
  color: #fff;
}
.dialog__back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin: 3px 0;
  background-image: url("../images/grid.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dialog__back:hover {
  opacity: 0.8;
}

.dialog--show {
  display: none;
}

.dialog--open .dialog--show {
  display: initial;
}

.dialog--open .dialog--hidden {
  display: none;
}

.dialog--default {
  width: fit-content;
  margin: auto;
  max-width: 95%;
}

@media (max-width: 440px) {
  .dialog__swiper .swiper-navigation {
    max-width: 200px;
  }
}

@media (min-width: 768px) {
  .dialog__wrapper {
    border-radius: 40px;
  }
  .dialog__wrapper--white {
    box-shadow: 2px 2px 24px 0 rgba(0, 0, 0, 0.1);
  }
  .dialog__inner {
    padding: 30px 60px 80px;
  }
  .dialog__top {
    margin-bottom: 40px;
  }
  .dialog__heading {
    font-size: 38px;
  }
  .dialog__close {
    width: 36px;
    height: 36px;
    margin-top: 12px;
  }
  .dialog__album {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
  }
  .dialog__swiper img {
    max-height: calc(100vh - 250px);
  }
}

@media (min-width: 1024px) {
  .dialog__wrapper--white {
    margin: 40px 0;
  }
  .dialog__inner {
    max-height: calc(100vh - 80px);
    padding: 20px 40px 80px;
  }
  .dialog__top {
    margin-bottom: 50px;
  }
  .dialog__heading {
    font-size: 42px;
  }
  .dialog__close {
    margin-top: 16px;
  }
  .dialog__album {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .dialog__content {
    padding: 0 20px;
  }
  .dialog__iframe {
    max-height: calc(100vh - 200px);
  }
  .dialog--default {
    max-width: 80%;
  }
}

@media (min-width: 1280px) {
  .dialog__wrapper--white {
    margin: 60px 0;
  }
  .dialog__inner {
    max-height: calc(100vh - 120px);
  }
  .dialog__album {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
  }
  .dialog__content {
    padding: 0 40px;
  }
  .dialog--default {
    max-width: 1000px;
  }
}

@media (min-width: 1440px) {
  .dialog__content {
    padding: 0 100px;
  }

  .dialog--default .dialog__content {
    padding: 0 40px;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  width: 234px;
  max-height: 100%;
  margin-left: auto;
  padding-bottom: 70px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.dialog--open .menu {
  transform: translateX(0);
}
.menu .header__buttons {
  height: 98px;
}
.menu__nav {
  color: #056083;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  margin: 8px 0 26px;
}
.menu__nav button {
  color: inherit;
  font: inherit;
}
.menu__nav .active {
  color: #029100;
}
.menu__nav button:hover {
  opacity: 0.8;
}
.menu__nav > ul > li:not(:last-child) {
  margin-bottom: 8px;
}
.menu__sub {
  display: none;
  background-color: #ededed;
  border-top: 4px solid #029100;
  color: #464646;
  font-weight: 400;
  margin: 10px -28px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s;
}
.menu__sub a {
  display: block;
  padding: 10px 28px;
}
.menu__sub a:hover {
  background-color: #fffdf4;
  color: #ff2e00;
  font-weight: 500;
}

@media (min-width: 768px) {
  .menu {
    width: 296px;
    padding-bottom: 76px;
  }
  .menu .header__buttons {
    height: 158px;
  }
  .menu__nav {
    font-weight: 700;
    margin: -8px 0 32px;
  }
  .menu__nav > ul > li:not(:last-child) {
    margin-bottom: 22px;
  }
  .menu__sub {
    margin: 10px -46px;
  }
  .menu__sub a {
    padding: 10px 46px;
  }
}

.btn__fixed__container {
  position:fixed;
  bottom: 0;
  right: 20px;
  z-index: 99;
}

.btn__fixed {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 10px 15px;
  min-width: 250px;
  background-color: #d23a14;
  transition: background-color 0.3s;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.btn__fixed:hover {
  background-color: #ff2e00;
}

.dialog__fixed {
  display: none;
  position: fixed;
  bottom: 0;
  right: 20px;
  z-index: 100;
}

.dialog__fixed.active {
  display: block;
}

.dialog__fixed__content {
  padding: 15px 20px;
  background-color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  max-width: 450px;
  position: relative;

}

.dialog__fixed__content .close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url("../images/close_dialog_dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.dialog__fixed__content .close:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .btn__fixed__container, .dialog__fixed {
    right: 5px;
  }

  .dialog__fixed__content {
    max-width: 100%;
  }

  .dialog__fixed__content .close {
    right: -5px;
  }
}
