@charset "UTF-8";
:root {
  --primary: #00868F;
  --secondary: #FF7843;
  --green-dark: #00313C;
  --cyan: #00868F;
  --cyan-light: #77DCBD;
  --orange: #C95844;
}

body, html {
  overflow-x: hidden;
}

body {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1536px;
  overflow-x: hidden;
  line-height: 25px;
  color: black;
}

header, .navbar-nav, footer {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  header, .navbar-nav, footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1280px) {
  header, .navbar-nav, footer {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

section {
  padding-left: 1rem;
  padding-right: 1rem;
}
section.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1024px) {
  section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1280px) {
  section {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (max-width: 576px) {
  section.m-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

h1, h2, h3, h4, h5 {
  letter-spacing: 0.85px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #00868F;
  width: 100%;
}

h2 {
  width: fit-content;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #00868F;
  margin-bottom: 2rem !important;
}
h2:not(.no-underline):after {
  content: "";
  position: absolute;
  left: -100vw;
  bottom: -0.75rem;
  width: calc(100% + 100vw);
  height: 3px;
  background-color: #00868F;
}
h2:not(.no-underline).underline-right:after {
  right: -100vw;
  left: unset;
}
h2:not(.no-underline).underline-white:after {
  background-color: white;
}
h2:not(.no-underline).underline-black:after {
  background-color: black;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 12px;
}

@media (min-width: 1280px) {
  .xl-grid-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-0\! {
    grid-template-columns: repeat(0, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr));
  }
}

.grid-0 {
  grid-template-columns: repeat(0, minmax(0, 1fr));
}

.span-0 {
  grid-column-end: span 0;
}

@media (min-width: 768px) {
  .md-span-0 {
    grid-column-end: span 0;
  }
}

@media (min-width: 480px) {
  .sm-span-0 {
    grid-column-end: span 0;
  }
}

.gap-0 {
  gap: 0rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-1\! {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.grid-1, .nskv-directors, .ambassadors-desc {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.span-1 {
  grid-column-end: span 1;
}

@media (min-width: 768px) {
  .md-span-1 {
    grid-column-end: span 1;
  }
}

@media (min-width: 480px) {
  .sm-span-1 {
    grid-column-end: span 1;
  }
}

.gap-1 {
  gap: 1rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-2, .nskv-directors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-2, .ambassadors-desc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-2\! {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.span-2 {
  grid-column-end: span 2;
}

@media (min-width: 768px) {
  .md-span-2 {
    grid-column-end: span 2;
  }
}

@media (min-width: 480px) {
  .sm-span-2 {
    grid-column-end: span 2;
  }
}

.gap-2 {
  gap: 2rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-3\! {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.span-3 {
  grid-column-end: span 3;
}

@media (min-width: 768px) {
  .md-span-3 {
    grid-column-end: span 3;
  }
}

@media (min-width: 480px) {
  .sm-span-3 {
    grid-column-end: span 3;
  }
}

.gap-3 {
  gap: 3rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-4\! {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.span-4 {
  grid-column-end: span 4;
}

@media (min-width: 768px) {
  .md-span-4 {
    grid-column-end: span 4;
  }
}

@media (min-width: 480px) {
  .sm-span-4 {
    grid-column-end: span 4;
  }
}

.gap-4 {
  gap: 4rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-5\! {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.span-5 {
  grid-column-end: span 5;
}

@media (min-width: 768px) {
  .md-span-5 {
    grid-column-end: span 5;
  }
}

@media (min-width: 480px) {
  .sm-span-5 {
    grid-column-end: span 5;
  }
}

.gap-5 {
  gap: 5rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-6\! {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.span-6 {
  grid-column-end: span 6;
}

@media (min-width: 768px) {
  .md-span-6 {
    grid-column-end: span 6;
  }
}

@media (min-width: 480px) {
  .sm-span-6 {
    grid-column-end: span 6;
  }
}

.gap-6 {
  gap: 6rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-7\! {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

.grid-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.span-7 {
  grid-column-end: span 7;
}

@media (min-width: 768px) {
  .md-span-7 {
    grid-column-end: span 7;
  }
}

@media (min-width: 480px) {
  .sm-span-7 {
    grid-column-end: span 7;
  }
}

.gap-7 {
  gap: 7rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-8\! {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.grid-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.span-8 {
  grid-column-end: span 8;
}

@media (min-width: 768px) {
  .md-span-8 {
    grid-column-end: span 8;
  }
}

@media (min-width: 480px) {
  .sm-span-8 {
    grid-column-end: span 8;
  }
}

.gap-8 {
  gap: 8rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-9\! {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

.grid-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.span-9 {
  grid-column-end: span 9;
}

@media (min-width: 768px) {
  .md-span-9 {
    grid-column-end: span 9;
  }
}

@media (min-width: 480px) {
  .sm-span-9 {
    grid-column-end: span 9;
  }
}

.gap-9 {
  gap: 9rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-10\! {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

.grid-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.span-10 {
  grid-column-end: span 10;
}

@media (min-width: 768px) {
  .md-span-10 {
    grid-column-end: span 10;
  }
}

@media (min-width: 480px) {
  .sm-span-10 {
    grid-column-end: span 10;
  }
}

.gap-10 {
  gap: 10rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-11\! {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}

.grid-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.span-11 {
  grid-column-end: span 11;
}

@media (min-width: 768px) {
  .md-span-11 {
    grid-column-end: span 11;
  }
}

@media (min-width: 480px) {
  .sm-span-11 {
    grid-column-end: span 11;
  }
}

.gap-11 {
  gap: 11rem !important;
}

@media (min-width: 1280px) {
  .xl-grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-12\! {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 480px) {
  .sm-grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.span-12 {
  grid-column-end: span 12;
}

@media (min-width: 768px) {
  .md-span-12 {
    grid-column-end: span 12;
  }
}

@media (min-width: 480px) {
  .sm-span-12 {
    grid-column-end: span 12;
  }
}

.gap-12 {
  gap: 12rem !important;
}

.md-visible {
  display: none;
}
@media (min-width: 768px) {
  .md-visible {
    display: block;
  }
}

.grid, .nskv-directors, .ambassadors-desc {
  display: grid;
  gap: 1rem;
}

.g-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.g-header-sibur {
  background: url(/assets/img/logo-sibur.svg) no-repeat center/contain;
  width: 171px;
  height: 33px;
  display: block;
}
.g-header-counter {
  margin: 0 2em;
}
.g-header-counter-title {
  font-weight: 700;
  color: #C3C3C3;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.g-header-counter-num {
  color: #FF7843;
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
}
.g-header-search {
  flex: 1;
  position: relative;
}
.g-header-search-input {
  border: none;
  border-bottom: 1px solid #E8E8E8;
  color: #000;
  font-size: 13px;
  line-height: 1;
  height: 30px;
  width: 100%;
}
.g-header-search-input::placeholder {
  color: #4A4A4A;
}
.g-header-search-btn {
  border: none;
  background: url(/assets/img/i-arr-r.png) no-repeat -4px -4px;
  width: 16px;
  height: 16px;
  position: absolute;
  margin: 8px 0 0 -15px;
  top: 0;
  right: 0;
}
.g-header-search-btn:hover {
  cursor: pointer;
}
.g-header-auth {
  margin: 0 1em;
}
.g-header-auth .btn {
  margin: 0 0.15em;
  font-size: 13px;
  padding: 0.375rem 0.75rem;
}
.g-header-auth .btn-link {
  color: #343434;
}
.g-header-fhd {
  background: url(/assets/img/logo-fhd.svg) no-repeat center/contain;
  width: 99px;
  height: 50px;
  display: block;
}

button:focus {
  outline: none;
}

.btn {
  padding: 12px 40px;
}
.btn:focus {
  box-shadow: none;
}
.btn-primary:focus {
  box-shadow: none;
}
.btn-secondary {
  color: white;
}
.btn-secondary:focus {
  box-shadow: none;
}

.g-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #00868F;
  padding: 0;
  margin-bottom: 2em;
}
.g-menu-mobile {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 42px;
  align-items: center;
}
.g-menu-mobile-toggler {
  display: flex;
  align-items: center;
  background: transparent;
  color: white;
  font-weight: 500;
  font-size: 18px;
  border: none;
  height: 40px;
  padding: 0 0 0 70px;
  cursor: pointer;
  margin-right: 30px;
}
.g-menu-mobile-toggler-icon {
  background: url(/assets/img/i-menu.svg) no-repeat center/contain;
  display: inline-block;
  width: 45px;
  position: absolute;
  margin: 0 0 0 -52px;
}
.g-menu-mobile-search {
  flex: 1;
  position: relative;
}
.g-menu-mobile-search-input {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  height: 30px;
  width: 100%;
  background: none;
}
.g-menu-mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.g-menu-mobile-search-btn {
  border: none;
  background: url(/assets/img/i-arr-r2.png) no-repeat -4px -4px;
  width: 16px;
  height: 16px;
  position: absolute;
  margin: 8px 0 0 -15px;
}
.g-menu-mobile-search-btn:hover {
  cursor: pointer;
}
.g-menu-mobile-auth .btn {
  padding: 0.375rem 0.5rem;
}
.g-menu-mobile-auth .btn-link {
  color: white;
}
.g-menu .navbar-nav {
  width: 100%;
  justify-content: space-between;
}
.g-menu .navbar-nav .nav-item-bet {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #8ACDED;
  border-radius: 50%;
  position: relative;
  top: -1px;
}
.g-menu .navbar-nav .nav-item {
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.g-menu .navbar-nav .nav-item:hover .nav-link, .g-menu .navbar-nav .nav-item.active .nav-link {
  height: 100%;
  border-bottom: 2px solid white;
  background-color: #77DCBD;
  color: black;
}
.g-menu .navbar-nav .nav-item:hover .nav-item-sub, .g-menu .navbar-nav .nav-item.active .nav-item-sub {
  display: block;
}
.g-menu .navbar-nav .nav-item .nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  width: 100%;
  border-bottom: 2px solid transparent;
  padding: 13px 0 10px 0;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.g-menu .navbar-nav .nav-item .nav-link .dropdown-toggle::after {
  display: block;
}
.g-menu .navbar-nav .nav-item .navbar-collapse {
  align-items: normal !important;
}
.g-menu .navbar-nav .nav-item .nav-item-sub {
  padding-top: 15px;
  position: absolute;
  display: none;
  z-index: 1000;
}
.g-menu .navbar-nav .nav-item .nav-item-sub > ul {
  margin: 0;
  padding: 0;
  width: 300px;
  -webkit-box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.g-menu .navbar-nav .nav-item .nav-item-sub > ul:before {
  display: block;
  content: "";
  background: #00868F;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  position: absolute;
  left: 25px;
  top: 9px;
}
.g-menu .navbar-nav .nav-item .nav-item-sub > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  background: #00868F;
}
.g-menu .navbar-nav .nav-item .nav-item-sub > ul > li:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.g-menu .navbar-nav .nav-item .nav-item-sub > ul > li:last-child {
  border-bottom: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.g-menu .navbar-nav .nav-item .nav-item-sub > ul > li > a {
  color: white;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 14px;
  padding: 10px 20px;
  display: block;
}
.g-menu .navbar-nav .nav-item .nav-item-sub > ul > li > a:hover {
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .slider-slide-left .slider-slide-wrapper {
    margin-left: -350px;
  }
  .slider-slide-right .slider-slide-wrapper {
    margin-left: 350px;
  }
}
@media (min-width: 1280px) {
  .slider-slide-left .slider-slide-wrapper {
    margin-left: -470px;
  }
  .slider-slide-right .slider-slide-wrapper {
    margin-left: 470px;
  }
}
.slider {
  margin-top: -2em;
}
.slider-slide {
  height: 546px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slider-slide-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slider-slide-text {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  color: white;
  text-align: center;
  width: 280px;
  top: -10px;
}
.slider-slide-text-title1 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
}
.slider-slide-text-title2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.7px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.slider-slide-text-desc {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}
.slider-slide-text-btn {
  margin: 0 auto 70px;
  width: 160px;
  padding: 10px 0;
  font-size: 14px;
}
.slider-slide-bg {
  z-index: 5;
  width: 857px;
  height: 650px;
  border-radius: 50%;
  position: absolute;
  opacity: 0.8;
  top: -90px;
}
.slider-slide-bg-sport {
  background: linear-gradient(180deg, #F8B400 0%, #EE7D00 100%);
}
.slider-slide-bg-volunteer {
  background: linear-gradient(180deg, #F9D457 0%, #EFA92C 100%);
}
.slider-slide-bg-default {
  background: linear-gradient(180deg, #008283 0%, #003B3C 100%);
}
.slider-slide-bg-culture {
  background: linear-gradient(180deg, #C57BBE 0%, #93468A 100%);
}
.slider-slide-bg-nature {
  background: linear-gradient(180deg, #A5DC79 0%, #6CB644 100%);
}
.slider-slide-bg-city {
  background: linear-gradient(180deg, #0088C5 0%, #005093 100%);
}
.slider-slide-bg-science {
  background: linear-gradient(180deg, #66CEE9 0%, #35A0CD 100%);
}

.about {
  margin-bottom: 4em;
}
.about-wrapper {
  position: relative;
}
.about-left {
  padding-top: 30px;
  padding-bottom: 10px;
}
.about-right {
  background: #1F5874;
  color: white;
  padding: 30px 30px 30px 30px;
}
.about-right-quote {
  font-style: italic;
  font-weight: 200;
}
.about-right-quote:before {
  content: "";
  display: block;
  background: url(/assets/img/i-quote.svg) no-repeat center/contain;
  width: 40px;
  height: 40px;
  position: relative;
  left: -20px;
  top: 10px;
}
.about-right-author {
  font-size: 12px;
  font-weight: 100;
  text-align: right;
}

.directions {
  margin-bottom: 4em;
}
.directions-item-tile {
  padding: 0 1rem;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
}
.directions-item-science .directions-item-title {
  background-image: url(/assets/img/i-science.svg);
}
.directions-item-science .directions-item-detail {
  color: #35A0CD;
}
.directions-item-city .directions-item-title {
  background-image: url(/assets/img/i-city.svg);
}
.directions-item-city .directions-item-detail {
  color: #005093;
}
.directions-item-nature .directions-item-title {
  background-image: url(/assets/img/i-nature.svg);
}
.directions-item-nature .directions-item-detail {
  color: #6CB644;
}
.directions-item-sport .directions-item-title {
  background-image: url(/assets/img/i-sport.svg);
}
.directions-item-sport .directions-item-detail {
  color: #FA7A3A;
}
.directions-item-volunteer .directions-item-title {
  background-image: url(/assets/img/i-volunteer.svg);
}
.directions-item-volunteer .directions-item-detail {
  color: #EFA92C;
}
.directions-item-culture .directions-item-title {
  background-image: url(/assets/img/i-culture.svg);
}
.directions-item-culture .directions-item-detail {
  color: #93468A;
}
.directions-item-title {
  height: 3.5rem;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #484848;
  padding-left: 3.25rem;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: 2.5rem;
  background-position: left;
}
.directions-item-desc {
  font-size: 13px;
  line-height: 22px;
  color: #808080;
  margin-bottom: 10px;
}
.directions-item-detail:hover {
  text-decoration: none;
  opacity: 0.7;
}
.directions-item-detail span {
  font-size: 18px;
  position: relative;
  top: 1px;
  left: 4px;
}

.btn-secondary {
  background: linear-gradient(180deg, #F5B156 0%, #E7792B 100%);
  border: none;
}

.projects {
  margin-bottom: 4em;
}
.projects-more {
  text-align: center;
  font-size: 18px;
  display: block;
  margin-bottom: 2em;
  margin-top: 1em;
  color: #FF7843;
}
.projects-item {
  height: 424px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 2em;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 359px;
}
.projects-item:hover {
  text-decoration: none;
}
.projects-item-sport .projects-item-text-icon {
  background-image: url(/assets/img/i-sport.svg);
}
.projects-item-sport .projects-item-text {
  background-image: url(/assets/img/p-bg-sport.png);
}
.projects-item-city .projects-item-text-icon {
  background-image: url(/assets/img/i-city.svg);
}
.projects-item-city .projects-item-text {
  background-image: url(/assets/img/p-bg-city.png);
}
.projects-item-science .projects-item-text-icon {
  background-image: url(/assets/img/i-science.svg);
}
.projects-item-science .projects-item-text {
  background-image: url(/assets/img/p-bg-science.png);
}
.projects-item-volunteer .projects-item-text-icon {
  background-image: url(/assets/img/i-volunteer.svg);
}
.projects-item-volunteer .projects-item-text {
  background-image: url(/assets/img/p-bg-volunteer.png);
}
.projects-item-nature .projects-item-text-icon {
  background-image: url(/assets/img/i-nature.svg);
}
.projects-item-nature .projects-item-text {
  background-image: url(/assets/img/p-bg-nature.png);
}
.projects-item-culture .projects-item-text-icon {
  background-image: url(/assets/img/i-culture.svg);
}
.projects-item-culture .projects-item-text {
  background-image: url(/assets/img/p-bg-culture.png);
}
.projects-item-text {
  text-align: center;
  color: white;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  padding: 50px 20px 5px;
}
.projects-item-text-icon {
  width: 62px;
  height: 62px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: -40px;
  margin-left: -31px;
}
.projects-item-text-title {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 300;
}
.projects-item-text-desc {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 20px;
  display: none;
  max-height: 160px;
  overflow: hidden;
}
.projects-item-text-detail {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 20px;
  display: none;
}
.projects-item-text-detail:hover {
  opacity: 0.5;
}

.block h2 {
  margin-bottom: 1em;
}

.geo {
  margin-bottom: 4em;
}
.geo > h2 {
  position: relative;
  top: 40px;
}
.geo-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.geo-place {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
}
.geo-place-pin {
  width: 30px;
  height: 44px;
  background: url(/assets/img/pin.svg) no-repeat;
  display: block;
  margin: -44px 0 0 0;
  z-index: 90;
}
.geo-place.active .geo-popup {
  display: flex;
  cursor: pointer;
}
.geo-place.active .geo-place-pin {
  background: url(/assets/img/pin-active.svg) no-repeat;
  z-index: 95;
}
.geo-place-voronezh {
  margin: -3% 0 0 -42%;
}
.geo-place-gubk {
  margin: -4% 0 0 -7%;
}
.geo-place-nizhnevartovsk {
  margin: 6% 0 0 -3%;
}
.geo-place-nyagan {
  margin: 5% 0 0 -13%;
}
.geo-place-tobolsk {
  margin: 13% 0 0 -10%;
}
.geo-place-krasnodar {
  margin: 6% 0 0 -51%;
}
.geo-place-kstovo {
  margin: -3% 0 0 -29%;
}
.geo-place-dzerzhinsk {
  margin: -3% 0 0 -32%;
}
.geo-place-pit-yah {
  margin: 9% 0 0 -7%;
}
.geo-place-blagovezchensk {
  margin: 19.5% 0 0 27%;
}
.geo-place-noyabrsk {
  margin: 2% 0 0 -1%;
}
.geo-place-tomsk {
  margin: 19% 0 0 0%;
}
.geo-place-tolyatti {
  margin: 6% 0 0 -36%;
}
.geo-place-perm {
  margin: 3% 0 0 -21%;
}
.geo-place-muravlenko {
  margin: 2% 0 0 -8%;
}
.geo-popup {
  min-height: 125px;
  z-index: 100;
  display: none;
  position: absolute;
  background: white;
  margin: -93px 0px 0 50px;
  flex-flow: row nowrap;
  width: 420px;
  border-radius: 18px;
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.19);
  overflow: hidden;
}
.geo-popup-bottom {
  margin: -1px 0px 0 -160px;
}
.geo-popup-ava {
  width: 125px;
  background-position: center;
  background-size: cover;
  background-color: #f0f0f0;
}
.geo-popup-text {
  display: flex;
  flex-flow: column nowrap;
  flex: 1;
  justify-content: center;
  padding: 15px 20px;
}
.geo-popup-text h2 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 400;
}
.geo-popup-text p {
  margin-bottom: 0;
  line-height: 22px;
  font-size: 13px;
  color: #808080;
}
.geo-map {
  width: 100%;
}
.geo-list {
  margin-bottom: 2em;
}
.geo-list-item {
  display: inline-block;
  width: 180px;
  font-size: 15px;
  margin-bottom: 13px;
}
.geo-list-item.active {
  text-decoration: underline;
}
.geo-list-item-voronezh span {
  background-image: url(/assets/img/city-voronezh.png);
}
.geo-list-item-gubk span {
  background-image: url(/assets/img/city-gubk.png);
}
.geo-list-item-nizhnevartovsk span {
  background-image: url(/assets/img/city-nizhnevartovsk.png);
}
.geo-list-item-nyagan span {
  background-image: url(/assets/img/city-nyagan.png);
}
.geo-list-item-tobolsk span {
  background-image: url(/assets/img/city-tobolsk.png);
}
.geo-list-item-krasnodar span {
  background-image: url(/assets/img/city-krasnodar.png);
}
.geo-list-item-kstovo span {
  background-image: url(/assets/img/city-kstovo.png);
}
.geo-list-item-dzerzhinsk span {
  background-image: url(/assets/img/city-dzerzhinsk.png);
}
.geo-list-item-pit-yah span {
  background-image: url(/assets/img/city-pit-yah.png);
}
.geo-list-item-blagovezchensk span {
  background-image: url(/assets/img/city-blagovezchensk.png);
}
.geo-list-item-noyabrsk span {
  background-image: url(/assets/img/city-noyabrsk.png);
}
.geo-list-item-tomsk span {
  background-image: url(/assets/img/city-tomsk.png);
}
.geo-list-item-tolyatti span {
  background-image: url(/assets/img/city-tolyatti.png);
}
.geo-list-item-perm span {
  background-image: url(/assets/img/city-perm.png);
}
.geo-list-item-muravlenko span {
  background-image: url(/assets/img/city-muravlenko.png);
}
.geo-list-item span {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 13px;
  margin-right: 8px;
}

.back {
  color: #4A4A4A;
  text-decoration: underline;
  opacity: 0.5;
  position: relative;
  top: -1em;
}

.news {
  margin-bottom: 4em;
}
.news .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 2em;
  gap: 2rem 1rem;
  padding: 0 1rem;
}
@media screen and (max-width: 1024px) {
  .news .row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .news .row {
    grid-template-columns: 1fr;
  }
}
.news-item {
  padding: 0.75rem;
  border: black solid 3px;
  border-radius: 0.5rem;
}
.news-item-ava {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 280px;
  display: block;
  margin-bottom: 20px;
  border-radius: 5px;
}
.news-item-date {
  opacity: 0.5;
  margin-bottom: 5px;
  margin-top: auto;
}
.news-item-title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 15px;
  display: block;
  color: black;
  font-weight: bold;
}
.news-item-desc {
  color: #848484;
  margin-bottom: 15px;
}
.news-item-detail {
  font-size: 12px;
  color: #FF7843;
  letter-spacing: 1.15px;
}
.news-item-detail:hover {
  color: #FF7843;
}
.news-item-detail span {
  font-size: 17px;
}

.new-item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card h1 {
  margin-bottom: 5px;
}
.news-card-date {
  color: #848484;
}
.news-card img {
  max-width: 100%;
  margin-bottom: 1em;
}
.news-card-carousel {
  position: relative;
  margin-bottom: 1em;
}
.news-card-carousel-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.news-card-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -35px;
}
.news-card-carousel .owl-nav .owl-prev,
.news-card-carousel .owl-nav .owl-next {
  position: absolute;
}
.news-card-carousel .owl-nav .owl-prev.disabled,
.news-card-carousel .owl-nav .owl-next.disabled {
  opacity: 0.5;
}
.news-card-carousel .owl-nav .owl-prev span,
.news-card-carousel .owl-nav .owl-next span {
  width: 36px;
  height: 69px;
  display: block;
  color: transparent;
}
.news-card-carousel .owl-nav .owl-prev {
  left: 20px;
}
.news-card-carousel .owl-nav .owl-prev span {
  background: url(/assets/img/i-arr-big-l.svg);
}
.news-card-carousel .owl-nav .owl-next {
  right: 20px;
}
.news-card-carousel .owl-nav .owl-next span {
  background: url(/assets/img/i-arr-big-r.svg);
}
.news-card-carousel .owl-dots {
  display: none;
}
.news-card-event {
  background: linear-gradient(180deg, #4ED5EF 0%, #26AADB 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 1em;
  color: white;
  display: table;
  width: 100%;
  box-shadow: 0 9px 21px 0 rgba(0, 0, 0, 0.15);
}
.news-card-event .row {
  text-align: center;
}
.news-card-event-date {
  font-size: 24px;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}
.news-card-event-location {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-card-event-btn button {
  padding: 12px 40px;
}

.partners-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.partners-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.partners-list-item img {
  width: auto !important;
}

.partners-carousel .owl-nav {
  position: absolute;
  width: 100%;
}
.partners-carousel .owl-nav .owl-prev {
  left: 0 !important;
}
.partners-carousel .owl-nav .owl-next {
  right: 0 !important;
}
.partners-carousel .owl-nav .owl-prev,
.partners-carousel .owl-nav .owl-next {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
}
.partners-carousel .owl-nav .owl-prev.disabled,
.partners-carousel .owl-nav .owl-next.disabled {
  opacity: 0.5;
}
.partners-carousel .owl-nav .owl-prev span,
.partners-carousel .owl-nav .owl-next span {
  display: none;
}
.partners-carousel .owl-dots {
  display: none;
}

.g-main {
  flex: 1 0 auto;
}

.interactive {
  text-decoration: none;
  border-bottom: 1px dashed;
}
.interactive:hover {
  text-decoration: none;
}

.mobile-menu-bg {
  background: transparent;
  height: 100%;
  width: 100%;
  z-index: 999;
  position: absolute;
  display: none;
}

.mobile-menu {
  background: #00868F;
  color: white;
  min-height: 100%;
  width: 300px;
  position: absolute;
  z-index: 1000;
  box-shadow: 6px 0 24px 0 rgba(0, 0, 0, 0.5);
  padding: 20px;
  transition: left 0.5s ease-out;
  left: -350px;
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu li:hover > a, .mobile-menu li.active > a {
  text-decoration: none;
  color: #c3dfe5;
}
.mobile-menu a {
  color: white;
}
.mobile-menu-close {
  font-size: 18px;
  display: block;
  margin-bottom: 30px;
}
.mobile-menu > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-menu > ul > li > a {
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
}
.mobile-menu > ul > li > ul {
  padding: 0;
  margin: 0 0 1em;
  list-style: none;
}
.mobile-menu > ul > li > ul > li > a {
  display: block;
  padding: 5px 0;
}

.pagination {
  margin-top: 1rem;
  gap: 0.5rem;
  text-align: center;
}
.pagination .page-item.active .page-link {
  color: white;
  background-color: #00868F;
}
.pagination .page-item .page-link {
  color: #00868F;
  font-weight: bold;
  border: 1px solid #00868F;
  border-radius: 5px;
}

.contacts-info {
  margin-bottom: 3em;
}
.contacts-info .row {
  margin-bottom: 1.5em;
}
.contacts-info .row > div:nth-child(2) a {
  color: #E7792B;
  font-size: 18px;
  text-decoration: underline;
  font-weight: 500;
}
.contacts-info .row > div:nth-child(1) {
  color: #848484;
}
.contacts-phone {
  display: inline-block;
}
.contacts-phone-title {
  color: #848484;
}
.contacts-phone-num {
  color: #EB8000;
  font-size: 31px;
  line-height: 1;
}
.contacts-phone-num:hover {
  color: #EB8000;
}
.contacts-phone-addon {
  text-align: right;
  color: #848484;
}
.contacts-feedback {
  background: #2EA5DD url(/assets/img/bg-feedback.jpg) center/cover;
  color: white;
  padding: 4em 0;
  text-align: center;
}
.contacts-feedback h2 {
  color: white;
}
.contacts-feedback p {
  font-weight: 300;
  margin-bottom: 2em;
}
.contacts-feedback .container {
  max-width: 500px;
}
.contacts-smi {
  background: linear-gradient(180deg, #9BCE06 0%, #7DB905 100%);
  color: white;
  padding: 4em 0;
  text-align: center;
}
.contacts-smi h2 {
  color: white;
}
.contacts-smi p {
  font-weight: 300;
}
.contacts-smi .container {
  max-width: 630px;
}

.big {
  font-size: 14px;
}

.projects-index {
  margin-bottom: 2em;
}
.projects-index-nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 1em;
}
.projects-index-nav .btn {
  width: 143px;
  white-space: normal;
  padding: 8px 20px;
  height: 54px;
  line-height: 1.2;
  color: white;
  border: none;
  margin-bottom: 7px;
}
.projects-index-nav .btn-city {
  background: linear-gradient(180deg, #0587CB 0%, #024F9C 100%);
}
.projects-index-nav .btn-sport {
  background: linear-gradient(180deg, #F5B156 0%, #E7792B 100%);
}
.projects-index-nav .btn-nature {
  background: linear-gradient(180deg, #B3E095 0%, #4fb320 100%);
}
.projects-index-nav .btn-culture {
  background: linear-gradient(180deg, #D377C7 0%, #A84295 100%);
}
.projects-index-nav .btn-volunteer {
  background: linear-gradient(180deg, #FCD707 0%, #F7AE03 100%);
}
.projects-index-nav .btn-science {
  background: linear-gradient(180deg, #6DD2F2 0%, #3BA6E1 100%);
}
.projects-index-block-full {
  display: flex;
  flex-flow: column nowrap;
  height: 454px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  color: white;
  margin-bottom: 3em;
}
.projects-index-block-full:hover {
  color: white;
  text-decoration: none;
}
.projects-index-block-full-title {
  padding: 50px 0 30px;
  font-size: 30px;
  line-height: 1.2;
}
.projects-index-block-full-city .projects-index-block-full-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #024F9C 100%);
}
.projects-index-block1 > .projects-index-block-item:nth-child(1) {
  position: relative;
  left: -15px;
  width: calc(100% + 30px);
}
.projects-index-block1 > .projects-index-block-item:nth-child(1) .projects-index-block-item-top,
.projects-index-block1 > .projects-index-block-item:nth-child(1) .projects-index-block-item-title {
  padding: 15px 30px;
}
.projects-index-block-item {
  min-height: 290px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 15px;
  color: white;
}
.projects-index-block-item:hover {
  text-decoration: none;
  color: white;
}
.projects-index-block-item-none .projects-index-block-item-top-icon {
  width: 68px;
  height: 68px;
}
.projects-index-block-item-none.projects-index-block-item-city .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-city-2.png);
}
.projects-index-block-item-none.projects-index-block-item-city .projects-index-block-item-wrapper {
  background: linear-gradient(180deg, #0587CB 0%, #024F9C 100%);
}
.projects-index-block-item-none.projects-index-block-item-sport .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-sport-2.png);
}
.projects-index-block-item-none.projects-index-block-item-sport .projects-index-block-item-wrapper {
  background: linear-gradient(180deg, #F5B156 0%, #E7792B 100%);
}
.projects-index-block-item-none.projects-index-block-item-nature .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-nature-2.png);
}
.projects-index-block-item-none.projects-index-block-item-nature .projects-index-block-item-wrapper {
  background: linear-gradient(180deg, #B3E095 0%, #4fb320 100%);
}
.projects-index-block-item-none.projects-index-block-item-culture .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-culture-2.png);
}
.projects-index-block-item-none.projects-index-block-item-culture .projects-index-block-item-wrapper {
  background: linear-gradient(180deg, #D377C7 0%, #A84295 100%);
}
.projects-index-block-item-none.projects-index-block-item-volunteer .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-volunteer-2.png);
}
.projects-index-block-item-none.projects-index-block-item-volunteer .projects-index-block-item-wrapper {
  background: linear-gradient(180deg, #FCD707 0%, #F7AE03 100%);
}
.projects-index-block-item-none.projects-index-block-item-science .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-science-2.png);
}
.projects-index-block-item-none.projects-index-block-item-science .projects-index-block-item-wrapper {
  background: linear-gradient(180deg, #6DD2F2 0%, #3BA6E1 100%);
}
.projects-index-block-item-bg .projects-index-block-item-top-icon {
  width: 68px;
  height: 68px;
}
.projects-index-block-item-bg.projects-index-block-item-city .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-city-2.png);
}
.projects-index-block-item-bg.projects-index-block-item-city .projects-index-block-item-wrapper {
  background-image: url(/assets/img/bg-city.png);
}
.projects-index-block-item-bg.projects-index-block-item-city .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #024F9C 100%);
}
.projects-index-block-item-bg.projects-index-block-item-sport .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-sport-2.png);
}
.projects-index-block-item-bg.projects-index-block-item-sport .projects-index-block-item-wrapper {
  background-image: url(/assets/img/bg-sport.png);
}
.projects-index-block-item-bg.projects-index-block-item-sport .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #E7792B 100%);
}
.projects-index-block-item-bg.projects-index-block-item-nature .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-nature-2.png);
}
.projects-index-block-item-bg.projects-index-block-item-nature .projects-index-block-item-wrapper {
  background-image: url(/assets/img/bg-nature.png);
}
.projects-index-block-item-bg.projects-index-block-item-nature .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #4fb320 100%);
}
.projects-index-block-item-bg.projects-index-block-item-culture .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-culture-2.png);
}
.projects-index-block-item-bg.projects-index-block-item-culture .projects-index-block-item-wrapper {
  background-image: url(/assets/img/bg-culture.png);
}
.projects-index-block-item-bg.projects-index-block-item-culture .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #A84295 100%);
}
.projects-index-block-item-bg.projects-index-block-item-volunteer .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-volunteer-2.png);
}
.projects-index-block-item-bg.projects-index-block-item-volunteer .projects-index-block-item-wrapper {
  background-image: url(/assets/img/bg-volunteer.png);
}
.projects-index-block-item-bg.projects-index-block-item-volunteer .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #F7AE03 100%);
}
.projects-index-block-item-bg.projects-index-block-item-science .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-science-2.png);
}
.projects-index-block-item-bg.projects-index-block-item-science .projects-index-block-item-wrapper {
  background-image: url(/assets/img/bg-science.png);
}
.projects-index-block-item-bg.projects-index-block-item-science .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #3BA6E1 100%);
}
.projects-index-block-item-photo .projects-index-block-item-top-icon {
  background-color: white;
  border: 2px solid white;
  border-radius: 50%;
}
.projects-index-block-item-photo.projects-index-block-item-city .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-city.svg);
}
.projects-index-block-item-photo.projects-index-block-item-city .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #024F9C 100%);
}
.projects-index-block-item-photo.projects-index-block-item-sport .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-sport.svg);
}
.projects-index-block-item-photo.projects-index-block-item-sport .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #E7792B 100%);
}
.projects-index-block-item-photo.projects-index-block-item-nature .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-nature.svg);
}
.projects-index-block-item-photo.projects-index-block-item-nature .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #4fb320 100%);
}
.projects-index-block-item-photo.projects-index-block-item-culture .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-culture.svg);
}
.projects-index-block-item-photo.projects-index-block-item-culture .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #A84295 100%);
}
.projects-index-block-item-photo.projects-index-block-item-volunteer .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-volunteer.svg);
}
.projects-index-block-item-photo.projects-index-block-item-volunteer .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #F7AE03 100%);
}
.projects-index-block-item-photo.projects-index-block-item-science .projects-index-block-item-top-icon {
  background-image: url(/assets/img/i-science.svg);
}
.projects-index-block-item-photo.projects-index-block-item-science .projects-index-block-item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #3BA6E1 100%);
}
.projects-index-block-item-wrapper {
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
  justify-content: space-between;
  flex: 0;
}
.projects-index-block-item-top {
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
.projects-index-block-item-top-icon {
  width: 69px;
  height: 69px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.projects-index-block-item-title {
  padding: 30px 15px 15px;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .geo-place.active .geo-place-pin {
    display: block;
  }
  .geo-place-pin {
    display: none;
  }
  .geo-popup {
    width: 300px;
    left: 50%;
    position: fixed;
    margin: 0 0 0 -150px;
    bottom: 10px;
  }
}
@media (min-width: 375px) {
  .slider-slide-text {
    width: 320px;
  }
}
@media (min-width: 768px) {
  .projects-index-nav {
    justify-content: flex-start;
  }
  .projects-index-nav .btn {
    margin-right: 7px;
  }
  .projects-index-block1 {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(1) {
    left: 0;
    width: 100%;
    height: 394px;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(1) .projects-index-block-item-top,
  .projects-index-block1 .projects-index-block-item:nth-child(1) .projects-index-block-item-title {
    padding: 15px;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(2) {
    width: 100%;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(3) {
    width: 49%;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(4) {
    width: 49%;
  }
  .projects-index-block2 {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
  }
  .projects-index-block2 .projects-index-block-item:nth-child(1) {
    width: 49%;
  }
  .projects-index-block2 .projects-index-block-item:nth-child(2) {
    width: 49%;
  }
  .projects-index-block2 .projects-index-block-item:nth-child(3) {
    width: 100%;
  }
  .contacts-info .row {
    margin-bottom: 0.5em;
  }
  .contacts-phone-row {
    display: flex;
    align-items: center;
  }
  .contacts-phone-title {
    margin-right: 1em;
  }
  .contacts-phone-num {
    font-size: 34px;
    line-height: 1;
  }
  .big {
    font-size: 18px;
  }
  .news-card img {
    float: left;
    margin-right: 1em;
  }
  .news-card-event .row {
    text-align: left;
  }
  .news-card-event-date {
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 500;
  }
  .news-card-event-location {
    font-size: 18px;
    margin-bottom: 0;
  }
  .about-right {
    padding: 40px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 26px;
  }
  h5 {
    font-size: 22px;
  }
  .slider-slide {
    height: 546px;
  }
  .slider-slide-text {
    text-align: left;
    width: 500px;
    top: 20px;
  }
  .slider-slide-text-title1 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .slider-slide-text-title2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
  }
  .slider-slide-text-desc {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .slider-slide-text-btn {
    margin: 0 0 40px 0;
  }
  .slider-slide-bg {
    width: 857px;
    height: 650px;
  }
  .partners-carousel .owl-nav .owl-prev {
    left: -50px !important;
  }
  .partners-carousel .owl-nav .owl-next {
    right: -50px !important;
  }
  .g-footer-row1 {
    flex-flow: row nowrap;
    align-items: flex-start;
  }
  .g-footer-cell2 {
    margin: 0 1em;
  }
}
@media (min-width: 1024px) {
  .projects-index-nav {
    justify-content: space-between;
  }
  .projects-index-nav .btn {
    margin-right: 0;
  }
  .news-card-event-date {
    font-size: 34px;
    margin-bottom: 0;
  }
  .slider-slide-text-title2 {
    font-size: 40px;
  }
  .about {
    margin-bottom: 4em;
  }
  .about-wrapper {
    position: relative;
  }
  .about-left {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-right {
    background: #1F5874;
    color: white;
    padding: 90px 0 80px 60px;
    position: absolute;
    right: 0;
    width: 1000px;
    max-width: 1000px;
    margin-right: -680px;
  }
  .about-right-quote {
    font-style: italic;
    font-weight: 200;
    width: 250px;
  }
  .about-right-quote:before {
    content: "";
    display: block;
    background: url(/assets/img/i-quote.svg) no-repeat center/contain;
    width: 40px;
    height: 40px;
    position: relative;
    left: -20px;
    top: 10px;
  }
  .about-right-author {
    width: 250px;
    font-size: 12px;
    font-weight: 100;
    text-align: right;
  }
}
@media (min-width: 1280px) {
  .projects-index-block1 {
    display: table;
    width: 100%;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(1) {
    width: 555px;
    height: 555px;
    float: left;
    margin-right: 15px;
    overflow: hidden;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(2) {
    float: left;
    width: 540px;
    height: 263px;
    margin-bottom: 15px;
    overflow: hidden;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(3) {
    float: left;
    width: 262px;
    min-height: 250px;
    height: 250px;
    margin-right: 15px;
    overflow: hidden;
  }
  .projects-index-block1 .projects-index-block-item:nth-child(4) {
    float: left;
    width: 263px;
    min-height: 250px;
    height: 250px;
    overflow: hidden;
  }
  .projects-index-block2 {
    display: table;
    width: 100%;
  }
  .projects-index-block2 .projects-index-block-item:nth-child(1) {
    float: left;
    width: 270px;
    height: 263px;
    margin-right: 15px;
    overflow: hidden;
  }
  .projects-index-block2 .projects-index-block-item:nth-child(2) {
    float: left;
    width: 270px;
    height: 263px;
    margin-right: 15px;
    overflow: hidden;
  }
  .projects-index-block2 .projects-index-block-item:nth-child(3) {
    width: 540px;
    height: 263px;
    float: left;
    margin-right: 0;
    overflow: hidden;
  }
  .about-right-quote {
    width: 300px;
  }
  .about-right-author {
    width: 300px;
  }
  .slider-slide-text-title2 {
    font-size: 44px;
  }
  .g-footer-row1 {
    flex-flow: row nowrap;
  }
}
.news-filter {
  display: grid;
  align-items: center;
  justify-content: end;
  grid-template-columns: 1fr 1fr 1fr;
}
.news-header {
  display: flex;
  gap: 10rem;
}
@media (max-width: 1023px) {
  .news-header {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 479px) {
  .news-filter {
    grid-template-columns: 1fr;
  }
}

.contacts-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  text-align: center;
}
.contacts-body a {
  color: #575757;
}
@media (max-width: 1023px) {
  .contacts-body {
    grid-template-columns: 1fr;
  }
}
.contacts-item {
  position: relative;
  border-radius: 2rem;
  border: 2px solid #00868F;
  padding: 3rem 2rem 2rem;
  font-weight: bold;
}
.contacts-item p {
  font-size: 1.25em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .contacts-item p {
    font-size: 1em;
  }
}
.contacts-item-mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  grid-row: 1/3;
  grid-column: 2/3;
}
@media (max-width: 767px) {
  .contacts-item-mail p {
    font-size: 0.75em;
  }
}
@media (max-width: 1023px) {
  .contacts-item-mail {
    grid-row: auto;
    grid-column: auto;
    order: 2;
  }
}
.contacts-item-mail > * {
  width: 100%;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  gap: 2rem;
  padding-bottom: 0.75rem;
}
.contacts-item-mail > *:not(:last-child) {
  border-bottom: 2px solid #00868F;
}
.contacts-item-mail a {
  color: #00868F;
  text-decoration: underline;
}
.contacts-item:after {
  content: "";
  position: absolute;
  text-align: center;
  margin: 0 auto;
  top: -2rem;
  left: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  border: 2px solid #00868F;
  border-radius: 9999px;
  fill: white;
  background-size: auto 2rem;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
}
.contacts-i-phone:after {
  background-image: url("/assets/img/i-contacts-phone.svg");
}
.contacts-i-mail:after {
  background-image: url("/assets/img/i-contacts-mail.svg");
}
.contacts-i-attention:after {
  background-image: url("/assets/img/i-contacts-attention.svg");
}
.contacts-press p {
  padding: 0 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contacts-press p {
    padding: 0 2.5rem;
  }
}

.splash-title-text {
  font-size: 1.5em;
  margin: 0 20px;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
  position: absolute;
  top: 30px;
  display: block;
  width: 60px;
  height: 60px;
}

.bg-darkgreen {
  background-color: #00313C !important;
}

.bg-green {
  background-color: #00868F !important;
}

ul.marks-heart {
  list-style-type: none;
}
ul.marks-heart li {
  display: flex;
  align-items: center;
}
ul.marks-heart li:before {
  content: "";
  display: inline-block;
  height: 0.6em;
  margin: auto 0;
  background: url("/assets/img/i-heart-green.svg") no-repeat;
  background-size: contain;
  padding-left: 1.25em;
}

.volunteer-direction {
  border-radius: 15px;
  border: 3px solid #00868F;
  overflow: hidden;
  padding: 2rem;
  font-weight: bold;
  aspect-ratio: 4/1;
}
.volunteer-direction:not(:last-child) {
  margin-bottom: 1.5rem;
}
.volunteer-direction:nth-child(3n) {
  border: none;
  background-color: #00868F;
  color: white;
}
.volunteer-direction:nth-child(3n) .title {
  color: #77DCBD;
}
.volunteer-direction:nth-child(4n) {
  border-color: #77DCBD;
}
.volunteer-direction:nth-child(6n) {
  border: none;
  background-color: #77DCBD;
  color: #575757;
}
.volunteer-direction:nth-child(6n) .title {
  color: #575757;
}
.volunteer-direction:nth-child(7n) {
  border: none;
  background-color: #00313C;
  color: white;
}
.volunteer-direction:nth-child(7n) .title {
  color: #77DCBD;
}
@media (max-width: 767px) {
  .volunteer-direction {
    padding: 1rem;
    aspect-ratio: initial;
  }
}
.volunteer-direction img {
  height: 100%;
}
@media (max-width: 767px) {
  .volunteer-direction img {
    width: 100%;
  }
}
.volunteer-direction .spec-val {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  height: 100%;
}
@media (max-width: 767px) {
  .volunteer-direction .spec-val {
    flex-direction: column;
  }
}

.peoples .people-card {
  padding: 1rem;
  max-width: 320px;
}
.peoples .owl-item img {
  border-radius: 9999px;
  border: 3px solid #C95844;
}
.peoples .owl-item:nth-child(2n+1) img {
  border-color: #00868F;
}
.peoples .owl-item:nth-child(3n+1) img {
  border-color: #77DCBD;
}
.peoples .owl-item:nth-child(4n+1) img {
  border-color: #00868F;
}
.peoples .owl-item:nth-child(5n+1) img {
  border-color: #00313C;
}

.splash-bg {
  position: relative;
  margin-bottom: 8rem;
}
.splash-bg::after {
  content: "";
  background-color: #00868F;
  background-position-y: calc(100% + 5rem);
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0;
  bottom: -4rem;
  z-index: -1;
}
.splash-bg.bg-lightcyan::after {
  content: "";
  background-color: #77DCBD;
  background-position-y: calc(100% + 5rem);
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0;
  bottom: -4rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .splash-bg {
    margin-bottom: 0;
  }
  .splash-bg::after {
    background-color: transparent !important;
  }
}

.ludi-projects.cards-block .owl-stage .owl-item {
  padding: 0 0.5rem;
}

.splash-grid {
  padding: 1rem;
  align-items: center;
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
  background-color: #77DCBD;
}
@media (min-width: 640px) {
  .splash-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1024px) {
  .splash-grid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1280px) {
  .splash-grid {
    padding: 2rem 6rem;
  }
}

.excursion-about b {
  color: #00868F;
}
.excursion-about a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .excursion-expressions-text {
    grid-column: 1/6;
    margin-top: 4rem;
    margin-left: -10rem;
    color: white;
    padding: 2rem 4rem 2rem 7.5rem;
    background-color: #00868F;
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }
}

p a {
  text-decoration: underline;
}

.subject-title {
  font-weight: bold;
  font-size: 28px;
  display: flex;
  gap: 1rem;
  align-items: center;
  text-transform: lowercase;
}
.subject-title img {
  width: 60px;
}

.project-subjects {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .project-subjects {
    grid-template-columns: 1fr;
  }
}

.ambassadors-desc {
  gap: 0;
  color: white;
}
.ambassadors-desc > * {
  padding: 30px 40px;
  overflow: hidden;
}
.ambassadors-desc > *:nth-child(1) {
  background: #00868F;
}
.ambassadors-desc > *:nth-child(2) {
  background: #00313C;
}
.ambassadors-desc > *:nth-child(2) h2::after {
  background-color: white;
}
.ambassadors-desc h2 {
  font-size: 22px;
  color: #77DCBD;
}

.main-block {
  padding: 2rem;
  align-items: center;
  color: white;
  text-transform: uppercase;
  background-color: #00868F;
}
.main-block h1 {
  color: white;
}
.main-block-image {
  display: none;
  width: 100%;
}
.main-block-image img {
  object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main-block {
    display: grid;
    grid-template-columns: 3fr 2fr;
    padding: 2rem 5rem 2rem 2rem;
  }
  .main-block-image {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .main-block {
    background-image: url("/assets/img/main-page/dec-arrow.svg");
    background-size: 15%;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: calc(15% + 2.5rem);
  }
}

ul.marker-green ::marker {
  color: #00868F;
}

.projectsiframe {
  min-height: 228px;
  height: 100%;
}

.nskv-directors {
  display: grid;
}
.nskv-directors ._head {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 480px) {
  .nskv-directors ._head {
    flex-direction: column;
  }
}
.nskv-directors ._image {
  width: 7.5rem;
  height: 7.5rem;
  min-width: 7.5rem;
  min-height: 7.5rem;
  border-radius: 9999px;
  border: 2px solid;
}
.nskv-directors .card-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 1rem;
  border: 2px solid #00868F;
  padding: 1.5rem;
}
.nskv-directors p {
  font-weight: bold;
  margin-bottom: 0;
}

:root {
  --primary: #00868F;
  --secondary: #FF7843;
  --green-dark: #00313C;
  --cyan: #00868F;
  --cyan-light: #77DCBD;
  --orange: #C95844;
}

.sibur-colored.projectsiframe {
  min-height: 228px;
  height: 100%;
}

.tayga {
  margin-top: 40px;
}

.tayga .title {
  color: #008283;
}

.tayga-dir {
  display: flex;
  margin-bottom: 40px;
}

.tayga-dir .text-block {
  margin-left: 15px;
}

@media (max-width: 480px) {
  .tayga-dir {
    flex-wrap: wrap;
  }
  .tayga-dir .text-block {
    margin-left: 0;
    margin-top: 15px;
  }
}
.partnerimage {
  min-height: 1px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.projects-item-text-title {
  min-height: 30px;
}

.directions-item-city .directions-item-title, .projects-item-city .projects-item-text-icon {
  background-image: url(/assets/img/new/city.svg);
}

.directions-item-nature .directions-item-title, .projects-item-nature .projects-item-text-icon {
  background-image: url(/assets/img/new/eco.svg);
}

.directions-item-volunteer .directions-item-title, .projects-item-volunteer .projects-item-text-icon {
  background-image: url(/assets/img/new/volonteer.svg);
}

.directions-item-sport .directions-item-title, .projects-item-sport .projects-item-text-icon {
  background-image: url(/assets/img/new/sport.svg);
}

.directions-item-science .directions-item-title, .projects-item-science .projects-item-text-icon {
  background-image: url(/assets/img/new/science.svg);
}

.directions-item-culture .directions-item-title, .projects-item-culture .projects-item-text-icon {
  background-image: url(/assets/img/new/culture.svg);
}

.directions-item-inclusion .directions-item-title, .projects-item-inclusion .projects-item-text-icon {
  background-image: url(/assets/img/new/inclusion.svg);
}

.directions-item-city .directions-item-detail, .colored.city h5,
.projects-card-city h1, .projects-card-city h2,
.projects-card-city .projects-card-info-text a, .projects-card-city .infograph strong {
  color: #E76880;
}

.directions-item-culture .directions-item-detail, .colored.culture h5,
.projects-card-culture h1, .projects-card-culture h2,
.projects-card-culture .projects-card-info-text a, .projects-card-culture .infograph strong {
  color: #C1B3D5;
}

.directions-item-volunteer .directions-item-detail, .colored.volunteer h5,
.projects-card-volunteer h1, .projects-card-volunteer h2,
.projects-card-volunteer .projects-card-info-text a, .projects-card-volunteer .infograph strong {
  color: #FFC600;
}

.directions-item-nature .directions-item-detail, .colored.nature h5,
.projects-card-nature h1, .projects-card-nature h2,
.projects-card-nature .projects-card-info-text a, .projects-card-nature .infograph strong {
  color: #8FBB1F;
}

.directions-item-science .directions-item-detail, .colored.science h5,
.projects-card-science h1, .projects-card-science h2,
.projects-card-science .projects-card-info-text a, .projects-card-science .infograph strong {
  color: #5BBFEC;
}

.directions-item-sport .directions-item-detail, .colored.sport h5,
.projects-card-sport h1, .projects-card-sport h2,
.projects-card-sport .projects-card-info-text a, .projects-card-sport .infograph strong {
  color: #ED915F;
}

.directions-item-inclusion .directions-item-detail, .colored.inclusion h5,
.projects-card-inclusion h1, .projects-card-inclusion h2,
.projects-card-inclusion .projects-card-info-text a, .projects-card-inclusion .infograph strong {
  color: #76C0BF;
}

.iconbg-culture, .projects-index-nav .btn-culture {
  background: #C1B3D5 !important;
}

.iconbg-nature, .projects-index-nav .btn-nature {
  background: #8FBB1F !important;
}

.iconbg-sport, .projects-index-nav .btn-sport {
  background: #ED915F !important;
}

.iconbg-volunteer, .projects-index-nav .btn-volunteer {
  background: #FFC600 !important;
}

.iconbg-city, .projects-index-nav .btn-city {
  background: #E76880 !important;
}

.iconbg-science, .projects-index-nav .btn-science {
  background: #5BBFEC !important;
}

.iconbg-inclusion, .projects-index-nav .btn-inclusion {
  background: #76C0BF !important;
}

.iconbg-sport > .d-flex,
.iconbg-volunteer > .d-flex,
.iconbg-city > .d-flex,
.iconbg-science > .d-flex,
.iconbg-nature > .d-flex,
.iconbg-culture > .d-flex,
.iconbg-inclusion > .d-flex {
  max-height: 70px;
}

.news-city {
  border-color: #E76880 !important;
}

.news-culture {
  border-color: #C1B3D5 !important;
}

.news-volunteer {
  border-color: #FFC600 !important;
}

.news-priroda {
  border-color: #8FBB1F !important;
}

.news-sport {
  border-color: #ED915F !important;
}

.news-nauka {
  border-color: #5BBFEC !important;
}

.news-inclusion {
  border-color: #76C5C5 !important;
}

html, body {
  font-family: Noah-Free, sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.stats .numbers, .stats .desc {
  font-size: 18px;
}

.g-footer-cell2-menu a {
  font-size: 14px;
}

@media (min-width: 768px) {
  h5 {
    font-size: 34px;
  }
}
.news-splash-title-block {
  width: 150px;
}

.news-splash-title-text {
  max-width: 100px;
}

.prjbtntext, .news-splash-title-text {
  font-size: 16px;
  line-height: 0.9;
}

.stats .numbers .num {
  font-size: 34px;
  white-space: nowrap;
}

.section-block {
  margin-bottom: 30px;
}

.projects-item-text {
  min-height: 230px;
}

.projects-item-text-icon {
  top: -30px;
}

.projects-item-text-title {
  padding-top: 15px;
}

.projects-item-text-detail {
  position: absolute;
  bottom: 0;
  left: 35%;
}

.projects-item-text-desc {
  padding-top: 10px;
}

.projects-item-city .projects-item-text {
  background-image: url(/assets/img/new/spec_main/new-bg-city.png);
}

.projects-item-nature .projects-item-text {
  background-image: url(/assets/img/new/spec_main/new-bg-eco.png);
}

.projects-item-volunteer .projects-item-text {
  background-image: url(/assets/img/new/spec_main/new-bg-volonteer.png);
}

.projects-item-sport .projects-item-text {
  background-image: url(/assets/img/new/spec_main/new-bg-sport.png);
}

.projects-item-culture .projects-item-text {
  background-image: url(/assets/img/new/spec_main/new-bg-culture.png);
}

.projects-item-science .projects-item-text {
  background-image: url(/assets/img/new/spec_main/new-bg-science.png);
}

.projects-item-inclusion .projects-item-text {
  background-image: url(/assets/img/new/spec_main/new-bg-inclusion.png);
}

.section-block {
  margin-bottom: 0;
  margin-top: 20px;
}

.owl-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto !important;
}

.stats {
  width: 100%;
  margin-bottom: 3em;
  background-color: #00313C;
  color: white;
}
.stats .inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
}
@media (max-width: 768px) {
  .stats .inner {
    grid-template-columns: 1fr;
  }
}
.stats .numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 14px;
  background-color: #00868F;
  padding: 20px 0;
}
.stats .numbers .num-block {
  padding: 10px 40px;
}
.stats .numbers.one-line {
  padding: 0;
}
.stats .numbers.one-line .num-block {
  padding: 30px 40px;
}
@media (min-width: 768px) {
  .stats .numbers .info.wide {
    max-width: 340px;
  }
}
@media screen and (min-width: 768px) {
  .stats .numbers.md-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.stats .num {
  font-weight: bold;
  font-size: 44px;
  color: #77DCBD;
  line-height: 1;
  margin-right: 7px;
  margin-bottom: 5px;
}
.stats .info {
  min-width: 120px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .stats .info {
    max-width: 220px;
  }
}
.stats .desc {
  font-size: 14px;
  line-height: 25px;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  align-items: center;
}
.stats .desc a {
  text-decoration: underline;
}

.employees-contest-desc {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media (max-width: 768px) {
  .employees-contest-desc {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.section-block > h2 {
  margin-bottom: 0.2rem;
}

.desc > img {
  display: none !important;
}

.cards-block .card-inner .name {
  font-weight: 500;
}

.cards-block .card-inner img {
  width: 100%;
  height: auto;
}

.cards-block .card-inner .desc {
  font-size: 18px;
}

.owl-stage {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.owl-item > .card-inner {
  flex-basis: 100%;
}

.slider-slide {
  width: 100%;
}

.projects-index-nav .btn {
  width: 16.6666666667%;
  border-radius: 0;
  border: 0;
  white-space: normal;
  height: 65px;
  margin: 0;
  line-height: 1.2;
  color: white;
  border: none;
  margin-bottom: 7px;
  display: flex;
  justify-content: left;
  flex: 1;
  padding: 8px 14px;
}

.pagination .page-item .page-link {
  width: 40px;
}

.projects-index-nav {
  margin-top: 0;
  margin-bottom: 20px;
}

.projects-index-block-item-photo2 .projects-index-block-item-bottom {
  position: absolute;
  display: flex;
  bottom: 0;
  width: 100%;
  align-items: center;
}

.projects-index-block-item-wrapper {
  position: relative;
}

.projects-index-block-item-bottom-title {
  width: 90%;
  display: inline-flex;
  justify-content: left;
  align-items: center;
}

.projects-icon-wrapper {
  width: 10%;
  display: inline-flex;
}

.elem-projects-icon {
  width: 100%;
}

.prjbtntext {
  font-size: 16px;
}

.projects-icon {
  width: 40px;
}

.quote {
  font-size: 16px;
}

.cards-block .card-inner .additional {
  font-weight: 500 !important;
}

.projects-splash-title-block {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 300px;
  min-height: 70px;
  border-radius: 0;
  padding: 20px;
}

.projects-index-nav {
  justify-content: normal;
}

@media screen and (max-device-width: 990px) {
  .projects-index-nav .btn {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  h4 {
    font-size: 22px;
  }
}
.contest-stages-item-text-date {
  font-weight: 900;
}

#header-search {
  margin-right: 20px;
}

.news-background {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-grey {
  background-color: #efefef;
  padding: 20px;
  min-height: 180px;
}

.main-elems-inner {
  padding: 1.5rem 2rem;
}

.main-elems-inner > p {
  font-size: 18px;
}

.geo-list {
  margin-top: 1rem;
}

.news-item, .news .row, .news {
  margin-bottom: 0;
}

.geo-place.active .geo-place-pin {
  background: url(/assets/img/pin.svg) no-repeat;
}

/* ЗДЕСЬ НАДО ПРОВЕРЯТЬ */
.directions-item:last-child {
  margin-bottom: 0px;
}

/* .directions-item {
    min-height: 250px;
    margin-bottom: 0px;
} */
.text-white {
  color: white;
}

.mb-20 {
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .peoples .people-card {
    width: 100%;
  }
}
.stats .numbers .info, li, p, .stats .desc, .projects-index-block-item-bottom-title, .geo-list-item {
  font-size: 18px;
}

h5, .col-md-4 > h2, .col-md-3 > h2 {
  color: #8FBB1F;
}

.projects-index-block-item-photo2 .projects-index-block-item-bottom {
  background: #8FBB1F;
}

.peoples .people-card .info .desc:first-letter {
  text-transform: capitalize;
}

.cards-block .card-inner .location {
  font-weight: 410;
  text-align: justify;
  min-height: 230px;
}

.owl-nav {
  position: absolute;
  top: calc(50% - 60px);
  width: 100%;
}

.cards-block .card-inner .info > *:last-child {
  display: initial;
}

.cards-block .card-inner .name {
  min-height: 80px;
}

.owl-nav .owl-prev {
  background: white url(/assets/img/i-slider-l.svg) no-repeat center !important;
  background-size: 50% !important;
  border-radius: 9999px;
  left: -50px;
}
@media (max-width: 1024px) {
  .owl-nav .owl-prev {
    left: -10px;
  }
}

.owl-nav .owl-next {
  background: white url(/assets/img/i-slider-r.svg) no-repeat center !important;
  background-size: 50% !important;
  border-radius: 9999px;
  right: -50px;
}
@media (max-width: 1024px) {
  .owl-nav .owl-next {
    right: -10px;
  }
}

.owl-nav .owl-next {
  width: 60px;
  height: 60px;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.ludi-projects {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}

/*
@media (min-width: 768px) {
    .cards-block .card-inner:last-child:first-child {
        min-height: 630px;
    }
}
*/
.slider-slide-wrapper .slider-side-left {
  margin-top: 25% !important;
  width: 100% !important;
  margin-left: 30% !important;
}

.projects-index-block-item-bottom-title {
  font-weight: 300;
  color: white;
}

.projects-index-block-item-wrapper {
  min-height: 340px;
}

/*.projects-index-block-item-bottom-title {
    height: 150px;
}*/
/*FLAG*/
.projects-index-block-item-bottom-title > b {
  font-size: 24px;
  color: white;
  font-weight: 500 !important;
  display: block;
  margin-bottom: 10px;
}

.projects-index-block-item-wrapper {
  background-size: cover;
}

.fs-24 {
  font-size: 24px;
}

.projects-index-block-item-bottom-title {
  display: block;
}

.contest-theme-items .directions {
  background: rgba(255, 255, 255, 0.85);
}

.container .card-header a {
  border-radius: 0px !important;
  border: 2px solid #FFC600 !important;
}

.container .card-header a:hover {
  background-color: transparent !important;
  color: #4A4A4A !important;
}

.projects-index-block-item-bottom-title {
  /*height: auto !important;
  max-height: 30%; */
  /*FLAG*/
  line-height: 1.1;
}

.projects-card-ava {
  background-position: center center;
}

.directions-item-city-w .directions-item-title {
  background-image: url(/assets/img/new/city-w.svg);
}

.directions-item-nature-w .directions-item-title {
  background-image: url(/assets/img/new/nature-w.svg);
}

.directions-item-donate-w .directions-item-title {
  background-image: url(/assets/img/new/hand-w.svg);
}

.directions-item-author-w .directions-item-title {
  background-image: url(/assets/img/new/covid-w.svg);
}

.directions-item-title {
  background-position: 15px;
}

.contest-small-desc {
  min-height: 240px;
}

.projects-card-ava {
  background-position: top center;
}

.nice-select {
  border-radius: 0;
  border: solid 3px #008283;
}

.greenbg:hover, .greybg:hover, .orangebg:hover {
  text-decoration: none;
}

.greenbg {
  display: block;
  padding: 30px;
  background: #8FBB1F;
}

.greybg {
  display: block;
  padding: 30px;
  background: #cccccc;
}

.orangebg {
  display: block;
  padding: 30px;
  background: #FFC600;
}

.new-btn-green {
  min-width: 200px;
  min-height: 60px;
  background-color: #008283;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.peoples .people-card .info {
  text-align: center;
  padding: 10px 0 0;
}
.peoples .people-card .info .name {
  color: #00868F;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0.5rem 0;
}

.directions-item-desc {
  min-height: auto;
  margin-bottom: 0px;
}

.directions-item-title {
  background-position: 0px;
}

.directions {
  margin-bottom: 0px;
}

.fond-item a {
  background: none;
  padding: 0;
  color: black;
  text-decoration: underline;
  font-weight: bold;
}

.fed-fonds-items-list .fonds-segment .fond-item {
  margin: 5px 0 10px 45px;
}

.fonds-items-list .fonds-city-item {
  max-width: none;
}

.fed-fonds-items-list {
  display: flex;
}
@media (max-width: 768px) {
  .fed-fonds-items-list {
    flex-flow: column;
  }
}

.fed-fonds-items-list .fonds-segment {
  margin: 0;
  margin-bottom: 20px;
}

.fed-fonds-items-list .fonds-segment .fond-segment-title {
  color: #00868F;
  font-weight: bold;
}

.text-grey {
  color: #575757;
}

.logoshelp {
  width: 100%;
}

.help-found {
  height: 150px;
}

.container .card-header a {
  color: #575757;
  background: none;
}

.container .card-header a.collapsed {
  background: #FFC600 !important;
  border: 1px solid #979797;
  color: white;
  font-weight: 900;
}

.fonds-items-list .fonds-city-item {
  margin-top: 20px;
}

.fonds-page {
  min-height: auto;
}

.v-help-icons {
  background-size: 40px;
  background-repeat: no-repeat;
}

.form-control {
  border-radius: 0;
}

textarea {
  border: 1px solid #ced4da;
}

.g-menu .navbar-nav .nav-item .nav-link {
  padding: 0.5rem;
  text-align: center;
}

.g-menu .navbar-nav .nav-item {
  width: 20%;
}

.g-menu .navbar-nav .nav-item-bet {
  display: none;
}

.projects-card-ava {
  min-height: 460px;
}

.directions-item-detail {
  position: absolute;
  bottom: 0;
}

.tobolsk-people-item-title-name {
  font-weight: bold;
  margin-bottom: 7px;
  text-align: center;
}

.tobolsk-people-item-title-position {
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  color: #4A4A4A;
  opacity: 1;
}

.tobolsk-project-image {
  height: 195px !important;
}

.tobolsk-projects-item-text-votes {
  bottom: 15px !important;
}

/* .directions-item:nth-child(-n+3) {
    min-height: 330px;
}
.directions-item:nth-child(n+3) {
    min-height: 300px;
} */
.g-menu .navbar-nav .nav-item:hover .nav-link, .g-menu .navbar-nav .nav-item.active .nav-link {
  border-bottom: none;
}

.g-menu .navbar-nav .nav-item .nav-link {
  line-height: 1.5;
}

.container .card-header a.collapsed {
  background: #008283 !important;
}

.container .card-header a {
  border: 2px solid #008283 !important;
}

.contest-faq-items {
  margin-bottom: 1em;
}

.main-city-news {
  position: absolute;
  bottom: 20px;
}

.main-about-program {
  margin: 1.5rem 2rem;
}

@media (max-width: 376px) {
  .directions-item-desc {
    height: auto;
    margin-bottom: 20px;
  }
  .geo-popup {
    bottom: 55%;
  }
  .stats .numbers .num-block {
    margin-right: 5px;
  }
  .stats .numbers .num {
    min-width: 100px;
  }
  .peoples .people-card {
    margin: 0;
  }
  .partners-carousel .owl-nav .owl-next {
    right: -30px;
  }
}
@media (min-width: 576px) {
  .actions-page-podpis {
    position: absolute;
    right: 10px;
    bottom: 10px;
    text-align: right;
  }
}
.m-0.p-4.iconbg-science, .m-0.p-4.iconbg-volunteer {
  height: 100%;
}

.contest-stages-item-text-title {
  font-size: 18px;
  font-weight: 900;
}

.main-about-program > p, .main-about-program > .quote, .main-elems-inner > p, .directions-item-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: black;
}

.directions-item-title, .main-elems-inner > h4 {
  font-size: 22px;
}

#konov_main_img {
  background-size: cover;
  background-image: url("/assets/img/konovdv.jpg");
  background-position: center center;
}

/*
.peoples .people-card {
    margin: auto;
}
*/
.peoples {
  margin: 0px;
}

.projects-item {
  margin: auto;
}

.geo-list-item {
  width: 16%;
  text-align: center;
}

@media (max-width: 576px) {
  .geo-list-item {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .stats .numbers.two-columns .num-block {
    width: calc(50% - 10px);
  }
}
@media (max-width: 991px) {
  .stats .numbers .num-block {
    width: 100%;
  }
  .stats .numbers .num-block.empty {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .stats h5 {
    font-size: 22px;
  }
  .stats .numbers {
    align-items: center;
  }
  .geo-place-pin {
    height: 15px;
    width: 15px;
    display: block;
    background-size: contain;
  }
}
.directions-item-desc {
  color: #4A4A4A;
}

.owl-prev > span, .owl-next > span {
  display: none !important;
}

.geo-place.active .geo-place-pin {
  background: url(/assets/img/new/icons/pin-orange.svg) no-repeat;
  background-size: contain;
}

.partners-list-item {
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  min-height: 150px;
  min-width: 200px;
  background-position: center center;
}

b {
  font-weight: 600;
}

.bold {
  font-weight: 900;
}

.modal-open {
  padding-right: 0 !important;
}

.mobile-menu a.dropdown-item {
  color: black;
}

@media (max-width: 767px) {
  .projects-card-ava {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 260px;
  }
  .projects-index-nav .btn {
    width: 100% !important;
  }
}
@media (max-width: 576px) {
  .projects-card-ava {
    min-height: 180px;
  }
}
@media (max-width: 320px) {
  .projects-card-ava {
    min-height: 135px;
  }
}
.projects-index-block-item-bottom {
  height: 20%;
  flex: 1;
}

.sibur-main {
  color: #008283;
}

.sibur-volonteer {
  color: #FFC600;
}

.geo-place-balahna {
  margin: 0% -29%;
}

.geo-place-kingisepp {
  margin: -8% -40%;
}

.geo-place-tumen {
  margin: 10% -20%;
}

.geo-place-novokuib {
  margin: 4% -24%;
}

.geo-place-kursk {
  margin: 0% -45%;
}

.geo-place-krasnodar {
  margin: 15% -47%;
}

.tobolsk-projects-item-text-votes {
  left: 18px;
}

.news-background {
  background-position: center;
}

.news-card-carousel-item {
  width: 100%;
}

.g-footer-cell1-sibur {
  /*background: url(/assets/img/logos/sibur.png) no-repeat center/cover;*/
  background: url(/assets/img/logos/logo-sibur.png) no-repeat center/100%;
  width: 140px;
  height: 60px;
  margin-bottom: 0px;
}

.g-footer-cell3-fhd {
  /*background: url(/assets/img/logos/fhd.png) no-repeat center/cover;*/
  background: url(/assets/img/logos/logo-fhd.png) no-repeat center/100%;
  /*background-size: auto 24px;
  height: 60px;*/
  top: 0px;
  position: inherit;
  width: 100px;
  margin-left: 15px;
}

.interactive {
  margin-left: 5px;
}

table.form-table th, table.form-table td {
  border: 1px solid #008283;
}

table.form-table th {
  background: white;
}

.thead {
  background: rgba(0, 130, 131, 0.6705882353) !important;
}

.form-question-label {
  padding-left: 10px;
}

.projects-card-ava {
  margin-top: 0;
}

.g-menu {
  margin-bottom: 0;
}

.g-header-auth-menu-right {
  position: initial;
  top: 0;
  height: auto;
}

.g-header-auth-submenu {
  top: 105%;
}

.header-logos {
  justify-content: start;
}

.footer-text {
  justify-content: start;
}

#home-image {
  background-image: url("/assets/img/new/headers/banner_2022_1.jpg");
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.ambassadors {
  width: 60%;
  max-width: 100%;
}

@media (max-width: 576px) {
  .ambassadors {
    width: 95% !important;
  }
  .header-logos {
    justify-content: center !important;
  }
  .g-footer-cell1-bottom-social {
    justify-content: center !important;
  }
  .footer-text {
    justify-content: center;
    text-align: center;
  }
  #home-image {
    background-image: url("/assets/img/new/headers/banner_2022_1.jpg") !important;
    height: 200px !important;
  }
}
.back {
  top: 0;
}

.mobile-menu.active {
  width: 90%;
}

.owl-item {
  justify-content: center !important;
}

.cards-block .card-inner {
  justify-content: center !important;
}

.modal-dialog .form {
  max-width: 90%;
}

.specproject_images {
  height: 228px;
  background-size: cover;
}

.projects-direction {
  margin: 2rem 0;
}
.projects-direction a:hover {
  color: #00868F;
  text-decoration: none;
}
.projects-direction-tile {
  width: 15rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: -1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 0 9999px 9999px 0;
  color: white;
  font-weight: bold;
  text-transform: lowercase;
  font-size: 1.25em;
}
.projects-direction-tile:hover {
  color: white;
}
@media (min-width: 1024px) {
  .projects-direction-tile {
    margin-left: -3rem;
  }
}
@media (min-width: 1280px) {
  .projects-direction-tile {
    margin-left: -6rem;
  }
}
.projects-direction-tile img {
  width: 2.5rem;
}

.projects-list-card {
  width: 100%;
  margin: 0 1rem 2rem;
  padding: 1rem;
  border: 3px solid;
  border-radius: 1rem;
  color: black;
}
.projects-list-card .project-card-image img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}
.projects-list-card .project-card-title {
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 0.5rem;
}

.map {
  margin-top: 4rem;
  display: flex;
  width: 100%;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .map {
    flex-direction: column;
    gap: 0;
  }
}
.map-list {
  margin-right: 5rem;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  font-weight: bold;
}
.map-list ::marker {
  color: #00868F;
  font-size: 1.2em;
}
.map-list-item {
  cursor: pointer;
}
@media (max-width: 480px) {
  .map-list-item {
    font-size: 0.8em;
  }
}
@media (max-width: 1024px) {
  .map-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .map-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 320px) {
  .map-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.map-image {
  width: 100%;
}
@media (max-width: 1024px) {
  .map-image {
    padding: 0 5rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 480px) {
  .map-image {
    padding: 0 1rem;
  }
}
.map-wrapper {
  width: 100%;
}
.map-place:hover, .map-place.active {
  fill: #DA4E39;
  background-color: #DA4E39;
}
.map-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 25rem;
  padding: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.map-popup-city {
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #00868F;
  font-weight: bold;
  font-size: 1.25em;
}
.map-popup-city:after {
  content: none !important;
}
.map-popup-desc {
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .map-popup {
    width: 100%;
  }
  .map-popup-city {
    font-size: 1em;
  }
  .map-popup-desc {
    font-size: 0.8em;
  }
}

.social-director {
  display: grid;
  height: fit-content;
  grid-template-columns: 2fr 1fr;
}
.social-director-image {
  height: 100%;
}
.social-director-image img {
  width: 100%;
}
.social-director-image-mobile {
  display: none;
  justify-self: end;
  grid-row: 1;
  width: 20rem;
  aspect-ratio: 1/1;
}
.social-director-image-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 1280px) {
  .social-director-image {
    display: none;
  }
  .social-director-image-mobile {
    display: block;
  }
}
@media (max-width: 1280px) {
  .social-director-desc {
    display: flex;
    justify-content: right;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .social-director-desc {
    align-items: end;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1280px) {
  .social-director {
    grid-template-columns: 1fr;
  }
}
.social-director p {
  font-size: 1.1em;
  margin: 0;
}
.social-director-text {
  height: fit-content;
  margin-top: auto;
}
.social-director-quote {
  background: #77DCBD;
  padding: 2.5rem 5rem;
  position: relative;
}
@media (max-width: 480px) {
  .social-director-quote {
    padding: 2.5rem 2rem;
  }
}
.social-director-quote ::after, .social-director-quote ::before {
  content: "";
  position: absolute;
  width: 4rem;
  aspect-ratio: 1;
  background: url("/ambassadors/img/i-quote.svg") no-repeat center;
  z-index: 2;
}
.social-director-quote ::before {
  top: -2.5rem;
  left: 2.5rem;
}
.social-director-quote ::after {
  bottom: -2rem;
  right: 2.5rem;
  transform: scale(-1, 1);
}
@media (max-width: 1280px) {
  .social-director-quote ::after {
    content: none;
  }
}
.social-director-name {
  color: white;
  background-color: #00313C;
  text-align: right;
  padding: 5rem 4rem;
  width: fit-content;
  justify-self: end;
  transform: skew(45deg) translateX(17rem);
}
.social-director-name-wrapper {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .social-director-name-wrapper {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .social-director-name-wrapper {
    width: 100%;
  }
}
.social-director-name-inner {
  transform: skew(-45deg);
  margin-right: 15rem;
}
@media (max-width: 1024px) {
  .social-director-name-inner {
    width: 100%;
    transform: none;
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .social-director-name {
    padding: 1rem 1rem;
    transform: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

/*# sourceMappingURL=new_style.css.map */
