body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

@media screen and (max-width: 640px) {
  .title {
    font-size: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .note-bg-blue {
    font-size: 16px;
    color: #fff;
    padding: 25px 30px;
    background: rgba(36, 56, 118, 0.8);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04), 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
  }
}

.btn-primary {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  background: #283A70;
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  padding-right: 45px;
  white-space: nowrap;
  display: inline;
  margin: 0 auto;
  text-align: center;
  position: relative;
  white-space: nowrap;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  overflow-y: scroll;
  z-index: 10;
  padding: 25px 0;
}
.sidebar__substrate {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.sidebar__overlay {
  max-width: 250px;
  background: linear-gradient(269.86deg, #283A70 0%, #193381 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 10px 10px 0px;
  position: relative;
  padding: 25px 0;
}
.sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__list li {
  margin: 10px 0;
}
.sidebar__list li a {
  display: block;
  font-size: 18px;
  color: #fff;
  padding: 10px 30px;
  border-radius: 0px 10px 10px 0px;
  text-align: center;
}
.sidebar__list li a.active {
  background: rgba(255, 255, 255, 0.2);
}
.sidebar__call {
  font-size: 14px;
  color: #263973;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04), 0px 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0px 10px 10px 0px;
  padding: 20px 5px;
  margin-bottom: 33px;
}
.sidebar__call img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.sidebar__app {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__app p {
  font-size: 13px;
  text-align: center;
  color: #F4F5F7;
}
.sidebar__app .mobile-apps-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar__app .mobile-apps-wrap a:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
  .about-elumity .page_content {
    display: flex;
    flex-direction: column;
  }
  .about-elumity .page_content img {
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    order: -1;
    margin-bottom: 0;
  }
  .about-elumity .page_content p:first-of-type {
    border-radius: 0px 0px 12px 12px;
    padding: 13px 30px;
  }
  .about-elumity .page_content h4 {
    color: #000;
    font-weight: 700;
    font-size: 18px;
  }
  .about-elumity .page_content p:not(:first-of-type) {
    color: #000;
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .about-elbasy .task-cards-wrap .card p {
    font-size: 18px;
    color: #1F3F68;
    min-height: auto;
  }
}

@media screen and (max-width: 768px) {
  .teachers .card-teachers.card-online-lesson {
    margin-top: 90px;
  }
  .teachers .card-teachers.card-online-lesson::after {
    width: 360px;
    height: 550px;
    right: -40px;
  }
  .teachers .card-teachers.card-birge-oqy::after {
    width: 520px;
    height: 360px;
    left: -200px;
  }
  .teachers .card-teachers.card-community::after {
    width: 405px;
    height: 315px;
    margin-top: -310px;
    right: -30px;
  }
}
@media screen and (max-width: 640px) {
  .teachers .card-teachers h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .teachers .card-teachers .card-content {
    font-size: 18px;
  }
  .teachers .card-teachers .card-more {
    font-size: 14px;
  }
  .teachers .card-teachers.card-online-lesson {
    padding: 200px 40px 40px 40px;
    margin-top: 120px;
  }
  .teachers .card-teachers.card-online-lesson::after {
    width: 220px;
    height: 340px;
    right: 20%;
    top: -120px;
  }
  .teachers .card-teachers.card-birge-oqy {
    padding: 200px 40px 40px 40px;
    margin-top: 90px;
  }
  .teachers .card-teachers.card-birge-oqy::after {
    width: 360px;
    height: 260px;
    left: 0;
    top: -70px;
  }
  .teachers .card-teachers.card-community {
    padding: 200px 40px 40px 40px;
    margin-top: 70px;
  }
  .teachers .card-teachers.card-community::after {
    width: 305px;
    height: 235px;
    margin-top: -340px;
    right: 10%;
  }
}

.contacts__map img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts h4 {
  font-size: 30px;
  color: #283A70;
  text-align: center;
}
.contacts p {
  text-align: center;
}
.contacts .card {
  border: none;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08), 0px 4px 4px rgba(0, 0, 0, 0.04);
  padding: 31px 60px;
  margin: 31px 0;
  border-radius: 15px;
  z-index: 1;
  position: relative;
}
.contacts .card h4 {
  margin-bottom: 30px;
}
.contacts .card p {
  color: #05458C;
  text-align: left;
}
.contacts .card p:last-child {
  margin-bottom: 0;
}
.contacts .card p a {
  font-size: 22px;
  color: #E24C4B;
  padding: 11px;
  display: inline-block;
  margin: 0 10px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04), 0px 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.contacts .card-call, .contacts .card-dialog {
  padding-left: 240px;
}
.contacts .card-call::before, .contacts .card-dialog::before {
  content: "";
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}
.contacts .card-call::before {
  background-image: url("../images/card-call.svg");
}
.contacts .card-dialog::before {
  background-image: url("../images/card-dialog.svg");
}
@media screen and (max-width: 768px) {
  .contacts__map {
    order: -1;
    margin-bottom: -40px;
  }
  .contacts .card {
    padding: 30px;
  }
  .contacts .card-call::before, .contacts .card-dialog::before {
    width: 48px;
    height: 48px;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background-color: #fff;
    background-size: 75%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04), 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
  }
  .contacts .card-nomobile {
    width: 100%;
    box-shadow: none;
    padding: 0;
  }
  .contacts .card-nomobile p.call, .contacts .card-nomobile p.dialog {
    display: flex;
    align-items: center;
  }
  .contacts .card-nomobile p.call::before, .contacts .card-nomobile p.dialog::before {
    content: "";
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
    margin-right: 20px;
  }
  .contacts .card-nomobile p.call::before {
    background-image: url("../images/card-call.svg");
  }
  .contacts .card-nomobile p.dialog::before {
    background-image: url("../images/card-dialog.svg");
  }
  .contacts .card p a {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}

.oneNews {
  width: 100%;
  padding-bottom: 30px;
}
.oneNews img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.oneNews__banner {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.oneNews__loading {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oneNews__content {
  width: 100%;
  display: none;
}
.oneNews__info {
  margin-bottom: 20px;
}
.oneNews__footer {
  margin: 70px 0;
}
.oneNews__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 40%;
}
.oneNews__nav p {
  color: #273A72;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.oneNews__nav p::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #273A72;
  margin-right: 10px;
}
.oneNews__nav h4 {
  margin: 15px 0;
}
.oneNews__nav .btn-primary {
  padding: 14px 30px !important;
}
.oneNews__nav--next {
  text-align: right;
  align-items: flex-end;
}
.oneNews__nav--next p {
  flex-direction: row-reverse;
}
.oneNews__nav--next p::before {
  margin-right: 0;
  margin-left: 10px;
  border-right: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #273A72;
}
.oneNews .info {
  font-size: 14px;
  line-height: 16px;
  color: #5F5F5F;
}
.oneNews .info .views i {
  display: inline-block;
  height: 10px;
  width: 24px;
  background-image: url("../images/views-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.oneNews .info .comments i {
  display: inline-block;
  height: 14px;
  width: 24px;
  margin-bottom: -2px;
  background-image: url("../images/comments-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #283A70;
  border-color: #283A70 transparent #283A70 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wrapper-block-new {
  font-family: "Noto Sans", sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper-block-new .navbar-new-container {
  box-shadow: 0px 4px 12px 0px rgba(12, 68, 204, 0.1);
  position: relative;
}
.wrapper-block-new .navbar-new {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper-block-new .navbar-new-left {
  display: flex;
  gap: 41px;
}
.wrapper-block-new .navbar-new-lang {
  color: #283A70;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.wrapper-block-new .navbar-new-lang-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: -35px;
  z-index: 10;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.wrapper-block-new .navbar-new-lang-dropdown ul {
  margin: 0;
  padding: 0 20px;
}
.wrapper-block-new .navbar-new-lang-dropdown ul li {
  color: #283A70 !important;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
}
.wrapper-block-new .open-list {
  display: block;
}
.wrapper-block-new .social-links {
  display: flex;
  gap: 13px;
}
.wrapper-block-new .social-links a {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.wrapper-block-new .social-links a:after {
  content: "";
  position: absolute;
  background-color: rgba(40, 58, 112, 0.3);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.wrapper-block-new .social-links a:hover:after {
  opacity: 1;
}
.wrapper-block-new .navbar-new-right {
  display: flex;
  gap: 21px;
  align-items: center;
}
.wrapper-block-new .phone-number {
  color: #283A70;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  background: #F5F8FA;
  padding: 0 24px;
  border-radius: 43px;
  overflow: hidden;
  position: relative;
}
.wrapper-block-new .phone-number:after {
  content: "";
  position: absolute;
  background-color: rgba(40, 58, 112, 0.3);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.wrapper-block-new .phone-number:hover:after {
  opacity: 1;
}
.wrapper-block-new .main-sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.wrapper-block-new .main-sidebar {
  background-color: #283A70;
  color: #FFF;
  position: fixed;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 20;
  padding: 40px 25px 120px;
  left: -420px;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.wrapper-block-new .main-sidebar.show {
  transform: translateX(420px);
}
@media (min-width: 420px) {
  .wrapper-block-new .main-sidebar {
    width: 420px;
  }
}
.wrapper-block-new .main-sidebar .main-sidebar-list {
  margin: 0;
  margin-top: 45px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item {
  margin: 0;
  padding: 10px 15px;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item .docs-dropdown {
  gap: 1px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  max-height: 0;
  overflow: hidden;
  transition: 1s ease max-height;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item .docs-dropdown li {
  padding-left: 20px;
  padding-right: 20px;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item .docs-dropdown li:last-child {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item .main-sidebar-docs-arrow {
  transition: transform 0.5s ease;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item .dropdown-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding-left: 20px;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item.menu-dropdown.open > .dropdown-items,
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item .dropdown-submenu.open > .dropdown-items {
  max-height: 500px;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item.menu-dropdown.open > a > .main-sidebar-docs-arrow,
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item .dropdown-submenu.open > a > .main-sidebar-docs-arrow {
  transform: rotate(180deg);
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #FFF;
}
.wrapper-block-new .main-sidebar .main-sidebar-list .main-sidebar-item a span {
  padding-top: 2px;
}
.wrapper-block-new .main-sidebar .main-sidebar-list li.active {
  background-color: #7280AB;
  border-radius: 25px;
}
.wrapper-block-new .main-sidebar-docs-arrow {
  margin-left: auto;
}
.wrapper-block-new .main-sidebar-item.main-sidebar-item-docs.active {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.wrapper-block-new .main-sidebar-item.main-sidebar-item-docs.active a {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}
.wrapper-block-new .main-sidebar-item.main-sidebar-item-docs.active-docs > .docs-dropdown {
  display: flex;
  flex-direction: column;
  list-style: none;
  max-height: 500px;
}
.wrapper-block-new .main-sidebar-item.main-sidebar-item-docs.active-docs .main-sidebar-docs-arrow {
  transform: rotate(180deg);
}
.wrapper-block-new .main-sidebar-item-docs ul {
  margin: 0;
  padding: 0;
}
.wrapper-block-new .main-sidebar-item-docs ul li {
  margin: 0;
  padding: 10px 5px;
  background-color: #334579;
}
.wrapper-block-new .main-sidebar-item-docs ul li svg {
  margin-right: 10px;
}
.wrapper-block-new .sidebar-projects {
  padding: 0;
  padding-left: 20px;
  margin: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.wrapper-block-new .sidebar-projects li, .wrapper-block-new .sidebar-projects a {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #8A99AF;
  white-space: nowrap;
}
.wrapper-block-new .sidebar-projects li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: initial;
}

.sidebar-btn {
  cursor: pointer;
}

.hidden {
  display: none;
}

.navbar-new-left-mobile {
  display: none;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1216px;
  }
}
@media screen and (max-width: 1000px) {
  .wrapper-block-new .navbar-new-right, .wrapper-block-new .navbar-new-left {
    display: none;
  }
  .wrapper-block-new .sidebar-projects {
    grid-template-columns: 1fr;
  }
  .navbar-new-left-mobile {
    display: flex;
    width: 100%;
  }
  .navbar-new-left-mobile .navbar-new-lang {
    margin-left: 41px;
  }
  .navbar-new-left-mobile .sidebar-btn {
    margin-left: auto;
  }
}
.footer-new {
  background: #F5F8FA;
  padding-top: 64px;
  font-family: "Noto Sans", sans-serif;
}
.footer-new .footer-new-top {
  display: flex;
  gap: 100px;
  margin-bottom: 57px;
}
.footer-new .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 250px);
  row-gap: 10px;
  -moz-column-gap: 0;
       column-gap: 0;
}
.footer-new .footer-list li {
  padding: 0;
  margin: 0;
  padding-left: 60px;
}
.footer-new .footer-list li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #283A70 !important;
  text-decoration: none;
  cursor: pointer;
}
.footer-new .footer-list li a.active-link, .footer-new .footer-list li a:hover {
  font-weight: 700;
}
.footer-new .footer-list li:nth-child(1) {
  padding-left: 0px;
}
.footer-new .footer-list li:nth-child(5) {
  padding-left: 0px;
}
.footer-new .border-line {
  width: 100%;
  height: 1px;
  background: #283A70;
}
.footer-new .footer-new-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-new .footer-new-contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-new .footer-new-contacts a {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.footer-new .footer-new-contacts a:after {
  content: "";
  position: absolute;
  background-color: rgba(40, 58, 112, 0.3);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.footer-new .footer-new-contacts a:hover:after {
  opacity: 1;
}
.footer-new .phone-number {
  color: #FFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  background: #283A70;
  padding: 0 24px;
  border-radius: 10px;
  transition: opacity 0.5s;
}
.footer-new .phone-number:hover {
  opacity: 0.9;
}
.footer-new .footer-new-copyright {
  color: #283A70;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.footer-new-contacts-mobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  .main-contacts-block {
    margin-bottom: 20px !important;
  }
  .footer-new {
    padding-top: 25px;
  }
  .footer-new .footer-new-top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 46px;
  }
  .footer-new .footer-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-new .footer-list li {
    padding-left: 0;
  }
  .footer-new .footer-new-contacts {
    display: none;
  }
  .footer-new .footer-new-bottom {
    justify-content: center;
  }
  .footer-new .footer-new-copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #283A70;
  }
  .footer-new .footer-new-contacts-mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .footer-new .footer-new-contacts-mobile .phone-number {
    background-color: #EAEEF2;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    color: #283A70;
  }
}
.main-news-block {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 80px;
}

.main-news-left {
  width: 73%;
  height: 484px;
  padding: 65px 36px;
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
.main-news-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 58, 112, 0.5);
  border-radius: 25px;
  z-index: 0;
}
.main-news-left .main-news-link-all {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFF;
  position: relative;
  z-index: 10;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid #FFF;
  display: inline-flex;
  width: 120px;
  transition: all 0.5s;
}
.main-news-left .main-news-link-all:hover {
  scale: 1.1;
}
.main-news-left .main-news-link-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 57px;
  color: #FFF;
  position: relative;
  z-index: 10;
  width: 70%;
  margin-top: 100px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.main-news-left .main-news-link-more {
  position: relative;
  z-index: 10;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #283A70;
  background-color: #FFF;
  border-radius: 80px;
  padding: 14px 20px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 30px;
  transition: scale 0.5s;
}
.main-news-left .main-news-link-more:hover {
  scale: 1.1;
}

.main-news-right {
  width: 26%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-news-right .main-news-right-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 240px;
  border-radius: 25px;
}
.main-news-right .main-news-right-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #283A70;
}
.main-news-right .main-news-right-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #7280AB;
}
.main-news-right .main-news-right-all {
  color: #283A70;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 5px;
  border-bottom: 1.5px solid #283A70;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: scale 0.5s;
}
.main-news-right .main-news-right-all:hover {
  scale: 1.05;
}

.main-projects-block {
  background-color: #F1F6FA;
  padding: 25px 40px 0;
  border-radius: 25px;
  margin-bottom: 80px;
  max-height: 500px;
}
.main-projects-block .main-projects-title {
  color: #283A70;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 25px;
}
.main-projects-block .main-projects-number {
  color: #7280AB;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.main-projects-list {
  margin-top: 10px;
  padding-bottom: 30px;
}
.main-projects-list .splide__list {
  height: auto;
}
.main-projects-list .splide__arrow {
  width: 48px;
  height: 40px;
  border-radius: 14px;
  background-color: #ffffff;
  top: -80px;
}
.main-projects-list .splide__arrow:hover:not([disabled]), .main-projects-list .splide__arrow:focus:not([disabled]) {
  outline: 5px auto #FF9900;
}
.main-projects-list .splide__arrow:hover:not([disabled]) svg path, .main-projects-list .splide__arrow:focus:not([disabled]) svg path {
  fill: #FF9900;
}
.main-projects-list .splide__arrow--prev {
  left: auto;
  right: 75px;
}

.main-projects-list-item {
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  padding: 20px 38px;
  gap: 20px;
}
.main-projects-list-item img {
  max-height: 75px;
}
.main-projects-list-item p {
  color: #7280AB;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.main-projects-list-item a {
  background-color: #F1F6FA;
  border-radius: 10px;
  color: #283A70;
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  padding: 15px 40px;
  width: 100%;
  transition: background-color 0.5s;
}
.main-projects-list-item a:hover {
  background-color: rgba(40, 58, 112, 0.5);
}
.main-projects-list-item a i {
  padding-left: 12px;
}

.main-news-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-direction: column;
}

.main-news-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.main-news-top-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
}

.main-news-top-btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.015em;
  padding: 11px 27px;
  border-radius: 10px;
  background-color: #FF9900;
  height: -moz-fit-content;
  height: fit-content;
  text-decoration: none;
  color: #FFF;
  transition: all 0.5s;
}
.main-news-top-btn:hover {
  opacity: 0.9;
  scale: 1.01;
}

.main-news-top-btn:hover {
  color: #FFF;
  text-decoration: none !important;
  cursor: pointer;
}

.main-news-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.main-news-item img {
  border-radius: 10px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (min-width: 1000px) {
  .main-news-item img {
    height: 200px;
  }
}
.main-news-item .main-news-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.015em;
  color: #283A70;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.main-news-item .main-news-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7280AB;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.main-news-item .main-news-btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #00ACE6;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.5s;
}
.main-news-item .main-news-btn svg path {
  transition: fill 0.5s;
}
.main-news-item .main-news-btn:hover {
  color: #283A70;
}
.main-news-item .main-news-btn:hover svg path {
  fill: #283A70;
}

.main-initiatives-block {
  display: flex;
  justify-content: space-between;
  background-color: #F1F6FA;
  padding-top: 40px;
  padding-bottom: 50px;
  margin-bottom: 80px;
}
.main-initiatives-block .main-initiatives-left {
  width: 49%;
}
.main-initiatives-block .main-initiatives-left img {
  border-radius: 25px;
}
.main-initiatives-block .main-initiatives-right {
  width: 49%;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-initiatives-block .main-initiatives-right .main-initiatives-right-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
}
.main-initiatives-block .main-initiatives-right .main-initiatives-right-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #667399;
}

.main-partners-block {
  margin-bottom: 80px;
}
.main-partners-block .main-partners-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
  margin-bottom: 25px;
}
.main-partners-block .main-partners-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 25px;
}
.main-partners-block .main-partners-list::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}
.main-partners-block .main-partners-list::-webkit-scrollbar-thumb {
  background-color: #D2D8E8;
  border-radius: 10px;
  border: 3px solid rgba(0, 0, 0, 0);
}
.main-partners-block .main-partners-list::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.main-partners-block .main-partners-item {
  box-shadow: 0px 0px 4px 0px rgba(12, 68, 204, 0.1019607843);
  border-radius: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: calc(50% - 15px);
  height: 152px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1000px) {
  .main-partners-block .main-partners-item {
    min-width: calc(25% - 15px);
  }
}
.main-partners-block .main-partners-item img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 105px;
  width: 100%;
}
.main-partners-block .main-partners-item:after {
  content: "";
  position: absolute;
  background-color: rgba(40, 58, 112, 0.3);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.main-partners-block .main-partners-item:hover:after {
  opacity: 1;
}

.main-contacts-block {
  margin-bottom: 150px;
}
.main-contacts-block .main-contacts-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  box-shadow: 0px 0px 4px 4px rgba(24, 92, 255, 0.0392156863);
  border-radius: 25px;
}
.main-contacts-block .main-contacts-left-line {
  width: 100%;
  height: 1px;
  background-color: rgb(213, 217, 230);
  margin: 25px 0;
}
.main-contacts-block .main-contacts-left-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
}
.main-contacts-block .main-contacts-left-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #283A70;
}
.main-contacts-block .main-contacts-left-item p {
  margin: 0;
  padding: 0;
}
.main-contacts-block .main-contacts-left-item a.social-link {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.main-contacts-block .main-contacts-left-item a.social-link:after {
  content: "";
  position: absolute;
  background-color: rgba(40, 58, 112, 0.3);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.main-contacts-block .main-contacts-left-item a.social-link:hover:after {
  opacity: 1;
}
.main-contacts-block .main-contacts-left-item.social-block {
  justify-content: center;
  cursor: pointer;
}
.main-contacts-block .main-contacts-left-item.social-block a {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.main-contacts-block .main-contacts-left-item.social-block a:after {
  content: "";
  position: absolute;
  background-color: rgba(40, 58, 112, 0.3);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.main-contacts-block .main-contacts-left-item.social-block a:hover:after {
  opacity: 1;
}
.main-contacts-block .main-contacts-left-item.social-block a rect,
.main-contacts-block .main-contacts-left-item.social-block a path {
  transition: fill 0.5s;
}
.main-contacts-block .main-contacts-left-item.social-block a:hover rect {
  fill: rgba(255, 153, 0, 0.0901960784);
}
.main-contacts-block .main-contacts-left-item.social-block a:hover path {
  fill: #FF9900;
}
.main-contacts-block .main-contacts-right {
  width: 58%;
  border-radius: 25px;
  min-height: 100%;
}
.main-contacts-block .main-contacts-right div {
  border-radius: 25px;
}
.main-contacts-block .main-contacts-right iframe {
  border-radius: 25px;
}

.contacts-new-block .main-contacts-block .main-contacts-left {
  gap: 0px;
}

.breadcrumbs-block {
  display: flex;
}
.breadcrumbs-block .breadcrumbs-block-main {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #9497A1;
}
.breadcrumbs-block .breadcrumbs-block-current {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #FF9900;
}

.about-fund-block {
  padding-top: 75px;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
  margin-top: 25px;
  margin-bottom: 25px;
}

.about-fund-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #667399;
  width: 90%;
  margin-bottom: 80px;
}

.about-fund-support-block {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.about-fund-support {
  box-shadow: 0px 4px 12px 0px rgba(12, 68, 204, 0.1019607843);
  border-radius: 25px;
  padding: 33px 28px;
  padding-right: 50px;
}

.about-fund-support-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
  margin-bottom: 5px;
}

.about-fund-support-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #667399;
  margin-top: 20px;
}

.about-fund-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.about-fund-list > div {
  cursor: pointer;
  transition: all 0.5s;
}
.about-fund-list > div:hover {
  scale: 1.05;
}

.about-fund-item-small {
  width: 31%;
  box-shadow: 0px 4px 12px 0px rgba(12, 68, 204, 0.1019607843);
  border-radius: 25px;
  padding: 46px 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-fund-block .main-projects-block {
  margin-bottom: 150px;
}

.about-fund-item-big {
  width: 35%;
  box-shadow: 0px 4px 12px 0px rgba(12, 68, 204, 0.1019607843);
  border-radius: 25px;
  padding: 46px 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-fund-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #283A70;
}

.about-fund-item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7280AB;
}

.news-new-block {
  padding-top: 75px;
}

.news-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}

.news-left {
  width: 53%;
}

.news-left-item {
  box-shadow: 0 0 4px 0 rgba(12, 68, 204, 0.1019607843);
  padding: 20px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
.news-left-item img {
  border-radius: 16px;
  max-width: 100%;
}

.news-left-item-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.015em;
  color: #7280AB;
}

.news-left-item-title {
  font-size: 18px;
  line-height: 26px;
  color: #283A70;
  word-wrap: break-word;
}

.news-wrapper-item .news-left-item-text {
  font-size: 16px !important;
  font-weight: 400;
  line-height: 24px !important;
  color: #7280AB;
  letter-spacing: normal !important;
}

.news-wrapper-item .news-left-item-text img {
    width: 100% !important;
    height: auto !important;
}

.news-wrapper-item .news-left-item-text figcaption {
    display: none !important;
}

.news-left-item-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #00ACE6;
}

.page-item.active .page-link-news {
  background-color: #283A70;
}

.page-link-news {
  border-radius: 10px;
  box-shadow: 0 0 4px 3px rgba(24, 92, 255, 0.0392156863);
  border: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.015em;
  color: #283A70;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s;
}
@media (min-width: 1000px) {
  .page-link-news {
    font-size: 20px;
    width: 44px;
    height: 44px;
  }
}

.pagination-news {
  gap: 8px;
}
@media (min-width: 1000px) {
  .pagination-news {
    gap: 20px;
  }
}

.news-right {
  width: 45%;
}

.news-filters {
  margin-bottom: 25px;
}

.search-btn {
  border-radius: 10px;
  background-color: #FF9900;
  padding: 16px 40px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.015em;
  text-align: center;
  color: #FFF;
  transition: background-color 0.5s;
}
.search-btn:hover {
  background-color: #cc7a00;
}

.news-filter-input {
  width: 100%;
  margin-right: 20px;
  position: relative;
}
.news-filter-input::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/input-glass.svg");
}
.news-filter-input input {
  width: 100%;
  height: 100%;
  border: 1px solid #BBC3D4;
  border-radius: 10px;
  padding-left: 44px;
}
.news-filter-input input:focus {
  border: 2px solid #FF9900;
  outline: none;
}

.select-project-block {
  width: 100%;
  height: 44px;
  position: relative;
  margin-top: 20px;
}
.select-project-block::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/select-project.svg");
}

.select-project {
  width: 100%;
  height: 100%;
  border: 1px solid #BBC3D4;
  border-radius: 10px;
  padding-left: 44px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #667399;
}
.select-project:focus {
  border: 2px solid #FF9900;
  outline: none;
}

.select-project-option {
  border: 1px solid red;
}

.dropdown-select {
  width: 100%;
}
.dropdown-select input {
  width: 100%;
}
.dropdown-select .dropdown-select-list {
  margin: 0;
  padding: 0 10px;
  list-style: none;
  border: 1px solid red;
  border-top: none;
  display: none;
}
.dropdown-select .dropdown-select-list li {
  margin: 0;
  padding: 0;
}

.dropdown-select-list-visible {
  display: block !important;
}

.dropdown {
  position: relative;
  width: 100%;
}

.dropdown__button {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #7E9BBD;
  border-radius: 10px;
  height: 44px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 44px;
  padding-right: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #667399;
}

.dropdown__button:focus, .dropdown__button--active {
  border: 2px solid #FF9900;
  outline: none;
}

.project-sign {
  position: relative;
}

.year-sign {
  position: relative;
}

.month-sign {
  position: relative;
}

.project-sign::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/select-project.svg");
}

.year-sign::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/select-year.svg");
}

.month-sign::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/select-month.svg");
}

.dropdown__list {
  max-height: 0;
  transition: 1s ease max-height;
  position: absolute;
  left: 0;
  top: 52px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(176, 198, 225, 0.6);
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  z-index: 29;
}

.dropdown__list--visible {
  max-height: 600px;
}

.dropdown__list-item {
  margin: 0;
  border-bottom: 0px;
  padding: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #667399;
  display: flex;
  gap: 12px;
}

.dropdown__list-item:first-child {
  border-radius: 6px 6px 0 0;
}

.dropdown__list-item:last-child {
  border-radius: 0 0 6px 6px;
  border-bottom: 1px solid #7E9BBD;
}

.dropdown__list-item:hover {
  background: #FAFAFA;
}

.dropdown__input-hidden {
  display: none;
}

.dropdown__list-item.active {
  color: #FF9900;
}
.dropdown__list-item.active .dropdown__list-item-tick-active {
  display: block;
}
.dropdown__list-item.active .dropdown__list-item-tick {
  display: none;
}

.dropdown__list-item-tick-active {
  display: none;
}

.dropdown__list-item-tick {
  display: block;
}

.dropdown__button--open svg {
  transform: rotate(180deg);
}

.filter-year-month {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.filter-project {
  margin: 20px 0;
}

.news-slider {
  height: 330px;
  border-radius: 25px;
  margin-bottom: 25px;
}
.news-slider img {
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.news-slider .carousel-indicators .active {
  background-color: #FFF;
  width: 15px;
  height: 15px;
  margin-top: 20px;
  border-radius: 50%;
}

.other-news {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}

.other-news-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.015em;
  color: #283A70;
}

.other-news-item {
  display: flex;
  gap: 20px;
}
.other-news-item-image-wrapper {
  border-radius: 6px;
  overflow: hidden;
  height: 120px;
  min-width: 200px;
  max-width: 200px;
}
.other-news-item-image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.other-news-item .other-news-item-right {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.other-news-item .other-news-item-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.015em;
  color: #7280AB;
}
.other-news-item .other-news-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.015em;
  color: #283A70;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.other-news-item .other-news-item-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #00ACE6;
  text-decoration: none;
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}

.news-wrapper-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
.news-wrapper-item .news-left-item {
  padding: 0;
  box-shadow: none;
}
.news-wrapper-item .news-left-item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
  color: #7280AB;
}
.news-wrapper-item .news-left-item-text a {
  color: #4e5b83;
}

.faq-new-block {
  padding-top: 75px;
}
.faq-new-block .faq-new-wrapper {
  display: flex;
  gap: 50px;
  width: 100%;
  margin-bottom: 150px;
}
.faq-new-block .faq-new-wrapper .filter-project {
  display: none;
}
.faq-new-block .faq-new-wrapper-left {
  width: 35%;
}
.faq-new-block .faq-sidebar-menu {
  padding: 0;
  background: none;
  list-style: none;
  box-sizing: border-box;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
}
.faq-new-block .faq-sidebar-menu li {
  padding: 20px 0;
  padding-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.faq-new-block .faq-sidebar-menu li a {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #283A70;
  text-decoration: none;
}
.faq-new-block .faq-sidebar-menu li.active-part {
  border-bottom: 1px solid #FF9900;
}
.faq-new-block .faq-sidebar-menu li.active-part a {
  color: #FF9900 !important;
}
.faq-new-block .faq-content {
  position: relative;
  z-index: 4;
  width: 65%;
}
.faq-new-block .faq-content .accordionFaq .card {
  border-radius: 10px;
  box-shadow: none;
  margin-bottom: 5px;
  border: none;
}
.faq-new-block .faq-content .accordionFaq .card .btn:after {
  left: 100%;
  transform: rotate(90deg);
}
.faq-new-block .faq-content .accordionFaq .card .btn {
  width: 100%;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #283A70;
}
.faq-new-block .faq-content .accordionFaq .card .btn[aria-expanded=true]:after {
  transform: rotate(270deg);
  transition: all 0.2s ease;
}
.faq-new-block .card-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7280AB;
}
.faq-new-block .card-body a {
  color: #283A70;
}

.contacts-new-block {
  padding-top: 75px;
}
.partners-new-block {
  padding-top: 75px;
}
.partners-new-block .partners-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #283A70;
}
.partners-new-block .partners-subtitle-line {
  width: 243px;
  height: 2px;
  background-color: #FF9900;
}
.partners-new-block .partners-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #667399;
  margin-top: 25px;
}
.partners-new-block .partners-list {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  gap: 20px;
}
.partners-new-block .partners-list nav {
  margin-bottom: 150px;
}
.partners-new-block .partners-list-item {
  box-shadow: 0 0 4px 0 rgba(12, 68, 204, 0.1019607843);
  padding: 15px 280px 20px 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 25px;
  transition: all 0.5s;
}
.partners-new-block .partners-list-item:hover {
  background-color: rgba(40, 58, 112, 0.3);
  box-shadow: none;
  text-decoration: none;
}
.partners-new-block .partners-list-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.015em;
  color: #7280AB;
}
.partners-new-block .partners-list-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.015em;
  color: #283A70;
}
.partners-new-block .partners-list-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7280AB;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.one-news-block {
  padding-top: 75px;
  padding-bottom: 100px;
}
.one-news-block .one-news-title {
  width: 90%;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
  margin-top: 10px;
  margin-bottom: 20px;
}
.one-news-block .one-news-text {
  width: 90%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.015em;
  font-family: "Noto Sans", sans-serif;
  color: #7280AB;
  margin-bottom: 20px;
}
.one-news-block .one-news-text p:last-child a {
  background-color: #FF9900;
  border-radius: 10px;
  padding: 10px;
  color: #FFF;
  cursor: pointer;
  margin-top: 40px;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.5s;
}
.one-news-block .one-news-text p:last-child a:hover {
  background-color: #cc7a00;
  text-decoration: none;
}

.members-new-block {
  padding-top: 75px;
}
.members-new-block .members-new-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #7280AB;
  margin-bottom: 80px;
  max-width: 50%;
}
.members-new-block .offers-block {
  box-shadow: 0px 4px 12px 0px rgba(12, 68, 204, 0.1019607843);
  display: flex;
  justify-content: center;
  border-radius: 25px;
  margin-bottom: 80px;
  gap: 50px;
}
.members-new-block .offers-block-back {
  padding-top: 25px;
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49%;
}
.members-new-block .offers-block-back img {
  max-width: 410px;
}
.members-new-block .offers-list-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #283A70;
}
.members-new-block .offers-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 49%;
  margin-left: 30px;
  padding: 20px 0;
  padding-right: 20px;
}
.members-new-block .offers-list ul {
  padding: 0;
  margin: 0;
  padding-left: 22px;
}
.members-new-block .offers-list ul li {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.015em;
  text-align: left;
  color: #283A70;
  margin-bottom: 15px;
}

.our-team-block {
  padding-top: 75px;
}
.our-team-block .categories-right {
  padding-bottom: 100px;
}
.our-team-block .categories-left {
  width: 29%;
}
.our-team-block .categories-left ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.our-team-block .categories-left ul li {
  padding: 10px 0;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #283A70;
  cursor: pointer;
  border-bottom: 1px solid #D2D8E8;
}
.our-team-block .categories-left .centers-leaders {
  display: none;
  padding: 10px 40px;
}
.our-team-block .categories-left .centers-leaders li {
  border-bottom: none;
}
.our-team-block .centers.active .centers-leaders {
  display: block;
}
.our-team-block .categories-left-item.centers {
  display: flex;
  flex-direction: column;
}
.our-team-block .categories-left-item.centers svg {
  transform: rotate(180deg);
}
.our-team-block .categories-left-item.centers .centers-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-team-block .categories-left-item.centers.active svg {
  transform: rotate(0deg);
}
.our-team-block .categories-left-item.active {
  color: #FF9900;
}
.our-team-block .categories-right-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 1.5s ease, height 1.5s ease;
}
.our-team-block .categories-right-content.active {
  display: flex;
  padding-top: 80px;
  opacity: 1;
  height: auto;
}
.our-team-block .categories-right-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.our-team-block .gallery-content.active {
  display: block;
  padding-top: 0;
}
.our-team-block .splide__arrow {
  border: none;
  outline: none;
  border-radius: 20px;
  height: 60px;
  width: 110px;
}
.our-team-block .splide__arrow--prev {
  top: -50px;
  left: calc(100% - 240px);
}
.our-team-block .splide__arrow--next {
  right: 0;
  top: -50px;
}
.our-team-block .categories-content-slide {
  padding: 35px;
  box-shadow: 0px 4px 12px 0px rgba(12, 68, 204, 0.1019607843);
  border-radius: 25px;
  width: calc(25% - 15px);
}
.our-team-block .categories-content-slide .categories-content-img {
  height: 242px;
  border-radius: 10px;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right 0 top 15%;
  position: relative;
}
.our-team-block .categories-content-slide .categories-content-img:after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
  height: 100%;
  width: 100%;
}
.our-team-block .categories-content-slide-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  color: #283A70;
  margin-bottom: 16px;
}
.our-team-block .categories-content-slide-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7280AB;
  margin-bottom: 16px;
}
.our-team-block .categories-left-subtitle {
  font-size: 25px;
  font-weight: 700;
  line-height: 37.5px;
  color: #283A70;
  margin-bottom: 30px;
}
.our-team-block .centers-content {
  width: 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 1.5s ease, height 1.5s ease;
}
.our-team-block .centers-item.active {
  color: #FF9900;
}
.our-team-block .centers-content.active {
  display: flex;
  width: 100%;
  opacity: 1;
  height: auto;
}
.our-team-block .centers-content-wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
}
.our-team-block a {
  text-decoration: none;
  color: inherit;
}
.our-team-block .gallery-dropdown {
  display: none;
}
.our-team-block .centers-content {
  margin: 20px 0;
}
.our-team-block .gallery-block.active .gallery-dropdown {
  display: block;
  margin-top: 15px;
}
.our-team-block .gallery-content-filter-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #283A70;
}
.our-team-block .gallery-content-filter {
  max-width: 407px;
  margin-left: auto;
}
.our-team-block .filter-project {
  margin: 0;
}
.our-team-block .gallery-content .dropdown__button {
  padding-left: 12px;
}
.our-team-block .gallery-content .project-sign::before {
  display: none;
}
.our-team-block .gallery-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
}
.our-team-block .gallery-list .gallery-list-item {
  width: 49%;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  max-height: 255px;
}
.our-team-block .gallery-list .gallery-list-item::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 53px;
  right: 10px;
  top: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/gallery-img-sign.svg");
}
.our-team-block .gallery-list .gallery-list-item img {
  border-radius: 20px;
}

.main-news-right-mobile {
  display: none;
}

.main-news-bottom-mobile, .main-news-top-btn-mobile {
  display: none;
}

.news-header-mobile {
  display: none;
}

.partners-list-btn-mobile {
  display: none;
}

.about-fund-slider-mobile {
  display: none;
}

.gallery-content-filter-mobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  .members-new-block .offers-block-back {
    width: 90%;
  }
  .members-new-block .offers-list {
    width: 90%;
  }
  .about-fund-slider-mobile {
    display: block;
    margin-bottom: 30px;
  }
  .news-wrapper {
    display: block;
    margin-bottom: 40px;
  }
  .news-header-mobile {
    display: block;
  }
  .main-news-wrapper {
    margin-bottom: 40px;
  }
  .main-news-block {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .main-news-left {
    width: 100%;
    height: 297px;
    padding: 20px;
  }
  .main-news-right {
    width: 100%;
  }
  .main-news-left .main-news-link-all {
    display: none;
  }
  .main-news-left .main-news-link-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.015em;
    width: 100%;
    margin-top: 100px;
  }
  .main-news-link-more {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.015em;
  }
  .main-news-right {
    display: none;
  }
  .main-news-right-mobile {
    display: flex;
    gap: 10px;
  }
  .main-news-right-mobile img {
    width: 49%;
    border-radius: 6px;
    height: 96px;
  }
  .main-news-right-mobile .main-news-right-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #283A70;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .main-news-right-mobile .main-news-right-all {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #00ACE6;
  }
  .main-projects-block {
    padding: 0;
    background-color: #FFF;
  }
  .main-projects-block .main-projects-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
  }
  .main-projects-block .main-projects-list-item {
    min-width: 100%;
  }
  .main-news-top-btn {
    display: none;
  }
  .main-news-bottom {
    display: none;
  }
  .main-news-bottom-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .main-news-bottom-mobile .main-news-item {
    display: flex;
    justify-content: space-between;
  }
  .main-news-bottom-mobile .main-news-img {
    width: 47%;
    max-height: 100px;
  }
  .main-news-bottom-mobile .main-news-item-detail {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .main-news-bottom-mobile .main-news-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #283A70;
  }
  .main-news-bottom-mobile .main-news-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    color: #9497A1;
  }
  .main-news-top-btn-mobile {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.015em;
    padding: 11px 27px;
    border-radius: 30px;
    background-color: #FF9900;
    height: -moz-fit-content;
    height: fit-content;
    text-decoration: none;
    color: #FFF;
    margin-top: 20px;
  }
  .main-initiatives-block {
    padding: 10px 0;
    margin-bottom: 40px;
  }
  .main-initiatives-block .main-initiatives-left {
    width: 100%;
  }
  .main-initiatives-block .main-initiatives-left img {
    border-radius: 10px;
  }
  .main-initiatives-block .main-initiatives-right {
    width: 100%;
    padding-left: 0;
  }
  .main-initiatives-block .main-initiatives-right-title {
    margin: 20px 0;
  }
  .main-partners-block {
    margin-bottom: 40px;
  }
  .main-partners-block .main-partners-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .main-contacts-block .main-contacts-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .main-contacts-block .main-contacts-right {
    width: 100%;
    height: 290px;
  }
  .news-left {
    display: none;
  }
  .news-right {
    display: none;
  }
  .news-new-block {
    padding-top: 22px;
  }
  .page-title {
    text-align: center;
  }
  .news-slider {
    height: 200px;
  }
  .news-filter-input {
    margin-right: 0;
    height: 52px;
  }
  .news-filter-input::before {
    display: none;
  }
  .news-filter-input input {
    border-radius: 19px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: none;
    padding-left: 19px;
  }
  .search-btn {
    border-radius: 19px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-left: none;
    padding: 0;
    height: 52px;
    min-width: 82px;
  }
  .filter-project {
    height: 52px;
  }
  .filter-project .dropdown__button {
    height: 52px;
    display: flex;
    align-items: center;
    padding-left: 19px;
    border-radius: 19px;
  }
  .filter-project .project-sign::before {
    display: none;
  }
  .filter-year-month .dropdown__button {
    height: 52px;
    display: flex;
    align-items: center;
    padding-left: 19px;
    border-radius: 19px;
  }
  .filter-year-month .year-sign::before {
    display: none;
  }
  .filter-year-month .month-sign::before {
    display: none;
  }
  .news-left-mobile .news-left-item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    color: #7280AB;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .pagination-news {
    margin-bottom: 40px;
  }
  .other-news-mobile .other-news-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.015em;
    color: #283A70;
    margin-bottom: 30px;
  }
  .other-news-mobile .other-news-item {
    margin-bottom: 25px;
    overflow: hidden;
  }
  .other-news-mobile .other-news-item-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    height: 96px;
    min-width: 160px;
    max-width: 160px;
  }
  .other-news-mobile .other-news-item-image-wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .other-news-mobile .other-news-item .other-news-item-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    color: #7280AB;
  }
  .other-news-mobile .other-news-item .other-news-item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #283A70;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .other-news-mobile .other-news-item .other-news-item-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
  }
  .news-wrapper-item {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .news-wrapper-item .news-right {
    display: block;
    width: 100%;
  }
  .news-wrapper-item .news-left {
    display: block;
    width: 100%;
  }
  .news-new-block-item .page-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.015em;
    text-align: left;
  }
  .news-new-block-item .other-news-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.015em;
    color: #283A70;
    margin-bottom: 30px;
  }
  .news-new-block-item .other-news-item {
    margin-bottom: 25px;
  }
  .news-new-block-item .other-news-item img {
    width: 160px;
    height: 96px;
  }
  .news-new-block-item .other-news-item .other-news-item-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    color: #7280AB;
  }
  .news-new-block-item .other-news-item .other-news-item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #283A70;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news-new-block-item .other-news-item .other-news-item-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
  }
  .contacts-new-block {
    padding-top: 30px;
  }
  .main-contacts-block {
    flex-direction: column;
  }
  .members-new-block {
    padding-top: 30px;
  }
  .members-new-block .members-new-text {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .members-new-block .offers-block {
    flex-direction: column;
    box-shadow: none;
    margin-bottom: 30px;
  }
  .partners-new-block {
    padding-top: 30px;
  }
  .partners-new-block .partners-list-item {
    padding: 20px;
    border-radius: 6px;
  }
  .partners-new-block .partners-list-btn-mobile {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.015em;
    color: #FFF;
    background-color: #FF9900;
    border: none;
    padding: 15px;
    border-radius: 25px;
    margin: 30px 0;
  }
  .partners-new-block .partners-list nav {
    margin-bottom: 30px;
  }
  .one-news-block {
    padding: 30px 0;
  }
  .one-news-block .one-news-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.015em;
    color: #283A70;
  }
  .one-news-block .one-news-link {
    width: 100%;
    text-align: center;
    border-radius: 20px;
  }
  .faq-new-block {
    padding-top: 30px;
  }
  .faq-new-block .faq-new-wrapper {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .faq-new-block .faq-new-wrapper .filter-project {
    display: block;
  }
  .faq-new-block .faq-new-wrapper-left {
    width: 100%;
  }
  .faq-new-block .faq-content {
    width: 100%;
  }
  .faq-new-block .faq-content .accordionFaq .card .btn {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.015em;
    color: #283A70;
  }
  .faq-new-block .card-header {
    padding-left: 0;
  }
  .faq-new-block .faq-new-wrapper-left {
    display: none;
  }
  .faq-new-block .dropdown__list {
    z-index: 100;
  }
  .about-fund-block {
    padding-top: 30px;
  }
  .about-fund-block .about-fund-text {
    margin-bottom: 30px;
  }
  .about-fund-block .about-fund-support-block {
    flex-direction: column;
  }
  .about-fund-block .about-fund-support-block img {
    width: 100%;
    height: 100%;
  }
  .about-fund-block .about-fund-list {
    display: none;
  }
  .about-fund-block .about-fund-slider-mobile {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 80px;
  }
  .about-fund-block .about-fund-slider-mobile .about-fund-item-small {
    width: 100%;
    padding: 25px;
  }
  .about-fund-block .about-fund-slider-mobile .about-fund-item-big {
    width: 100%;
    padding: 25px;
  }
  .about-fund-block .about-fund-slider-mobile .splide__arrow--prev {
    left: 0;
    top: -40px;
    width: 48px;
    height: 40px;
    border-radius: 14px;
    background-color: #F0F9FF;
  }
  .about-fund-block .about-fund-slider-mobile .splide__arrow--prev svg {
    fill: #002B4E;
  }
  .about-fund-block .about-fund-slider-mobile .splide__arrow--next {
    left: 60px;
    top: -40px;
    width: 48px;
    height: 40px;
    border-radius: 14px;
    background-color: #F0F9FF;
  }
  .about-fund-block .about-fund-slider-mobile .splide__arrow--next svg {
    fill: #002B4E;
  }
  .about-fund-block .main-projects-block {
    margin-bottom: 40px;
  }
  .our-team-block {
    padding-top: 30px;
  }
  .our-team-block .categories-left {
    width: 100%;
  }
  .our-team-block .categories-right-wrapper {
    flex-direction: column;
  }
  .our-team-block .categories-content-slide {
    width: 100%;
  }
  .our-team-block .centers-content-wrapper {
    flex-direction: column;
  }
  .our-team-block .categories-right-content.active {
    padding-top: 30px;
  }
  .our-team-block .gallery-content-filter {
    display: none;
  }
  .our-team-block .gallery-content-filter-mobile {
    display: block;
  }
}
.gallery-block {
  padding-top: 75px;
}
.gallery-block .gallery-header {
  display: flex;
  gap: 210px;
}
.gallery-block .folders-list {
  flex-grow: 1;
}
.gallery-block .filters-block {
  display: flex;
  /*justify-content: space-between;*/
}
.gallery-block .filter-project {
  width: 33.33%;
  padding-left: 10px;
  padding-right: 15px;
}
.gallery-block .project-gallery-block {
  width: 100%;
  height: 330px;
  background-image: url("/images/folder.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 30px;
  position: relative;
}
.gallery-block .project-title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #060D01;
  margin-bottom: 9px;
  cursor: pointer;
}
.gallery-block .project-title:hover {
  text-decoration: none;
}
.gallery-block .photo-number {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #A0A0A0;
  margin-bottom: 9px;
}
.gallery-block .photos-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.gallery-block .photos-list img {
  border-radius: 5px;
}
.gallery-block .photos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-block .folders-photos-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-block .download-btn {
  padding: 0;
  margin: 0;
  border: none;
  background: #FFF;
  position: absolute;
  right: 30px;
  top: 17px;
}
.gallery-block .project-sign::before {
  display: none;
}
.gallery-block .dropdown__button {
  padding: 12px;
}

.gallery-block .gallery-list {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;

}

.gallery-block .gallery-list .gallery-list-item {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    height: 200px;
    overflow: hidden;
}
.gallery-block .gallery-list .gallery-list-item::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 53px;
  right: 10px;
  top: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/gallery-img-sign.svg");
}
.gallery-block .gallery-list .gallery-list-item img {
  border-radius: 20px;
}
.gallery-block .download-sign {
  position: absolute;
  width: 56px;
  height: 53px;
  right: 10px;
  top: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/gallery-img-download.svg");
    z-index: 100;
}

.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #283A70;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
.loader-wrapper {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.loader-wrapper.hide {
  animation: fadeout 0.5s linear forwards;
}

.whatsapp-btn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}

.reports-block {
  max-width: 300px;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
@keyframes fadeout {
  100% {
    opacity: 0;
    display: none;
    z-index: -999;
  }
}
@media screen and (max-width: 1000px) {
  .gallery-block .gallery-header {
    gap: 10px;
    flex-direction: column;
  }
  .gallery-block .filters-block {
    flex-direction: column;
  }
  .gallery-block .filter-project {
    width: 100%;
  }
  .gallery-block .folders-photos-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-block .photos-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-block .project-gallery-block {
    width: 100%;
    margin-bottom: 40px;
  }
  .whatsapp-btn {
    bottom: 100px;
    right: 30px;
  }
}
@media screen and (max-width: 640px) {
  .projects .page_content {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .projects .card {
    padding: 20px;
    padding-top: 120px;
    background-position: 50% 20px !important;
  }
  .projects .card.project-mynbala {
    padding-top: 160px;
    background-size: 170px;
  }
  .projects .card.project-birge-oqy {
    padding-top: 140px;
  }
  .projects .card .go-button-wrap {
    height: 90px;
    margin: 0 auto;
  }
  .projects .card:last-child {
    margin-bottom: 0;
  }
}

.tasks .card {
  margin: 30px 0 !important;
}
.tasks .card h3 {
  font-size: 22px;
  text-align: center;
}
.tasks .card h3 + p {
  font-size: 18px;
  text-align: center;
}
.tasks .card ul {
  list-style-type: disc;
  padding-left: 0;
}
.tasks .card p, .tasks .card li {
  font-size: 18px;
  color: #303030;
}
.tasks .card.card-mission::after {
  bottom: -70px !important;
  right: 5% !important;
  z-index: 2;
}

@media screen and (max-width: 640px) {
  .form-search .btn-search {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .form-search .btn-search span {
    display: none;
  }
  .form-search .btn-search::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url("../images/search-white.svg") no-repeat center;
    background-size: contain;
  }
  .form-search .filter {
    padding: 10px 0;
  }
  .form-search .filter-buttons {
    text-align: center;
  }
  .form-search .filter-buttons .btn {
    margin: 5px 0;
  }
}

body.sidebar-open {
  overflow: hidden;
}
body.sidebar-open:after {
  background-color: rgba(40, 58, 112, 0.5);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9;
}

.project-filter {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #7E9BBD;
    border-radius: 10px;
    height: 44px;
    padding: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #667399;
}

.filter-project-gallery {
    padding: 0px;
    position: relative;
}

.search-filter-btn {
    border-radius: 10px;
    background-color: #FF9900;
    border: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: center;
    color: #FFF;
    transition: background-color 0.5s;
    height: 44px;
    padding: 0 20px;
}

.filters-form {
    display: flex;
    gap: 20px;
    padding-left: 12px;
}

/*.filter-project-gallery input[type="month"] {*/
/*    position: relative;*/
/*    padding-right: 2.5rem;*/
/*}*/

.filter-project-gallery input[type="month"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 2.5rem;
    height: 1.5rem;
    cursor: pointer;
    margin-left: 0;
    opacity: 0;
}

.filter-project-gallery input[type="month"] {
    background: url('../images/calendar.png') no-repeat right 0.5rem center;
    background-size: 20px 20px;
}

.reset-filter-btn {
    border-radius: 10px;
    background-color: #FF9900;
    border: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: center;
    color: #FFF;
    transition: background-color 0.5s;
    height: 44px;
    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-filter-btn:hover {
    color: #FFF;
    text-decoration: none;
}
