*:not(img),
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  touch-action: manipulation;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
  overflow-x: hidden;
}
html,
body,
pre {
  padding: 0;
  margin: 0;
}
a {
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
}
button,
select {
  text-transform: none;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
pre {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  padding: 0;
}
[hidden],
#template,
template {
  display: none;
}
html,
body {
  margin: 0;
  padding: 0 !important;
  width: 100%;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
  font-family: "Geologica", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: #0d111f;
}
body {
  position: relative;
  display: flex;
  max-width: 100vw;
  flex-direction: column;
  overflow-x: hidden;
  background: #f3f6f9;
}
.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1708px;
  margin: 0 auto;
  padding: 0 15px;
}
.header {
  position: relative;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 16px 36px 0 rgba(0, 0, 0, 0.02);
  z-index: 2;
}
.header__container {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .header__container {
    gap: 10px;
  }
}
.header__logo {
  display: block;
  cursor: pointer;
}
.header__logo img {
  display: block;
  width: 83px;
}
@media screen and (max-width: 1440px) {
  .header__logo img {
    width: 52px;
  }
}
.nav {
  flex-grow: 1;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0px;
  display: flex;
  gap: 0 15px;
}
@media screen and (max-width: 1620px) {
  .nav__list {
    gap: 0 15px;
  }
}
@media screen and (max-width: 1620px) {
  .nav__list {
    gap: 0 15px;
  }
}
@media screen and (max-width: 1320px) {
  .nav__list {
    display: none;
  }
}
.nav-dropdown__trigger {
  font-family: "Montserrat";
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}
@media screen and (max-width: 1720px) {
  .nav-dropdown__trigger {
    font-size: 12px !important;
    padding: 5px 5px;
  }
}
.nav-dropdown__trigger.active {
  opacity: 0.5;
}
.nav-dropdown__body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: all 0.3s linear;
}
.nav-dropdown__body.active {
  opacity: 1;
  pointer-events: unset;
  transform: translateY(0px);
}
.nav-dropdown__container {
  padding-top: 15px;
  padding-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
.sub-menu__head {
  margin-bottom: 13px;
}
.sub-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sub-menu__item {
  margin-bottom: 5px;
}
.sub-menu__item:last-child {
  margin-bottom: 0;
}
.sub-menu__link {
  display: block;
  font-size: 14px;
  color: inherit;
  transition: all 0.3s linear;
}
.sub-menu__link:hover,
.sub-menu__link:active {
  opacity: 0.5;
}
.controls {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.controls__bvi {
  width: 54px;
  height: 54px;
  padding: 0;
  background: #eff5fb;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 540px) {
  .nav-mobile__content .controls__bvi {
    display: none;
  }
}
.controls__bvi svg {
  display: block;
}
.search {
  height: 54px;
  background: #eff5fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 15px;
}
@media screen and (max-width: 540px) {
  .search {
    display: none;
  }

  .nav-mobile__content .search {
    display: flex;
    background: #eff5fb;
  }
}
.search__input {
  height: 100%;
  flex-grow: 1;
  background: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  padding: 0;
  width: 0;
  transition: all 300ms linear;
}
.search__input::-webkit-search-decoration,
.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-results-button,
.search__input::-webkit-search-results-decoration {
  appearance: none;
  -webkit-appearance: none;
}
.search.active .search__input {
  width: 150px;
}
@media screen and (max-width: 440px) {
  .search.active .search__input {
    width: 100px;
  }
}
.search svg {
  display: block;
  cursor: pointer;
}
.lang {
  position: relative;
  background: #eff5fb;
  border-radius: 12px;
  cursor: pointer;
}
.lang.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.lang__selected {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  padding: 0 15px;
}
.lang__selected svg {
  transition: all 0.3s linear;
  transform-origin: center;
  transform: rotateZ(0deg);
}
.lang.active .lang__selected svg {
  transform: rotateZ(180deg);
}
.lang__list {
  position: absolute;
  right: 0;
  top: 100%;
  background: #eff5fb;
  width: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
  height: 0;
}
.lang.active .lang__list {
  height: auto;
}
.lang__item {
  display: block;
  font-weight: 500;
  padding: 5px 15px;
  color: inherit;
}
.lang__item:hover {
  background: rgba(0, 0, 0, 0.1);
}
.nav-mobile {
  display: none;
}
@media screen and (max-width: 1320px) {
  .nav-mobile {
    display: flex;
  }
}
.controls__menu {
  width: 54px;
  height: 54px;
  padding: 0;
  background: #eff5fb;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  display: flex;
}
.controls__menu svg {
  display: block;
}
.nav-mobile__content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-image: url("../image/mobile-ornaments.452d507448ec.svg");
  background-size: 42% auto;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #3355DE;
  transition: all 0.3s linear;
  transform: translateX(100%);
  opacity: 0;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
.nav-mobile__content.active {
  transform: translateX(0%);
  opacity: 1;
}
.nav-mobile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .nav-mobile__head {
    gap: 15px;
  }
}
.nav-mobile .controls__bvi {
  background: #FFFFFF;
}
.nav-mobile .search {
  background: #FFFFFF;
}
.nav-mobile .lang {
  background: #FFFFFF;
}
.nav-mobile .lang__list {
  background: #FFFFFF;
}
.nav-mobile__close {
  width: 54px;
  height: 54px;
  padding: 0;
  background: #eff5fb;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  display: flex;
}
.nav-mobile__close svg {
  display: block;
}
.nav-mobile__body {
  padding: 44px 0;
  overflow-y: auto;
  scrollbar-color: #9fb3ff transparent;
  scrollbar-width: thin;
}
.nav-mobile__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-mobile__item {
  margin-bottom: 40px;
}
.nav-mobile__item:last-child {
  margin-bottom: 0px;
}
.nav-mobile-dropdown__trigger {
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
}
.nav-mobile-dropdown__body {
  height: 0;
  overflow: hidden;
}
.nav-mobile-dropdown.active .nav-mobile-dropdown__body {
  height: auto;
}
.nav-mobile-dropdown__container {
  padding-top: 15px;
  padding-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
@media screen and (max-width: 900px) {
  .nav-mobile-dropdown__container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 720px) {
  .nav-mobile-dropdown__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 440px) {
  .nav-mobile-dropdown__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.nav-mobile .sub-menu__head {
  color: #fff;
}
.nav-mobile .sub-menu__link {
  color: #fff;
}
.section-head__tag {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: #555e83;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.section-head__tag span {
  width: 13px;
  height: 13px;
  background: #555e83;
  transform-origin: center;
  transform: rotateZ(45deg);
}
.section-head__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 720px) {
  .section-head__title {
    font-size: 32px;
  }
}
.footer {
  position: relative;
  background: #fff;
}
.footer .container {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 780px) {
  .footer .container {
    flex-direction: column;
    gap: 50px;
  }
}
.footer__content {
  padding-top: 100px;
  width: 50%;
  padding-bottom: 100px;
}
@media screen and (max-width: 1720px) {
  .footer__content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 780px) {
  .footer__content {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__map {
  position: relative;
  width: 50%;
}
.footer__map iframe {
  height: 100%;
  min-height: 427px;
}
@media screen and (max-width: 780px) {
  .footer__map {
    width: 100%;
  }
}
.footer-nav {
  margin-bottom: 31px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .footer-nav {
    margin-top: 39px;
  }
}
.footer-nav__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1720px) {
  .footer-nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav__list {
    flex-direction: column;
    align-items: center;
  }
}
.footer-nav__link {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500%;
  color: #555e83;
  line-height: 1.2;
}
.footer-contacts__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 31;
  line-height: 1.28;
  margin-bottom: 31px;
}
@media screen and (max-width: 480px) {
  .footer-contacts__title {
    text-align: center;
  }
}
.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555e83;
  margin-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .footer-contacts a  {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer-contacts a svg {
  flex-shrink: 0;
}
.footer-contacts a:nth-child(2) {
  margin-bottom: 31px;
}
.footer-contacts a:last-child {
  margin-bottom: 0;
}
#map {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: 2.1;
}
.home-banner {
  position: relative;
  max-height: 100vh;
  background: url("../img/home-banner..c6b9db1bf711.png");
  background-position: left bottom;
  padding-top: 118px;
  padding-bottom: 268px;
  line-height: 1.25;
  background-color: #fefefe;
}
@media screen and (max-width: 1200px) {
  .home-banner {
    padding-top: 88px;
    padding-bottom: 300px;
  }
}
@media screen and (max-width: 748px) {
  .home-banner {
    padding-top: 66px;
    padding-bottom: 360px;
  }

  .mob-image {
    position: absolute;
    right: 0;
    top: 43%;
    width: 73%;
    max-width: 324px;
    aspect-ratio: 0.58;
    background-image: url("../img/home-mob-banner.9108ab4ddf4e.png");
    background-size: cover;
  }
}
.home-banner h1 {
  margin-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
  max-width: 976px;
}
@media screen and (max-width: 1200px) {
  .home-banner h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 748px) {
  .home-banner h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 440px) {
  .home-banner h1 {
    font-size: 32px;
    max-width: 380px;
  }
}
.home-banner p {
  font-size: 20px;
  font-weight: 500;
  color: #555e83;
  margin-bottom: 0;
}
.social_benefits {
  margin-top: 100px;
}
@media screen and (max-width: 720px) {
  .social_benefits  {
    margin-top: 203px;
  }
}
.social_benefits .section-head {
  margin-bottom: 132px;
}
@media screen and (max-width: 1140px) {
  .social_benefits .section-head {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 840px) {
  .social_benefits .section-head {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 480px) {
  .social_benefits .section-head {
    margin-bottom: 50px;
  }
}
.soc_bnfs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
}
@media screen and (max-width: 1140px) {
  .soc_bnfs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 840px) {
  .soc_bnfs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .soc_bnfs {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.soc_bnf {
  position: relative;
  display: block;
  transition: 0.3s linear;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: inherit;
  cursor: pointer;
  aspect-ratio: 1;
  box-sizing: border-box;
  padding-top: 25px;
  text-decoration: none !important;
}
@media screen and (max-width: 480px) {
  .soc_bnf {
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
  }
}
.soc_bnf:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68%;
  aspect-ratio: 1;
  transform-origin: center;
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: #fff;
  border-radius: 12px;
  z-index: -1;
  box-shadow: 5px 5px 0 0px #e7e7f2;
  transition: 0.3s linear;
}
.soc_bnf:hover:before {
  background: #3d60ed;
}
.soc_bnf:after {
  content: "";
  position: absolute;
  background-image: url("../img/soc_bnf..f82f6151772f.png");
  width: 60%;
  aspect-ratio: 1;
  background-size: contain;
  top: -16%;
  right: -32%;
}
.soc_bnf:nth-child(1):after {
  top: -16%;
  right: -32%;
}
@media screen and (max-width: 480px) {
  .soc_bnf:nth-child(1):after {
    top: 70%;
    right: -17.5%;
  }
}
.soc_bnf:nth-child(2):after {
  background-image: url("../img/soc_bnf-blue..cbd49ed3467b.png");
  top: 56%;
  right: -31%;
}
@media screen and (max-width: 1140px) {
  .soc_bnf:nth-child(2):after {
    top: -16%;
    right: -32%;
  }
}
@media screen and (max-width: 840px) {
  .soc_bnf:nth-child(2):after {
    top: 56%;
    right: 70%;
  }
}
@media screen and (max-width: 480px) {
  .soc_bnf:nth-child(2):after {
    top: 70%;
    right: 57.5%;
  }
}
.soc_bnf:nth-child(3):after {
  top: -16%;
  right: -32%;
}
@media screen and (max-width: 1140px) {
  .soc_bnf:nth-child(3):after {
    top: 56%;
    right: 70%;
  }
}
@media screen and (max-width: 840px) {
  .soc_bnf:nth-child(3):after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .soc_bnf:nth-child(3):after {
    top: 70%;
    right: -17.5%;
  }
}
.soc_bnf:nth-child(4):after {
  background-image: url("../img/soc_bnf-yellow..44f1edee585a.png");
  top: 56%;
  right: -31%;
}
@media screen and (max-width: 1140px) {
  .soc_bnf:nth-child(4):after {
    top: -43%;
    right: -30%;
  }
}
@media screen and (max-width: 840px) {
  .soc_bnf:nth-child(4):after {
    top: 56%;
    right: 70%;
  }
}
@media screen and (max-width: 480px) {
  .soc_bnf:nth-child(4):after {
    top: 70%;
    right: 57.5%;
  }
}
.soc_bnf--empty:after {
  display: none;
}
.soc_bnf h5 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s linear;
  max-width: 198px;
  text-decoration: none !important;
}
@media screen and (max-width: 1440px) {
  .soc_bnf h5 {
    font-size: 16px;
  }
}
.soc_bnf:hover h5 {
  color: #fff;
}
.soc_bnf svg path {
  transition: 0.3s linear;
}
.soc_bnf:hover svg path {
  stroke: #fff !important;
}
.soc-steps {
  margin-top: 153px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
@media screen and (max-width: 1140px) {
  .soc-steps {
    margin-top: 100px;
  }
}
@media screen and (max-width: 840px) {
  .soc-steps {
    margin-top: 75px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .soc-steps {
    margin-top: 50px;
  }
}
.soc-step {
  display: block;
  transition: 0.3s linear;
  background: #fff;
  box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 50px 69px;
  min-height: 296px;
  cursor: pointer;
  box-sizing: border-box;
  color: inherit;
}
@media screen and (max-width: 1540px) {
  .soc-step {
    padding: 30px 30px;
    min-height: 256px;
  }
}
.soc-step:hover {
  background: #3355de;
}
.soc-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  transition: 0.3s linear;
  background: #3355de;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.soc-step__icon svg path {
  stroke: #fff;
  display: block;
}
.soc-step:first-child .soc-step__icon svg path {
  stroke: none;
}
.soc-step:first-child .soc-step__icon svg path:last-child {
  fill: #fff;
}
.soc-step:hover .soc-step__icon {
  background: #fff;
}
.soc-step:hover .soc-step__icon svg path {
  stroke: #3355de;
}
.soc-step:hover:first-child .soc-step__icon svg path {
  stroke: none;
}
.soc-step:hover:first-child .soc-step__icon svg path:last-child {
  fill: #454f56;
}
.soc-step__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}
.soc-step__title h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s linear;
}
.soc-step__title svg path {
  transition: 0.3s linear;
}
.soc-step:hover .soc-step__title h5 {
  color: #fff;
  transition: 0.3s linear;
}
.soc-step:hover .soc-step__title svg path {
  stroke: #fff;
}
.soc-step__subtitle {
  transition: 0.3s linear;
}
.soc-step:hover .soc-step__subtitle {
  color: #fff;
}
.contributions {
  margin-top: 70px;
}
.contributions .section-head {
  margin-bottom: 122px;
}
@media screen and (max-width: 1140px) {
  .contributions .section-head {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 840px) {
  .contributions .section-head {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .contributions .section-head {
    margin-bottom: 30px;
  }
}
.contrs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}
.contr {
  color: inherit;
  text-align: center;
  text-decoration: none;
}
.contr__img {
  position: relative;
  margin-bottom: 30px;
}
.contr__img:after {
  content: "";
  position: absolute;
  background-image: url("../img/contrs-2..e9b0ab061929.png");
  width: 116px;
  height: 116px;
  background-size: contain;
  top: -14%;
  right: -31%;
}
.contr__img--empty:after {
  display: none;
}
.contr__img--bottom:after {
  width: 77px;
  height: 77px;
  top: 64%;
  right: -20%;
}
.contr__img--blue:after {
  background-image: url("../img/contrs-1..9535164f82ce.png");
}
.contr__img--yellow:after {
  background-image: url("../img/contrs-3..1fd868db372c.png");
}
.contr__img-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contr__img-over:after {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 179px;
  height: 179px;
  background: rgba(0, 0, 0, 0.4);
  transform-origin: center;
  transform: translate(-50%, -50%) rotateZ(45deg);
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s linear;
}
.contr__img-over svg {
  position: relative;
  z-index: 5;
  transition: 0.3s linear;
}
.contr__img-over svg path {
  stroke: #fff;
  opacity: 0;
}
.contr:hover .contr__img-over:after {
  opacity: 1;
}
.contr:hover .contr__img-over svg path {
  opacity: 1;
}
.contr__img img {
  width: 100%;
}
.contr h5 {
  font-weight: 600;
  line-height: 1.25;
  transition: 0.3s linear;
  max-width: 153px;
  margin: 0 auto;
  text-decoration: none;
}
.contr:hover,
.contr:hover h5 {
  color: #3355de;
  text-decoration: none !important;
}
.contr-steps {
  margin-top: 92.5px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 940px) {
  .contr-steps {
    margin-top: 75px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .contr-steps {
    margin-top: 50px;
  }
}
.contr-step {
  display: block;
  transition: 0.3s linear;
  background: #fff;
  box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 50px 39px;
  height: 350px;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 940px) {
  .contr-step:nth-child(1) {
    height: 454px;
  }
  .contr-step:nth-child(2) {
    height: 214px;
  }
  .contr-step:nth-child(3) {
    height: 419px;
  }
  .contr-step {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 720px) {
  .contr-step {
    padding: 20px 20px;
  }
}
.contr-step__title {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 720px) {
  .contr-step__title {
    font-size: 18px;
    gap: 15px;
  }
}
.contr-step__title h5 {
  margin: 0;
}
@media screen and (max-width: 720px) {
  .contr-step__title h5 {
    font-size: 18px;
  }
}
.contr-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  background: #3355de;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 720px) {
  .contr-step__icon {
    width: 40px;
    height: 40px;
  }
}
.contr-step__body {
  width: 100%;
  flex-grow: 1;
  overflow-y: auto;
  position: relative;
}
.contr-step__body:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(84, 94, 131, 0), #fff);
  pointer-events: none;
}
.contr-step__body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.contr-step__body::-webkit-scrollbar-track {
  background: #eff5fb;
}
.contr-step__body::-webkit-scrollbar-thumb {
  background: #3355de;
  border-radius: 4px;
}
.contr-step__body::-webkit-scrollbar-thumb:hover {
  background: #3355de;
}
.contr-step__item {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: #555e83;
  font-weight: 300;
  line-height: 1.5;
  transition: 0.3s linear;
}
.contr-step__item:hover {
  color: #3355de;
}
.contr-step__item:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 13px;
  height: 13px;
  background: #555e83;
  transform-origin: center;
  transform: rotateZ(45deg);
}
.contr-step__item:hover:before {
  background: #3355de;
}
.contr-step__item:last-child {
  margin-bottom: 0;
}
.link_egov-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin-top: 100px;
}
@media screen and (max-width: 720px) {
  .link_egov-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 50px;
  }
}
.link_egov {
  position:relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: inherit;
  min-height: 244px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:0px 12px 36px rgba(0,0,0,0.02); background:#3355DE;
}
.link_egov__bg {
  position:absolute;
  inset:0;
}
.link_egov__bg svg {
  position: absolute;
  top: -20%;
  left: -24%;
  height: 150%;
  width: 200%;
}
.link_egov__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
}
.link_egov__content svg {
  flex-shrink: 0;
}
@media screen and (max-width: 560px) {
  .link_egov__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.link_egov img {
  display: block;
}
.link_egov h4 {
  max-width: 936px;
  font-family: Geologica;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  line-height: 1.5;
  display: flex;
  color: #fff;
  text-align: left;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1400px) {
  .link_egov h4 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .link_egov h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 440px) {
  .link_egov h4 {
    font-size: 16px;
  }
}
.greet {
  margin-top: 112px;
}
@media screen and (max-width: 1400px) {
  .greet {
    margin-top: 90px;
  }
}
@media screen and (max-width: 1200px) {
  .greet {
    margin-top: 75px;
  }
}
@media screen and (max-width: 440px) {
  .greet {
    margin-top: 50px;
  }
}
.greet .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.greet .container > img {
  display: block;
}
@media screen and (max-width: 780px) {
  .greet .container > img {
    display: none;
  }
}
.greet__content {
  position: relative;
  max-width: 902px;
  line-height: 1.5;
}
.greet__content img {
  display: none;
  margin: 0 auto;
  margin-bottom: 30px;
  height: 326px;
}
@media screen and (max-width: 780px) {
  .greet__content img {
    display: block;
  }
}
.greet__content .section-head {
  margin-bottom: 30px;
  max-width: 600px;
}
.greet__content .section-head__tag {
  margin-bottom: 30px;
}
.greet__content:before,
.greet__content:after {
  content: "";
  background: url("../img/contrs-2..e9b0ab061929.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 204px;
  height: 204px;
  position: absolute;
  z-index: -1;
}
.greet__content:before {
  top: 0;
  left: 45%;
}
.greet__content:after {
  width: 119px;
  height: 119px;
  right: 0;
  bottom: 0%;
}
.greet__text {
  margin-bottom: 30px;
  color: #555e83;
}
.greet__author {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.greet__role {
  font-size: 14px;
  font-weight: 300;
  color: #555e83;
  max-width: 342px;
}
.on-service {
  margin-top: 112px;
  padding: 100px 0 114px 0;
  background: #fff;
}
@media screen and (max-width: 1400px) {
  .on-service {
    margin-top: 90px;
    padding: 85px 0 85px 0;
  }
}
@media screen and (max-width: 1200px) {
  .on-service {
    margin-top: 75px;
    padding: 65px 0 65px 0;
  }
}
@media screen and (max-width: 440px) {
  .on-service {
    margin-top: 50px;
    padding: 50px 0 50px 0;
  }
}
.on-service .section-head {
  margin-bottom: 70px;
}
@media screen and (max-width: 840px) {
  .on-service .section-head {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .on-service .section-head {
    margin-bottom: 30px;
  }
}
.on-services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 1140px) {
  .on-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 840px) {
  .on-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .on-services {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.service {
  background: #f3f6f9;
  border-radius: 12px;
  cursor: pointer;
  color: inherit;
  position: relative;
  padding: 40px;
  transition: 0.3s linear;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 340px;
}
.service:hover {
  background: #3355de;
}
.service__title {
  margin: 0;
  transition: 0.3s linear;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.service:hover .service__title {
  color: #fff;
}
.service svg {
  position: relative;
  z-index: 1;
}
.service svg path {
  transition: 0.3s linear;
}
.service:hover svg path {
  stroke: #fff;
}
.service img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.news {
  margin-top: 100px;
}
@media screen and (max-width: 1400px) {
  .news {
    margin-top: 75px;
  }
}
@media screen and (max-width: 440px) {
  .news {
    margin-top: 50px;
  }
}
.news .section-head {
  margin-bottom: 70px;
}
@media screen and (max-width: 840px) {
  .news .section-head {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .news .section-head {
    margin-bottom: 30px;
  }
}
.news__tabs {
  margin-bottom: 30px;
  display: flex;
  width:100%;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.news__tabs-left {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  flex-wrap: wrap;
}
.news__tab {
  height: 62px;
  background: #fff;
  padding: 16px;
  font-size: 20px;
  color: #555e83;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s linear;
}
@media screen and (max-width: 1400px) {
  .news__tab {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  .news__tab {
    padding: 16px 8px;
    height: 53px;
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .news__tab {
    padding: 10px 8px;
    height: 40px;
    font-size: 11px;
  }
}
.news__tab:hover,
.news__tab.active {
  background: #3355de;
  color: #fff;
}
.news-arrows-top {
  display:flex;
  gap:8px;
}
.news__bodies {
  position: relative;
}
.news__body {
  position: absolute;
  opacity: 0;
}
.news__body.active {
  position: static;
  opacity: 1;
}
.news .news-swiper {
  overflow: visible !important;
}
.news .news-swiper .swiper-slide {
  min-height: 100%;
  max-height: 100%;
}
.news .news-pagination {
  position: relative;
  z-index: 10;
  transform: translateY(-50%) translateX(92px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  max-width: 1089px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 1px;
  bottom: unset;
  top: unset;
  left: unset;
}
@media screen and (max-width: 1200px) {
  .news .news-pagination {
    height: auto;
    transform: translateY(-50%) translateX(0px);
    padding-left: 15px;
  }
}
@media screen and (max-width: 640px) {
  .news .news-pagination {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto;
    padding-left: 0;
    max-width: 95%;
  }

  .item-full {
    grid-column: 1 / -1;
  }
}
.news__bitem {
  position: relative;
  background: #e5e8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s linear;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #3355de;
  padding: 30px;
}
@media screen and (max-width: 1200px) {
  .news__bitem {
    padding: 10px 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 440px) {
  .news__bitem {
    font-size: 12px;
  }
}
.news__bitem:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.news__bitem:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media screen and (max-width: 640px) {
  .news__bitem:nth-child(4) {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .news__bitem:last-child  {
     border-radius: 12px;
  }
}
.news__bitem:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 68%;
  border-radius: 5px;
  transform-origin: center;
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: #3355de;
  width: 26px;
  height: 26px;
  opacity: 0;
  transition: 0.3s linear;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .news__bitem.item-full:after {
    display: none;
  }
}
.news__bitem svg path {
  stroke: #3355de;
  transition: 0.3s linear;
}
.news__bitem--active,
.news__bitem:hover {
  background: #3355de;
  color: #fff;
}
.news__bitem--active svg path,
.news__bitem:hover svg path {
  stroke: #fff;
}
.news__bitem--active:after,
.news__bitem:hover:after {
  opacity: 1;
}
.news-item {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .news-item {
    flex-wrap: wrap;
  }
}
.news-item__content {
  background: #fff;
  padding: 108px 92px;
  flex-grow: 1;
  max-width: 855px;
}
@media screen and (max-width: 1400px) {
  .news-item__content {
    padding: 50px 50px 50px;
  }
}
@media screen and (max-width: 840px) {
  .news-item__content {
    padding: 20px 31px 43px;
  }
}
.news-item__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .news-item__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 840px) {
  .news-item__title {
    font-size: 24px;
  }
}
.news-item__date {
  margin-bottom: 30px;
  color: #555e83;
  font-weight: 300;
}
.news-item__text {
  margin-bottom: 30px;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  overflow: hidden;
}
.news-item__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3355de;
}
.news-item__link svg path {
  stroke: #3355de;
}
.news-item__img {
  max-width: 50%;
}
@media screen and (max-width: 842px) {
  .news-item__img  {
    width: 100%;
    max-width: 100%;
  }
}
.news-item__img img {
  height: 100%;
  max-width: 683px;
  object-position: center;
  object-fit: cover;
}
@media screen and (max-width: 842px) {
  .news-item__img img  {
    aspect-ratio: 1.84;
    height: unset;
    max-width: unset;
    width: 100%;
  }
}
.news-all__title {
  font-family:'Geologica';
  font-weight:600;
  font-size:40px;
  line-height:150%;
  color:#0D111F;
}
@media screen and (max-width: 1520px) {
  .news-all__title {
    font-size:32px; 
  }
}
@media screen and (max-width: 768px) {
  .news-all__title {
    font-size:24px;
  }
}
@media screen and (max-width: 440px) {
  .news-all__title {
    font-size:20px;
  }
}
.news-all__featured {
  display:grid;
  grid-template-columns:1fr 1.07fr;
  align-items:stretch;
}
@media screen and (max-width: 978px) {
  .news-all__featured {
    grid-template-columns:1fr;
  }
}
.news-all__ft-title {
  font-family:'Geologica';
  font-weight:600;
  font-size:32px;
  line-height:150%;
  color:#0D111F;
  text-decoration:none;
}
@media screen and (max-width: 978px) {
  .news-all__ft-title {
    font-size:26px;
  }
}
@media screen and (max-width: 520px) {
  .news-all__ft-title {
    font-size:22px;
  }
}
.news-all__grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0, 1fr));
  gap:24px;
}
@media screen and (max-width: 978px) {
  .news-all__grid {
    grid-template-columns:repeat(2,minmax(0, 1fr));
    gap:15px;
  }
}
@media screen and (max-width: 520px) {
  .news-all__grid {
    grid-template-columns:repeat(1,minmax(0, 1fr));
  }
}
.video-slide {
  position:relative;
  display:block;
  width:100%;
  height:526px;
  border-radius:12px;
  overflow:hidden;
  background:#000;
}
@media screen and (max-width: 720px) {
  .video-slide  {
    aspect-ratio: 1.2;
  }
}
.video-slide__overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.3);
}
.video-slide__img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.video-slide__title {
  position:absolute;
  bottom:55px;
  width: 100%;
  padding-left: 5%;
  box-sizing: border-box;
  color:#FFFFFF;
  font-family:'Geologica';
  font-weight:600;
  font-size:32px;
  line-height:150%;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
@media screen and (max-width: 1400px) {
  .video-slide__title {
    font-size:28px;
  }
}
@media screen and (max-width: 720px) {
  .video-slide__title {
    font-size:24px;
  }
}
@media screen and (max-width: 440px) {
  .video-slide__title {
    font-size:18px;
  bottom:75px;
  }
}
.anticor {
  margin-top: 100px;
}
@media screen and (max-width: 1400px) {
  .anticor {
    margin-top: 50px;
  }
}
@media screen and (max-width: 440px) {
  .anticor {
    margin-top: 20px;
  }
}
.anticor .container {
  display: flex;
}
@media screen and (max-width: 1400px) {
  .anticor .container {
    flex-wrap: wrap;
  }
}
.anticor__banner {
  padding: 102px 80px;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  max-width: 40%;
  flex-grow: 1;
}
@media screen and (max-width: 1600px) {
  .anticor__banner {
    padding: 80px 60px;
  }
}
@media screen and (max-width: 1400px) {
  .anticor__banner {
    padding: 60px 40px;
    max-width: unset;
  }
}
@media screen and (max-width: 1000px) {
  .anticor__banner {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 720px) {
  .anticor__banner {
    padding: 20px 20px;
  }
}
.anticor__title {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 1500px) {
  .anticor__title {
    font-size: 40px;
    word-break: break-all;
  }
}
@media screen and (max-width: 1200px) {
  .anticor__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .anticor__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 780px) {
  .anticor__title {
    font-size: 22px;
  }
}
.anticor__list {
  padding: 102px 54px;
  background: #3355de;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  box-sizing: border-box;
  flex-grow: 1;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .anticor__list {
    padding: 80px 60px;
  }
}
@media screen and (max-width: 1200px) {
  .anticor__list {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .anticor__list {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 780px) {
  .anticor__list {
    padding: 20px 20px;
  }
}
.anticor__item {
  font-size: 32px;
  min-height: 99px;
}
@media screen and (max-width: 1500px) {
  .anticor__item {
    font-size: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .anticor__item {
    font-size: 24px;
  }
}
.anticor__item a {
  color: inherit;
  white-space: nowrap;
}
.anticor__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}
.anticor__label svg {
  flex-shrink: 0;
}
.stats {
  margin-top: 100px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1400px) {
  .stats {
    margin-top: 75px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 440px) {
  .stats {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.stats .section-head {
  margin-bottom: 5px;
}
.stats__heads {
  margin-bottom: 59px;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .stats__heads {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 440px) {
  .stats__heads {
    margin-bottom: 30px;
  }
}
.stats__head {
  padding-bottom: 10px;
  border-bottom: 1px solid #555e83;
  font-size: 40px;
  font-weight: 600;
  transition: 0.3s linear;
  cursor: pointer;
  color: #555e83;
}
@media screen and (max-width: 1400px) {
  .stats__head {
    font-size: 32px;
  }
}
@media screen and (max-width: 780px) {
  .stats__head {
    font-size: 24px;
  }
}
@media screen and (max-width: 440px) {
  .stats__head {
    font-size: 20px;
  }
}
.stats__head.active {
  border-bottom: 1px solid #3355de;
  color: #3355de;
}
.stats__bodies {
  position: relative;
}
.stats__body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .stats__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 720px) {
  .stats__body {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }
}
.stats__body.active {
  display: grid;
}
.stats__item {
  display: inline-block;
  width: fit-content;
  padding-bottom: 61px;
  border-bottom: 1px solid #555e83;
}
@media screen and (max-width: 720px) {
  .stats__item {
    width: 100%;
    padding-bottom: 30px;
  }
}
.stats__count {
  margin-bottom: 40px;
  color: #3355de;
  font-size: 96px;
  font-weight: 300;
  line-height: 1.25;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
@media screen and (max-width: 1400px) {
  .stats__count {
    font-size: 72px;
  }
}
@media screen and (max-width: 780px) {
  .stats__count {
    font-size: 48px;
  }
}
@media screen and (max-width: 440px) {
  .stats__count {
    font-size: 40px;
  }
}
.stats__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}
.stats__desc {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
  color: #555e83;
}
/*# sourceMappingURL=home.css.map*/
.contr-step__body:after {
  display: none !important;
}
.contr-step {
  position: relative;
}
.contr-step:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 80%);
  pointer-events: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
/* Responsive tables inside page content */
.page__content .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.page__content table {
  width: 100% !important;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  color: #0d111f;
}
.page__content thead th {
  font-weight: 600;
  background: #eff5fb;
}
.page__content th,
.page__content td {
  padding: 12px 14px;
  border: 1px solid #e5e8f6;
  vertical-align: top;
  word-break: break-word;
  white-space: normal;
}
.page__content .table-scroll::-webkit-scrollbar {
  height: 8px;
}
.page__content .table-scroll::-webkit-scrollbar-thumb {
  background: #c9d7e3;
  border-radius: 8px;
}

figure.table {
  overflow-x: auto;
}

.apply-service-item {
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  gap:10px;
  width:100%;
  min-height:62px;
  background:#EFF5FB;
  border-radius:12px;
  box-sizing: border-box;
  cursor:pointer;
  margin-bottom: 5px;
}

.apply-service-item-head {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:0;
  gap:5px;
  color:#0D111F;
  font-family:'Geologica';
  font-weight:300;
  font-size:20px;
  line-height:150%;
}
@media screen and (max-width: 720px) {
  .apply-service-item-head {
    font-size: 18px;
  }
}
@media screen and (max-width: 440px) {
  .apply-service-item-head {
    font-size: 16px;
  }
}

.apply-service-item-head svg {
  flex-shrink: 0;
}

.apply-service-details {
  display:none;
  width:100%;
  box-sizing: border-box;
  background:#EFF5FB;
  border-radius:12px;
  padding:16px;
}

.apply-service-details-in {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:30px;
  width:100%;
  box-sizing: border-box;
  min-height:300px;
}

.apply-service-details-inner {
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
  width:100%;
  box-sizing: border-box;
  font-family:'Geologica';
  font-weight:300;
  font-size:20px;
  gap: 10px;
  line-height:150%;
  color:#0D111F;
}
@media screen and (max-width: 720px) {
  .apply-service-details-inner {
    font-size: 18px;
  }
}
@media screen and (max-width: 440px) {
  .apply-service-details-inner {
    font-size: 16px;
  }
}
.apply-service-details-body-text {
  font-family:'Geologica';
  font-weight:600;
  font-size:16px;
  line-height:150%;
  color:#0D111F;
}
@media screen and (max-width: 440px) {
  .apply-service-details-body-text {
    font-size: 14px;
  }
}
.apply-service-arrow,
.apply-service-arrow-header {
  flex-shrink: 0;
}
.apply-service-details-body {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:16px;
  gap:20px;
  width:100%;
  box-sizing: border-box;
  background:#FFFFFF;
  border-radius:22px;
  font-family:'Geologica';
  font-weight:800;
  font-size:20px;
  line-height:150%;
  color:#0D111F;
}

@media screen and (max-width: 720px) {
  .apply-service-details-body {
    font-size: 18px;
  }
}

@media screen and (max-width: 440px) {
  .apply-service-details-body {
    font-size: 16px;
  }
}

.apply-service-details-body ol li {
  font-family:'Geologica';
  font-weight:400;
  font-size:16px;
  line-height:150%;
  color:#0D111F;
}

.modal-header {
  border:none;
  padding: 20px 50px 0px 50px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.modal-title {
  font-family: 'Geologica';
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  color: #0D111F;
  width: 100%;
}
.modal-body {
  padding: 30px 50px 30px 50px;
}

@media (max-width: 1020px) {
  .modal-body {
    padding: 20px 20px 30px 20px;
  }
  .modal-header {
    padding: 60px 10px 10px;
  }
  .modal-title {
    font-size: 28px;
  }
}

@media (max-width: 540px) {
  .page__content {
    padding: 26px !important;
  }

  .gfss-item {
    flex-wrap: wrap !important;
  }

  .gfss-section {
    padding: 0 0 !important;
  }

  .page__text,
  .page__text p {
    white-space: pre-line !important;
    white-space: wrap !important;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-x: auto;
  }

  .page__title {
    font-size: 24px !important;
    white-space: wrap !important;
  }
  .modal-body {
    font-size: 14px;
  }
  .modal-title {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  .page__content {
    padding: 15px !important;
  }

  .faq-container  {
    padding: 0 !important;
  }

  .page__title {
    font-size: 20px !important;
  }

  .faq-title-main {
    font-size: 18px !important;
  }

  .faq-question {
    font-size: 14px !important;
  }

  .faq-left {
    flex-wrap: wrap !important;
  }

  .contact-card {
    flex-wrap: wrap !important;
  }

  .contact-card .info {
    margin: 0 !important;
    margin-top: 15px !important;
  }

  .page__text h3 span {
    font-size: 18px !important;
  }
  .modal-title {
    font-size: 18px;
  }
}
.swiper,
.swiper-wrapper {
  overflow: visible !important;
}
.social_contributions_modal {
  display: grid;
  grid-template-columns: 11% 10% 35% 20% 19%;
  grid-template-rows: auto;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 1380px) {
  .social_contributions_modal {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 780px) {
  .social_contributions_modal {
    grid-template-columns: 1fr;
  }
}
.social_contributions_modal_list {
  display: flex;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .social_contributions_modal_list {
    flex-direction: column;
  }
}