/*
@font-face {
    font-family: "Poppins";
    src: url(../fonts/poppins-regular.woff2) format("woff2");;
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
*/
/* poppins-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v22-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v22-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v22-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v22-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --header-size: 80px;
    --mobile-breakpoint: 420px;
    --tablet-breakpoint: 768px;
    --desktop-breakpoint: 990px;
    --primary-color: #181716;
    --secondary-color: #616060;
    --ukl-grey: #868786;
    --accent-color: #AE031D;
    --color-bright: #FFFFFF;
    --header-color: rgba(255, 255, 255, 0.9);
    --swiper-navigation-color: var(--accent-color);
    --swiper-pagination-color: var(--accent-color);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    min-height: 100vh;
}
section {
    position: relative;
    font-size: clamp(1rem, 2vw, 1.125rem);
    padding-top: 5em;
    padding: 5em 1em;
}
section {
  margin-bottom: -30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: var(--accent-color);
}
.link {
    display: block;
    width: fit-content;
}
.link > div {
    width: fit-content;
    padding: 0.5em 1em;
    background-color: var(--accent-color);
    color: var(--color-bright);
    border-radius: 2em;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9375rem;
}
.link > div:hover {
    background-color: var(--color-bright);
    color: var(--accent-color)
}
figure {
	margin: 0;
}
img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
header .content-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-right: clamp(1em, 3vw, 2em);
    padding-left: clamp(1em, 3vw, 2em);
}
.container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}
header {
    position: fixed;
    height: var(--header-size);
    background-color: var(--header-color);
    width: 100%;
    z-index: 10;
    top: 0;
}
header .logo {
    height: 100%;
    margin-right: clamp(1em, 4vw, 3em);
    flex: 1;
    transition: all 0.3s ease;
}
header .logo:last-of-type {
    margin-right: 0;
}
header .logo figure {
    height: 100%;
}
@media (max-height: 500px) {
    header {
        height: 50px;
    }
}
.main-nav {
    flex: 3;
}
.main-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1em;
    align-items: center;
}
nav ul li {
    list-style: none;
}
header .burger {
    display: none;
    width: 1.875em;
    height: 1.25em;
    position: relative;
    z-index: 10;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}
header .burger::before {
    top: 0;
}
header .burger::after {
    bottom: 0;
}
.burger::after, .burger::before {
    content: "";
    position: absolute;
    height: 0.1em;
    width: 100%;
    background-color: var(--ukl-grey);
    transition: all 0.1s ease 0.1s;
}
header .burger span {
    display: block;
    height: 0.1em;
    width: 100%;
    background-color: var(--ukl-grey);
    transition: background-color 175ms, transform 175ms;
    transition-delay: 175ms;
}
.mob-nav-open header .burger span {
    background-color: transparent;
}
.mob-nav-open header .burger::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}
.mob-nav-open header .burger::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}
.burger-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 1000px) {
    header .burger {
        display: flex;
    }
    header .main-nav {
        opacity: 0;
        width: 0;
        visibility: hidden;
        flex: unset;
        transition: opacity 0.3s ease, width 0.3s ease;
    }
    header .logo {
        flex: unset;
    }
    .mob-nav-open header .logo {
        visibility: hidden;
        opacity: 0;
    }
    header .burger-wrapper {
        flex: 1;
    }
    header .content-wrapper {
        position: relative;
    }
    .mob-nav-open header .main-nav {
        opacity: 1;
        width: 100%;
        height: 100%;
        visibility: visible;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: white;
    }
    .mob-nav-open header .main-nav ul {
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 15%;
        /*margin-left: 10%;*/
	padding: 0;
	position: absolute;
	width: fit-content;
	height: fit-content;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
    }
    .mob-nav-open {
	overflow-y: hidden;
    }
}
@media (max-width: 650px) {
    header .logo {
        flex: 2.5;
    }
    header .burger-wrapper {
        flex: 2;
    }
}

article.default {
  font-size: clamp(1rem, 3vw, 1.125rem);
  margin-top: calc(10em + var(--header-size));
  margin-bottom: 5em;
  padding: 0 2em;
}

.left {
    flex-direction: row-reverse;
}



main section {
  margin-bottom: -30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 0 15px #00000040;
}

main section.col_style_white {
  background-color: #fff;
}
main section.col_style_red {
  background-color: #AE031D;
}
main section.col_style_pink {
  background-color: #f7e5e8;
  color: #AE031D;
}
main section.col_style_gray {
  background-color: #F0F0F0;
}
main section.col_style_blue {
  background-color: #CCE8F5;
}

section.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: block;
  padding: 0;
  margin-bottom: 0;
}
section.hero.full {
  height: 100vh;
}
section.hero.middle {
  height: 80vh;
}
section.hero.small {
  height: 50vh;
}

section.hero figure,
section.hero video {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  align-items: center;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}

.anchor {
  scroll-margin-top: var(--header-size);
}

.button-area {
  margin: 2em auto;
  max-width: 500px;
  width: fit-content;
}
.button-info-text {
  font-size: clamp(12px, 2vw, 16px);
  text-align: center;
  margin-bottom: 1em;
}

.link-button {
  width: fit-content;
  padding: 0.5em 1em;
  background-color: var(--accent-color);
  color: var(--color-bright);
  border-radius: 2em;
  transition: all 0.3s ease-in;
  cursor: pointer;
  font-size: clamp(14px, 2vw, 23px);
  display: block;
  margin: 2em auto;
  margin: 0 auto;
  font-weight: bold;
  border-color: var(--accent-color);
  border: 1px solid;
}
.link-button:hover {
  background-color: white;
  border-color: var(--accent-color);
  color: var(--accent-color);
}
header .link-button {
  margin: 0;
  height: 100%;
  font-size: 18px;
}

.textblock .link {
    margin-top: 2em;
}
.text-container {
    margin-bottom: 1em;
    font-size: clamp(1rem, 2vw, 1.5rem);
}
.text-container p:last-child {
    margin-bottom: 0;
}
/*
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 3.75rem;
}
*/
.text-container h1,
.text-container h2,
.text-container h3,
.text-container h4,
.text-container h5,
.text-container h6 {
    margin-bottom: 1em;
}
/*Style 1*/
.style1 h1,
.style1 h2,
.style1 h3,
.style1 h4,
.style1 h5,
.style1 h6 {
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.25em;
    color: var(--primary-color);
}
section.style1 {
    padding-top: 0;
}
.style1 .content-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}
.style1 figure {
    position: absolute;
    width: 40%;
}
.style1 .right figure {
    left: 0;
}
.style1 .bg-container {
    margin-top: var(--header-size);
    margin-left: 20%;
    padding: 5% 5% 5% 20%;
}
@media (max-width: 990px) {
    .style1 .bg-container {
        margin-left: unset;
        padding-left: 40%;
    }
}
@media (max-width: 768px) {
    .style1 .bg-container {
        margin-left: unset;
        padding-left: 5%;
        padding-top: 35%;
    }
    .style1 .right figure {
        left: unset;
    }
}
.style1 .text-container {
    width: 100%;
}
/*Style 2*/
.style2 h1,
.style2 h2,
.style2 h3,
.style2 h4,
.style2 h5
.style2 h6,
.style2 p {
    color: var(--secondary-color);
}
.style2 h1,
.style2 h2,
.style2 h3,
.style2 h4,
.style2 h5,
.style2 h6 {
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.5rem);
}
.style2 .content-wrapper {
    display: flex;
    margin-right: auto;
    padding-right: 5%;
}
.style2 .right {
    margin-right: unset;
    margin-left: 20%;
}
.style2 .left {
    margin-right: 20%;
}
.style2 .text-container {
    flex: 1;
}
.style2 figure {
    flex: 1;
    display: flex;
    height: 100%;
    justify-content: flex-start;
}
.style2 img {
    width: 80%;
}
@media (max-width: 990px) {
    .style2 .content-wrapper {
        margin-right: auto;
        margin-left: auto;
        padding-right: 5%;
        padding-left: 5%;
    }
}
@media (max-width: 768px) {
    .style2 .content-wrapper {
        flex-direction: column;
    }
    .style2 figure {
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2em;
    }
    .style2 img {
        width: 100%;
    }
}
/*Style 3*/
.style3 h1,
.style3 h2,
.style3 h3,
.style3 h4,
.style3 h5,
.style3 h6 {
    font-weight: 500;
    font-size: clamp(2rem, 3vw, 3rem);
}
.style3 p {
    color: var(--secondary-color);
}
.style3 .content-wrapper {
    flex-direction: column;
}
.style3 figure {
    position: sticky;
    top: var(--header-size);
    margin-left: 25%;
}
.style3 .bg-container {
    margin-right: 30%;
    margin-top: -15%;
    padding: 20% 5% 5% 5%;
}
@media (max-width: 768px) {
    .style3 figure {
        position: relative;
        margin-left: unset;
        top: unset;
    }
    .style3 .bg-container {
        margin-right: unset;
        margin-top: unset;
        padding: 5%;
    }
}
footer {
    position: relative;
    background-color: var(--accent-color);
    padding: 5% 1em;
}
footer,
footer a {
    color: var(--color-bright);
}
footer a:hover {
    color: unset;
}
footer .footer-menu ul {
  padding-left: 0;
  margin: 0;
}
footer .link {
    width: 100%;
}
footer .link > div {
    border: 1px solid;
    width: 100%;
    text-align: center;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
footer .grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 3em;
}
@media (min-width: 1440px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
footer .column.menu-column {
  grid-column: 4;
  grid-row: span 2;
  line-height: 2.5em;
}
.menu-column a:hover {
    text-decoration: underline;
}
footer .logos-column,
.portraits-column {
    display: flex;
    flex-direction: column;
}
.logos-column a:nth-child(2) {
    margin: 1em 4em;
}
.portraits-column {
    gap: 3em;
}
.portraits-column figure,
.grid .item figure {
    overflow: hidden;
    border-radius: 50%;
}
.portraits {
    display: flex;
    gap: 3em;
}
.person figure {
    height: auto;
    width: 75%;
    margin-bottom: 3em;
}
@media (max-width: 990px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .grid-container {
        position: relative;
        display: flex;
        flex-direction: column;
        padding-bottom: unset;
        gap: 3em;
    }
    footer .footer-menu ul {
	display: flex;
        gap: 1em;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    .menu-column {
        order: 1;
        width: fit-content;
    }
    .logos-column {
        width: 50%;
	margin: 0 auto;
    }
    footer .address-module {
	flex-direction: column;
    }
    footer .address-module .map-block {
	width: 100%;
    }
}
@media (max-width: 660px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 450px) {
    .portraits {
        flex-direction: column;
    }
    .person figure {
        margin-right: unset;
        margin-left: unset;
    }
    .person-description {
        width: fit-content;
        margin: unset;
    }
    .logos-column {
        position: relative;
        right: unset;
        width: 80%;
        margin: 0 auto;
    }
}
.grid .container {
    padding-left: 5%;
    padding-right: 5%;
}
.grid .item {
    text-align: center;
}
.grid .item h1,
.grid .item h2,
.grid .item h3,
.grid .item h4,
.grid .item h5,
.grid .item h6 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 2rem;
}
.grid .description {
    margin-top: 2em;
}
.grid .item figure {
    width: 60%;
    margin: 0 auto;
    border: 0.375rem solid var(--accent-color);
}
.grid .grid-container {
    gap: 2em;
    margin-top: 3em;
}

.grid .item .item-footnote {
  font-size: clamp(10px, 2vw, 14px);
  border-top: 1px solid #868786;
  padding-top: 1em;
}

.grid_style1 .item figure {
  border-radius: 0;
  border: none;
  width: 50%;
  margin: 0 auto;
}
.grid_style1 h3 {
  min-height: 3em;
}

.grid .grid-container.grid_style2 {
  gap: 1em;
}
.grid_style2 .item {
  background-color: #f7e5e8;
  padding: 2em;
  border-radius: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
}
.grid_style2 .item figure {
  width: fit-content;
  height: 3em;
  margin: 0 auto 0 0;
  border-radius: 0;
  border: none;
}
.grid_style2 .item h3 {
  color: #AE031D;
}
.grid_style2 .item-content {
  flex: 1;
}
.grid_style2 .item-content > *:first-child {
  margin-top: 0;
}

section.grid .footnote {
  position: relative;
  width: 90%;
  margin: 1em auto 0;
  color: var(--ukl-grey);
}
section.grid .footnote::before {
  content: '';
  background-image: url('../images/icons/help.svg');
  width: 28px;
  position: absolute;
  aspect-ratio: 1;
  background-size: cover;
  left: -35px;
}

.style4 .bg-container {
    width: 100%;
    padding: 2% 2% 2% 5%;
}
.style4 video {
    width: 50%;
}
.slider .container {
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
}
.swiper-slide-next .swiper-content {
    margin-left: unset;
    margin-right: auto;
}
.swiper {
    width: 70%;
    padding-bottom: 3em;
}
.swiper-slide {
    transition: all 0.3s ease;
    opacity: 0.2;
}
.swiper-slide-active {
    opacity: 1;
}
.swiper-slide p {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.swiper-slide-active p {
    visibility: visible;
    opacity: 1;
}
.swiper-slide-prev {
    opacity: 0;
}
.swiper .description {
    color: var(--secondary-color);
}
.swiper .description p {
    margin-bottom: 1em;
}
.swiper .description p:first-of-type {
    margin-top: 2em;
}
.swiper .description p:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .swiper {
        width: 80%;
        padding-bottom: 2em;
    }
}


section h2 {
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
  color: var(--accent-color);
  margin-top: 0;
}
section.col_style_blue h2 {
  color: #008acb;
}
.accordion__container {
  margin: 5em 0;
}
.accordion-item {
  position: relative;
  border-top: 1px solid #C2C2C2;
  transition: all 0.3s ease-in;
}
.accordion-item.active {
  border-color: var(--accent-color) !important;
  border-width: 2px !important;
}
.accordion-item.active + .accordion-item {
  border-top: 2px solid var(--accent-color);
}
.accordion-item:last-child {
  border-color: #C2C2C2;
  border-width: 1px;
  border-bottom-style: solid;
}
.accordion-item-header {
  cursor: pointer;
  position: relative;
  padding: 2rem 2em 2rem 0;
  margin: 0;
  font-weight: 400;
  transition-property: font-weight,color,text-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.accordion-item-header:hover,
.accordion-item.active .accordion-item-header {
  color: var(--accent-color);
  /*font-weight: 600;*/
  text-shadow: 1px 0px 0px;
}
.accordion-item-header::after {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: "";
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  background-color: var(--accent-color);
  background-position: center;
  background-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: all 0.2s ease-out;
}
@media (max-width: 600px) {
	.accordion-item-header::after {
		right: 0rem;
		background-size: 1rem;
		width: 1.5rem;
		height: 1.5rem;
	}
}
.accordion-item.active .accordion-item-header:after {
  transform: rotate(180deg);
}
.accordion-item .panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in;
}
.accordion-item.active .panel {
  grid-template-rows: 1fr;
}
.accordion-item .panel .inner {
  overflow: hidden;
}
.accordion-item .panel .panel-content {
  width: 90%;
}


button.accordion {
    position: relative;
    background: none;
    border-top: 1px solid var(--ukl-grey);
    border-bottom: none;
    border-right: none;
    border-left: none;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 3vw, 1.125rem);
    text-align: left;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    padding-right: 4em;
    align-items: center;
    cursor: pointer;
    display: flex;
    transition: border-top-color 0.3s ease;
}
button.accordion::after {
    position: absolute;
    right: 1rem;
    content: "";
    background-image: url('../images/arrow.svg');
    background-repeat: no-repeat;
    background-color: var(--accent-color);
    background-position: center;
    background-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    transition: all 0.2s ease-out;
}
button.accordion:hover {
    color: var(--accent-color);
    font-weight: 700;
}
button.accordion.active::after {
    transform: rotate(180deg);
}
.accordion .content-wrapper {
    flex-direction: column;
    background-color: #FFE6E6;
    padding: 5%;
    width: 80%;
    margin-bottom: 4em;
}
button.accordion.active {
    padding-bottom: unset;
    color: var(--accent-color);
    font-weight: 700;
    border-top: 2px solid var(--accent-color);
}
button.accordion.active + .panel + button.accordion {
    border-top: 2px solid var(--accent-color);
}
button.accordion.active + .panel {
    height: auto;
    opacity: 1;
    visibility: visible;
    padding: 1em 0;
}
@media (max-width: 768px) {
    .accordion .content-wrapper {
        width: 100%;
    }
}
