@charset "UTF-8";
/*
	Abstracts are helpers, variables and functions
	for scss compliation.
*/
/*
	@TODO: Add to theme: new division fix for updated sass package.
*/
/**==================================================================================================================================
BREAKPOINT
@TODO: remove? What is use case?? either use simple global points or write custom line. why does first breakpoint have to be 0?
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 600;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.2s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

/*
	Variables for compliation
	NB! Colors should be added to base/config file as css root variable.
*/
/**
 * Block section background colors.
 * Include the background options ACF fields group to use these.
 */
/**
 *	Fluid sized fonts
 *	Read more here:
 *	https://css-tricks.com/snippets/css/fluid-typography/
 */
/*
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div > title > list > li > a
*/
/*
	Variables for legacy dc plugins
*/
:root {
  --spacing-block: 7.5rem;
  --spacing-block-small: 3rem;
  --spacing-content: 5rem;
  --spacing-grid-gap: 4rem;
  --element-width-wide: 2000px;
  --element-width-content: 950px;
  --element-width-text-narrow: 850px;
  --element-border-radius: 16px;
  --element-aspect-ratio: 3 / 2;
  --font-family: "Roboto", Helvetica, arial, sans-serif;
  --font-family-display: Georgia, serif;
  --font-size-ui: 14px;
  --font-size-ui-mobile: 12px;
  --color__white: rgb(252, 252, 252);
  --color__black: rgb(24, 24, 24);
  --color__grey: rgb(102, 102, 102);
  --color__grey-light: #EDEDED;
  --color__grey-light2: #d9d9d9;
  --color__grey-light-alt: rgb(217, 217, 217);
  --color__grey-lightest: rgb(248, 248, 248);
  --color__green: rgb(57, 115, 102);
  --color__green-dark: #397366;
  --color__green-light: rgb(215, 241, 236);
  --color__green-bright: #50B275;
  --color__mint-green: #A7D9CC;
  --color__green-light2: #EEF6F4;
  --color__green-lightest: rgb(243, 248, 247);
  --color__green-lime: rgb(232, 246, 213);
  --color__blue-light: rgb(208, 238, 252);
  --color__turqoise: #EDF7F5;
  --color__text: var(--color__grey);
  --color__green-light-new: #50B275;
  --color__green-light-new-2: #C5E1CC;
  --color__green-light-new-3: #397467;
  --color__new-bg: #ebebeb;
}

body {
  background-color: var(--color__new-bg);
}

section.column-cards:not(.text-align-left) h1 {
  text-align: center;
}

@media screen and (min-width: 850px) {
  section.column-cards h1 {
    margin-bottom: 3.125rem;
  }
}
@media screen and (max-width: 849px) {
  section.column-cards h1 {
    margin-bottom: 1.875rem;
  }
}
section.column-cards ul.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

@media screen and (min-width: 850px) and (max-width: 1000px) {
  section.column-cards ul.cards {
    width: calc(100% + 20px);
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }
}
@media screen and (min-width: 1000px) {
  section.column-cards ul.cards {
    width: calc(100% + 30px);
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  section.column-cards ul.cards {
    width: calc(100% + 40px);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
section.column-cards li {
  width: 100%;
  padding-bottom: 1.25rem;
  margin-bottom: 1.875rem;
  border-bottom: 0.0625rem solid var(--color__grey-light-alt);
}

@media screen and (min-width: 850px) and (max-width: 1000px) {
  section.column-cards li {
    width: calc(50% - 20px);
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
}
@media screen and (min-width: 1000px) {
  section.column-cards li {
    width: calc(33% - 30px);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  section.column-cards li {
    width: calc(33% - 40px);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
section.column-cards li.has-link {
  padding-bottom: 2.5rem;
  position: relative;
}

@media screen and (min-width: 850px) {
  section.column-cards li.has-link .text-link {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
  }
}
section.column-cards li img {
  aspect-ratio: var(--element-aspect-ratio);
}

@media screen and (max-width: 849px) {
  section.column-cards li:last-child {
    margin-bottom: 0;
  }
}
section.column-cards li h3.heading-size-normal {
  position: relative;
  display: block;
  padding-right: 1.25rem;
}

section.column-cards li h3.heading-size-normal.show-arrow:after {
  font-family: "icon";
  content: "Г";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

section.column-cards li > article > a {
  text-decoration: none;
}

section.column-cards li > article > a:hover h3:after {
  right: 0;
}

section.column-cards article {
  height: 100%;
}

@media screen and (min-width: 850px) {
  section.column-cards article {
    padding-bottom: 3.125rem;
  }
}
section.column-cards .text-under-title {
  max-width: 31.25rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.8125rem;
}

section.column-cards .image-wrapper {
  margin-bottom: 2.1875rem;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

section.column-cards .image-wrapper img {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

section.column-cards.four-in-a-row ul.cards li {
  width: 100%;
}

@media screen and (min-width: 850px) and (max-width: 1000px) {
  section.column-cards.four-in-a-row ul.cards li {
    width: calc(50% - 20px);
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
}
@media screen and (min-width: 1000px) {
  section.column-cards.four-in-a-row ul.cards li {
    width: calc(25% - 30px);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  section.column-cards.four-in-a-row ul.cards li {
    width: calc(25% - 40px);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
