:root {
  --phone: 480px;
  --tablet: 768px;
  --desktop: 980px;
  --widescreen: 1200px;
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #999;
  --color-blue: #005393;
  --color-green: #2FAE8F;
  /* --font-sans-serif: "Open Sans", sans-serif; */
  --font-sans-serif: "Product Sans", sans-serif;
  --font-serif: "Times New Roman", Times, Baskerville, Georgia, serif;
  --base-background-color: var(--color-white);
  --base-font-family: var(--font-sans-serif);
  --base-font-size: 1.8rem;
  --base-line-height: 1.6;
  --base-text-color: var(--color-black);
  --base-min-width: 320px;
  --base-link-color: var(--color-blue);
  --btn-fz: 1.8rem;
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-padding: 0.7em 1.5em;
  --headings-sizes-h1: 5.2rem;
  --headings-sizes-h2: 4.2rem;
  --headings-sizes-h3: 3.2rem;
  --headings-sizes-h4: 2.1rem;
  --headings-sizes-h5: 1.7rem;
  --headings-sizes-h6: 1.5rem;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@font-face {
  font-family: "Product Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ProductSans-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Product Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ProductSans-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Product Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ProductSans-Regular.ttf") format("truetype");
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--base-text-color);
  background: var(--base-background-color);
  font: var(--base-font-size)/var(--base-line-height) var(--base-font-family);
  min-width: var(--base-min-width);
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

.gm-style img {
  max-width: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  font-family: "Product Sans", sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--color-blue);
  line-height: 1.05;
}
h1:not(:last-child), .h1:not(:last-child),
h2:not(:last-child), .h2:not(:last-child),
h3:not(:last-child), .h3:not(:last-child),
h4:not(:last-child), .h4:not(:last-child),
h5:not(:last-child), .h5:not(:last-child),
h6:not(:last-child), .h6:not(:last-child),
.h:not(:last-child) {
  margin-bottom: 2rem;
}

h1, .h1 {
  font-size: var(--headings-sizes-h1);
  font-weight: 600;
}

h2, .h2 {
  font-size: var(--headings-sizes-h2);
  font-weight: 600;
}

h3, .h3 {
  font-size: var(--headings-sizes-h3);
  line-height: 1.3;
}

h4, .h4 {
  font-size: var(--headings-sizes-h4);
}

h5, .h5 {
  font-size: var(--headings-sizes-h5);
}

h6, .h6 {
  font-size: var(--headings-sizes-h6);
}

p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 1em;
}

a {
  color: var(--base-link-color);
}
a:focus {
  text-decoration: none;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

.form {
  display: flex;
  row-gap: 1.8rem;
  column-gap: 1.8rem;
}
.form__field {
  flex: 1;
  height: 6.2rem;
}
.form__field-buttons {
  flex: none;
}
.form__field input {
  height: 100%;
  width: 100%;
}
.form__field .button {
  height: 100%;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
textarea {
  box-sizing: border-box;
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Product Sans", sans-serif;
  font-weight: 400;
  border-radius: 0;
  border: none;
  color: #005393;
  padding: 0.75em 1.25em;
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color);
}
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: var(--placeholder-color);
}
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--placeholder-color);
}
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--placeholder-color);
}
input[type=text].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder,
input[type=search].placeholder,
input[type=password].placeholder,
textarea.placeholder {
  color: var(--placeholder-color);
}

select {
  border-radius: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--form-font-family);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 0;
  font-size: var(--btn-fz);
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Product Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  outline: none;
  padding: var(--btn-padding);
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border: 0.1rem solid var(--btn-bg);
  transition: all 0.3s ease-in-out;
  height: 5.6rem;
}
.button-text, .button-icon {
  position: relative;
  z-index: 1;
}
.button.bordered {
  color: var(--btn-bg);
  background-color: transparent;
}
.button.bordered:hover {
  color: var(--btn-color);
  background-color: var(--btn-bg);
}
.button:hover, .button:focus {
  background-color: transparent;
  color: var(--btn-bg);
}
.button-black {
  --btn-bg: var(--color-black);
  --btn-color: var(--color-white);
}
.button-white {
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
}
.button-primary {
  --btn-bg: var(--color-green);
  --btn-color: var(--color-white);
}
.button-blue {
  --btn-bg: #005393;
  --btn-color: var(--color-white);
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section__decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
}

.row {
  margin: 0 -1.5rem;
  row-gap: 4rem;
}
.row > div {
  padding: 0 1.5rem;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #005393;
  z-index: 9999;
  pointer-events: all !important;
}

.header .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .header .container {
      max-width:768px !important
  }
}

@media (min-width: 1024px) {
  .header .container {
      max-width:1024px !important
  }
}

@media (min-width: 1280px) {
  .header .container {
      max-width:1280px !important
  }
}

@media (min-width: 1536px) {
  .header .container {
      max-width:1536px !important
  }
}
.header .button {
  z-index: 1;
  min-width: 22.5rem;
}
.header .button:hover, .header .button:focus {
  transition-delay: 0 !important;
}
.popup-open {
	overflow: hidden !important;
}


body {
  overflow: hidden;
}

.footer {
  position: relative;
  padding: 7.6rem 0 3.8rem 0;
  overflow: hidden;
  background-color:  #f1fdf9;
  backdrop-filter: blur(50px);
  border-radius: 1.6rem;
}
.footer .decor {
  width: 36.3rem;
  height: 21.4rem;
  transform: rotate(-50deg);
  left: -7rem;
  top: -7rem;
  background-color: var(--color-white);
}
.footer__top {
  margin-bottom: 10rem;
}
.footer__top .row {
  align-items: center;
  align-content: center;
}
.footer__top .text-side {
  text-align: center;
}
.footer__bottom .row {
  justify-content: center;
}
.footer .copy-side {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  font-size: 1.3rem;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 2rem;
}
.footer .copy-side a {
  color: #000;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  align-content: center;
  color: #000;
  font-weight: 600;
  font-size: 1.8rem;
}
.menu_item {
  position: relative;
  margin: 0 0.5rem;
}
.menu_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.menu_link:before {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
  z-index: -2;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.menu_link:after {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
  z-index: -2;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.menu_link.active:before {
  opacity: 1;
  visibility: visible;
}
.menu_link:hover:after {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  animation: pulse 1.5s infinite;
}
.menu__wrap {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
.menu__wrap > *:not(:last-child) {
  margin-right: 2.25rem;
}
.menu__wrap > .menu:not(:last-child) {
  margin-right: 4rem;
}
.header .button {
  --btn-fz: 1.8rem;
  --btn-padding: 0.7em 1em;
  overflow: visible;
  min-width: 19rem;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .header .button-blue {
    display: none;
  }
}
.button-blue .help {
  position: absolute;
  right: 1.4rem;
  height: 2rem;
  top: -1rem;
  right: -1.4rem;
  padding: 0.5rem 1.3rem;
  border-radius: 3rem;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #2FAE8F;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
.hero .buttons {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  margin: -1.125rem;
  margin-top: 1.875rem !important;
}
.hero .buttons > * {
  margin: 1.125rem !important;
  overflow: visible !important;
  /* min-width: 19rem; */
  min-width: 24rem;
  --btn-padding: 0.7em 1em;
}
@media (max-width: 1299px) {
  .hero .buttons {
    flex-wrap: wrap;
  }
  .hero .buttons > * {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .hero .buttons {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .hero .buttons {
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin: 3rem 0 -1.125rem 0;
    padding: 0 0.275rem;
  }
  .hero .buttons > * {
    width: 100%;
  }
}
.menu-button {
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  width: 3.2rem;
  height: 3.2rem;
  min-width: 3.2rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: inherit;
  transition: all 0.4s ease-in-out 0.2s;
  opacity: 0;
}
.menu-button .l {
  position: absolute;
  width: 100%;
  height: 0.4rem;
  background-color: currentColor;
  border-radius: 0;
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}
.menu-button .l-1 {
  transform: translateY(-1rem);
}
.menu-button .l-2 {
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.menu-button .l-3 {
  transform: translateY(1rem);
}
.menu-button:hover {
  color: var(--color-blue);
}
.menu-button.active {
  transform: rotate(-315deg);
  transition: all 0.4s ease-in-out;
  color: var(--color-blue);
}
.menu-button.active .l-1, .menu-button.active .l-3 {
  transform: translateY(0);
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.menu-button.active .l-2 {
  transform: rotate(-90deg);
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}
.menu-open .menu__wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.9);
    box-shadow: 0 0 0 1rem rgba(47, 174, 143, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(47, 174, 143, 0);
  }
}
.hero {
  position: relative;
  padding: 22rem 0 10rem 0;
  min-height: calc((var(--vh, 1vh) * 100));
  background-color: rgba(47, 174, 143, 0.1);
  display: flex;
  align-items: center;
  align-content: center;
}
.hero .decor {
  background-color: var(--color-white);
}
.hero .decor-1 {
  top: -15rem;
  left: 50%;
  transform: rotate(-13.61deg) translateX(-50%);
}
.hero .decor-2 {
  top: calc(100% - 15rem);
  right: -12rem;
  transform: rotate(100.81deg);
}
.hero .row {
  align-items: center;
  align-content: center;
}
.hero .illustration {
  position: relative;
  width: 49rem;
  height: 46.6rem;
}
.hero .illustration picture {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.hero .illustration__main {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero .illustration__robot {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .illustration__robot picture {
  position: absolute;
  right: 0;
  top: 0;
}
.hero .illustration__robot picture:nth-child(1) {
  z-index: 0;
}
.hero .illustration__robot picture:nth-child(2) {
  z-index: 1;
}
.hero .illustration__docs {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero .illustration__docs picture {
  position: absolute;
  right: 0;
  top: 0;
}
.hero .illustration__docs picture:nth-child(1) {
  z-index: 0;
}
.hero .illustration__docs picture:nth-child(2) {
  z-index: 1;
}
.hero .illustration__docs picture:nth-child(3) {
  z-index: 2;
}
.hero-about {
  min-height: inherit;
}
.hero-about h1 {
  font-weight: 800;
}
.hero-blog {
  min-height: inherit;
}
.single-post {
  min-height: inherit;
  /*padding-bottom: 25rem;*/
}
.hero-blog h1 {
  font-weight: 800;
}
@media (max-width: 991px) {
  .hero-blog h1 {
    font-size: 3.2rem !important;
  }
}

@media (max-width: 767px) {
  .single-post {
    padding-bottom: 0rem;
  }
}

.research {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}
.research .capital {
  position: relative;
  display: block;
  font-size: 6.2rem;
  line-height: 1.05;
  min-height: 21rem;
  color: #005393;
  transition: all 1s ease-in-out;
}
.research .capital .typed {
  position: relative;
  display: inline;
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Product Sans", sans-serif;
  font-weight: 700;
  -webkit-transform:translate3d(0,0,0) !important;
  transform:translate3d(0,0,0) !important;
}
.typed-cursor{
  opacity: 1;
  font-weight: 300;
}
.research .capital .typed-wrap {
  position: relative;
  display: inline-block;
  min-height: 9rem;
}
.research .capital .typed span {
  display: none;
}
.research .capital:before {
  content: "";
  position: absolute;
  width: 29.2rem;
  height: 20.4rem;
  background-image: url("../images/logo-brand-part.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: all 1s ease-in-out;
  transform: rotate(18.75deg);
  bottom: -10rem;
  left: -14.5rem;
}
.research .swiper-container {
  height: 100%;
  direction: rtl;
  padding-top: 5rem;
}
.research .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
  align-content: center;
}
.research .swiper-slide {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  min-width: 20rem;
  width: 20rem;
  direction: ltr;
}
.research .swiper-slide:nth-child(2n) {
  transform: translateY(-5rem);
}
.research__head {
  text-align: center;
  margin-bottom: 10rem;
}
.research__content {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  min-height: 40rem;
}
.research__messages {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  z-index: 3;
  width: 50%;
  column-gap: 3rem;
  row-gap: 2rem;
  justify-content: flex-end;
}
.research__messages .swiper-container {
  overflow: hidden;
  width: 50vw;
  min-width: 50vw;
}
.research__messages .swiper-container:after {
  content: "";
  position: absolute;
  width: 5rem;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.research__messages .line {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.research__messages .message {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  min-height: 3.6rem;
  text-align: center;
  padding: 1em 2em;
  border-radius: 3.6rem;
  line-height: 1;
  background-color: var(--bg);
  color: var(--color-white);
  font-size: 1.6rem;
  min-width: 14rem;
}
.research__messages .message:nth-child(2n+1) {
  border-radius: 4rem;
  padding: 0.5em 2em;
  font-size: 1.4rem;
}
.research__messages .message:nth-child(3n+1) {
  border-radius: 3rem;
  padding: 0.5em 2em;
  font-size: 1.8rem;
}
.research .search {
  position: absolute;
  left: 36%;
  transform: translateY(-50%);
  top: 50%;
  height: 50rem;
  bottom: 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: 2;
}
.research .search:before {
  content: "";
  position: absolute;
  width: 20rem;
  top: 0;
  bottom: 0;
  left: 18rem;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, white 5rem, white 5rem, white 100%);
  z-index: -1;
}
.research .search img {
  height: 100%;
  width: auto;
}
.research__decor {
  position: relative;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 50%;
  display: flex;
  justify-content: flex-start;
}
.research__decor .swiper-container {
  overflow: hidden;
  width: 50vw;
  min-width: 50vw;
}
.research__decor picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.way {
  padding: 10rem 0;
  background-color: rgba(42, 110, 164, 0.08);
}
.way .row {
  align-items: center;
  align-content: center;
}
.way p {
  color: #333333;
}
.way .illustration {
  position: relative;
  width: 41.6rem;
  height: 56.5rem;
}
.way .illustration picture {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.way .illustration__bg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.way .illustration__main {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.way .illustration__main picture {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.way .illustration__main picture img {
  width: 100%;
  height: 100%;
}
.way .illustration__main .char {
  z-index: 2;
}
.way .illustration__main .line {
  z-index: 4;
}
.way .illustration__main .line-1 {
  z-index: 0;
}
.way .illustration__main .doc-1, .way .illustration__main .doc-2, .way .illustration__main .doc-3 {
  z-index: 1;
}
.way .illustration__main .doc-4, .way .illustration__main .doc-5 {
  z-index: 3;
}

.mission {
  padding: 10rem 0;
  background-color: var(--color-white);
}
.mission .row {
  align-items: center;
  align-content: center;
}
.mission .illustration {
  position: relative;
  width: 45.9rem;
  height: 43.7rem;
}
.mission .illustration picture {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.mission .illustration__main {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.mission .illustration__search {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mission-about .col-12 {
  text-align: center;
}
.mission-about .col-12:not(:last-child) {
  margin-bottom: 8rem;
}
.mission-about .col-12 h3 {
  max-width: 55rem;
  margin: 0 auto;
  font-weight: 300;
  font-size: 2.6rem;
  color: #000;
}
.mission-about .text {
  text-align: justify;
  max-width: 31.5rem;
}
.mission-about .illustration {
  width: 45rem;
  height: 35.4rem;
}
.mission-about .illustration__notebook {
  z-index: 3;
  position: relative;
}
.mission-about .illustration__woomen {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mission-about .illustration__objects {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mission-about .illustration__objects picture {
  position: absolute;
  left: 0;
  top: 0;
}

.advisors {
  padding: 10rem 0;
  background: #fff;
}
.advisors .container {
  max-width: 99rem;
}
.advisors__head {
  text-align: center;
}
.advisors__head h3 {
  max-width: 55rem;
  font-weight: 300;
  font-size: 2.6rem;
  color: #000;
  margin: 0 auto;
}
.advisors__head:not(:last-child) {
  margin-bottom: 9rem;
}
.advisors .row {
  row-gap: 6.4rem;
}
.advisors .col-lg-6:nth-child(1) .member__image-decor {
  transform: rotate(-115deg);
}
.advisors .col-lg-6:nth-child(1) .aos-animate .member__image-decor {
  transform: rotate(0);
}
.advisors .col-lg-6:nth-child(2) .aos-animate .member__image-decor, .advisors .col-lg-6:nth-child(3) .aos-animate .member__image-decor {
  transform: rotate(145deg);
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(47, 174, 143, 0.95);
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
}
.popup-close {
  position: absolute;
  z-index: 2;
  right: 6rem;
  top: 6rem;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
  width: 2.8rem;
  height: 2.8rem;
  transition: all 0.6s ease-in-out;
}
.popup-close:hover {
  transform: rotate(0.5turn);
}
.popup__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
  padding-top: 15rem;
  padding-bottom: 5rem;
  overflow: auto;
}
.popup__content {
  position: relative;
  display: flex;
  max-width: 110rem;
}
.popup__photo {
  position: relative;
  width: 20rem;
  height: 20rem;
  border-radius: 100%;
  background: var(--color-white);
  margin-right: 10rem;
  transition: all 0.6s ease-in-out 0.6s;
  transform: scale(0);
}
@media (min-width: 992px) {
	.popup__photo {
		position: sticky;
		top: 0;
	}
}
.popup__photo picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.popup__info {
  position: relative;
  flex: 1;
  transition: all 0.6s ease-in-out 0.6s;
  transform: translateY(10rem);
  opacity: 0;
}
.popup__info .name {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
  color: inherit;
}
.popup__info .skills {
  position: relative;
  display: block;
  margin-bottom: 4rem;
}
.popup__info .description {
  position: relative;
  display: block;
  text-align: justify;
  font-size: 1.8rem;
  font-weight: 300;
/*  max-height: 330px;
    overflow-x: hidden;
    overflow-y: auto;*/
  }
  .popup.active {
    opacity: 1;
    visibility: visible;
  }
  .popup.active .popup__photo {
    transform: scale(1);
  }
  .popup.active .popup__info {
    opacity: 1;
    transform: translateY(0);
  }

  .partners {
    padding: 9rem 0;
    position: relative;
    background: #2fae8f;
    color: #fff;
  }
  .partners__head {
    text-align: center;
    margin-bottom: 8rem;
  }
  .partners__head h2 {
    color: inherit;
  }
  .partners__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem;
    max-width: 98rem;
    margin: 0 auto;
  }
  .partners__items .image {
    position: relative;
    width: 100%;
    height: auto;
  }
  .partners__items .image picture {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .partners-item {
    position: relative;
    height: 5rem;
  }
  .partners-item .image, .partners-item picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    max-height: 5rem;
  }
  .partners-item img {
    height: 100%;
    max-height: 5rem;
    width: auto;
  }

  .team {
    padding: 10rem 0;
    background: #eef3f8;
  }
  .team__head {
    text-align: center;
  }
  .team__head h3 {
    max-width: 55rem;
    font-weight: 300;
    font-size: 2.6rem;
    color: #000;
    margin: 0 auto;
  }
  .team__head:not(:last-child) {
    margin-bottom: 9rem;
  }
  .team__items {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
  }
  .team .member:nth-child(1) .member__image-decor {
    transform: rotate(-25deg);
  }
  .team .member:nth-child(2) .member__image-decor {
    transform: rotate(150deg);
  }
  .team .member:nth-child(3) {
    margin-left: 30rem;
  }
  .team .member:nth-child(3) .member__image-decor {
    transform: rotate(-50deg);
  }
  .team .member:nth-child(4) .member__image-decor {
    transform: rotate(10deg);
  }
  .team .member:nth-child(5) {
    margin-left: 25rem;
  }
  .team .member:nth-child(5) .member__image-decor {
    transform: rotate(-90deg);
  }
  .team .member.aos-animate:nth-child(1) .member__image-decor {
    transform: rotate(0);
  }
  .team .member.aos-animate:nth-child(2) .member__image-decor {
    transform: rotate(175deg);
  }
  .team .member.aos-animate:nth-child(3) {
    margin-left: 30rem;
  }
  .team .member.aos-animate:nth-child(3) .member__image-decor {
    transform: rotate(-75deg);
  }
  .team .member.aos-animate:nth-child(4) .member__image-decor {
    transform: rotate(-15deg);
  }
  .team .member.aos-animate:nth-child(5) {
    margin-left: 25rem;
  }
  .team .member.aos-animate:nth-child(5) .member__image-decor {
    transform: rotate(-115deg);
  }

  .member {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 3rem;
    max-width: 40.3rem;
    min-width: 40.3rem;
    transition: all 1s ease-in-out !important;
  }
  .member--big {
    max-width: 47.3rem;
    min-width: 47.3rem;
  }
  .member--big .member__image {
    width: 18rem;
    height: 18rem;
  }
  .member--big .member__info h5 {
    font-size: 2.3rem;
  }
  .member__image {
    position: relative;
    width: 12.5rem;
    height: 12.5rem;
    z-index: 0;
    color: var(--color-green);
    background: currentColor;
    border-radius: 100%;
  }
  .member__image-decor {
    z-index: -1;
    position: absolute;
    left: -5%;
    top: -5%;
    width: calc(110%);
    height: calc(110%);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: all 1s linear;
    background-color: currentColor;
    -webkit-mask-image: url("../images/about/team-mask-2.png");
    mask-image: url("../images/about/team-mask-2.png");
  }
  .member__image-decor.d1 {
    -webkit-mask-image: url("../images/about/team-mask-2.png");
    mask-image: url("../images/about/team-mask-2.png");
  }
  .member__image-decor.d2 {
    -webkit-mask-image: url("../images/about/team-mask-2.png");
    mask-image: url("../images/about/team-mask-2.png");
  }
  .member__image-decor.d3 {
    -webkit-mask-image: url("../images/about/team-mask-3.png");
    mask-image: url("../images/about/team-mask-3.png");
  }
  .member__image-decor.d4 {
    -webkit-mask-image: url("../images/about/team-mask-4.png");
    mask-image: url("../images/about/team-mask-4.png");
  }
  .member__image picture {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 100%;
    overflow: hidden;
  }
  .member__image picture img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
  }
  .member__info {
    flex: 1;
  }
  .member__info h5 {
    font-weight: 600;
    font-size: 1.8rem;
  }
  .member__info h5:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .member__info p {
    font-size: 1.4rem;
    color: #737b80;
  }
  .member__info-links {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    max-width: 65%;
  }

  .read-bio {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-green);
    text-decoration: none;
  }

  .socials {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 1.2rem;
  }
  .socials .social {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    text-decoration: none;
    color: var(--color-green);
  }

  .icon {
    fill: currentColor;
    stroke: currentColor;
    color: inherit;
    width: 100%;
    height: 100%;
  }

  .decor {
    position: absolute;
    width: 28.9rem;
    height: 20.5rem;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: all 0.15s linear;
    background-color: currentColor;
    -webkit-mask-image: url("../images/decor/decor.svg");
    mask-image: url("../images/decor/decor.svg");
  }

  @media (max-width: 1399px) {
    .team__items {
      gap: 0;
      row-gap: 4rem;
    }
    .team .member {
      width: 33%;
      min-width: 33%;
      max-width: 33%;
    }
    .team .member:nth-child(3) {
      margin-left: 0;
    }
    .team .member:nth-child(5) {
      margin-left: 0;
    }
    .team .member.aos-animate:nth-child(3) {
      margin-left: 0;
    }
    .team .member.aos-animate:nth-child(5) {
      margin-left: 0;
    }
  }

  @media (max-width: 1199px) and (min-width: 992px) {
    .hero .text {
      padding-left: 3rem;
    }
  }

  @media (max-width: 1199px) {
    .research .capital .typed-wrap {
      display: inline;
    }
    .research .capital {
      font-size: 5rem;
    }
    .research__messages .message {
      font-size: 1.4rem !important;
    }
    .research .search {
      left: 30%;
    }
    .team__items {
      justify-content: flex-start;
    }
    .team .member {
      width: 50%;
      min-width: 50%;
      max-width: 50%;
      padding-right: 5rem;
    }
  }

  @media (max-width: 991px) {
    h1, .h1 {
      font-size: 4.5rem;
    }
    h2, .h2 {
      font-size: 4rem;
    }
    h3, .h3 {
      font-size: 3rem;
    }
    .button {
      --btn-fz: 1.4rem;
    }
    .header svg {
      height: 27rem;
    }
    .header .button {
      min-width: inherit;
      opacity: 0;
      margin-right: 1rem;
      font-size: 14px;
      padding: 1rem;
      height: auto;
    }
    .preload-out .header .button,
    .not-index .header .button {
     opacity: 1;
   }

   .index.preload-out .header svg {
    height: auto;
    width: 12.6rem;
  }
  .not-index .header svg {
    height: auto;
    width: 12.6rem;
  }
  .not-index .header .menu-button {
    opacity: 1;
  }
  .preload-out .menu-button {
    opacity: 1;
  }
  .menu {
    flex-direction: column;
  }
  .menu_link {
    padding: 2.25rem;
  }
  .menu__wrap {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    max-height: calc(var(--vh, 1vh) * 100);
    padding: 14rem 1.5rem 10rem 1.5rem;
    background-color: #fff;
    box-shadow: 0px 2px 8px 2px rgba(34, 60, 80, 0.22);
    transform: translateY(0);
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
  }
  .menu__wrap > *:not(:last-child) {
    margin-right: 0 !important;
    margin-bottom: 4rem;
  }
  .menu-open {
    overflow: hidden !important;
  }
  .hero {
    padding-top: 16rem;
  }
  .hero .illustration {
    height: auto;
    margin: 0 auto;
  }
  .hero .text-side {
    order: 1;
    text-align: center;
  }
  .hero .image-side {
    order: 2;
  }
  .research {
    padding: 5rem 0;
  }
  .research__head {
    margin-bottom: 5rem;
  }
  .research__messages .line {
    flex-wrap: wrap;
  }
  .research .search {
    left: 22%;
  }
  .research .search:before {
    left: 5rem;
  }
  .way {
    padding: 5rem 0;
  }
  .way {
    text-align: center;
  }
  .way .illustration {
    height: auto;
    margin: 0 auto;
  }
  .mission {
    padding: 5rem 0;
  }
  .mission .image-side {
    order: 2;
  }
  .mission .text-side {
    order: 1;
    text-align: center;
  }
  .mission .illustration {
    height: auto;
    margin: 0 auto;
  }
  .mission-about .col-12:not(:last-child) {
    margin-bottom: 4rem;
  }
  .mission-about .text {
    max-width: 100%;
    margin-bottom: 4rem;
    text-align: center;
  }
  .advisors .member {
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .partners__items {
    gap: 3rem;
  }
  .team .member {
    padding: 0 2.5rem;
  }
  .member {
    flex-direction: column;
    text-align: center;
  }
  .member p {
    max-width: 30rem;
    margin: 0 auto;
  }
  .member__info-links {
    justify-content: center;
    max-width: 100%;
  }
  .member__info-links > *:not(:last-child) {
    margin-right: 4rem;
  }

  .popup__content {
    flex-direction: column;
    align-items: center;
    align-content: center;
  }
  .popup__photo {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .research .swiper-slide:nth-child(2n) {
    transform: translateY(-4rem);
  }
  .research__content {
    min-height: 30rem;
  }
  .research .search {
    height: 27rem;
  }
  .research .search img {
    max-width: inherit;
  }
  .research .search:before {
    width: 15rem;
  }
}

@media (max-width: 767px) {
  .header svg {
    height: auto;
    width: 30rem;
  }
  .menu__wrap {
    transform: translateY(-100%);
  }
  .research .capital {
    min-height: 13rem;
  }
  .research .capital {
    font-size: 3rem;
  }
  .research .swiper-slide {
    width: 17rem;
    min-width: 17rem;
  }
  .research__messages .swiper-container:after {
    width: 1rem;
  }
  .research__messages .message {
    font-size: 1.2rem !important;
  }
  .research .search {
    left: 24%;
  }
  .research__decor .doc img {
    width: 5rem;
  }
  .popup {
    padding: 1.5rem;
  }
  .popup-close {
    right: 1rem;
    top: 1rem;
  }
  .popup__wrapper {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
    overflow: auto;
  }
  .partners__items {
    gap: 2rem;
  }
  .partners-item {
    height: 3.6rem;
    width: 100%;
  }
  .partners-item .image, .partners-item picture, .partners-item igm {
    max-height: 3.6rem;
  }
  .member {
    min-width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 575px) {
  .illustration {
    width: 100% !important;
  }
}

@media (min-width: 992px) {
  .not-index .header .menu__wrap {
    opacity: 1;
    visibility: visible;
  }
  .preload-out .menu__wrap {
    opacity: 1;
    visibility: visible;
  }
  .menu-button {
    display: none;
  }
  .research__messages.show .message {
    transform: scale(1);
    transition: all 1s ease-in-out calc((var(--i)*0.05s)), opacity 1.5s ease-in-out;
  }
  .research__messages.move .message {
    transform: scale(1) translateX(60rem);
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine), (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a:hover {
    text-decoration: none;
  }
}
.jcc {
  justify-content: center;
}
.blog {
  padding: 8.5rem 0;
}
.blog .row > div {
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  .footer .container,
  .blog .container,
  .hero-blog .container {
    max-width: 1030px;
  }
  .blog .header .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .blog .header .container {
    max-width: 1320px;
  }
}
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #F3FCFA;
  text-decoration: none;
}
.blog-card__image {
  position: relative;
  width: 100%;
  height: 26rem;
  background: #C0EAE0;
}
.blog-card__image picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: center;
  padding-top: 2rem;
  overflow: hidden;
}
.blog-card__image img {
  /* width: auto; */
  /* height: auto; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.4s ease-in-out;
  transform-origin: bottom;
}
@media (max-width: 767px) {
  .blog-card__image {
    height: auto;
  }
  .blog-card__image picture {
    padding-top: 0;
  }
  .blog-card__image img {
    position: relative;
    height: auto;
    object-fit: inherit;
  }
}
.blog-card__info {
  position: relative;
  width: 100%;
  flex: 1;
  padding: 4.5rem 3rem;
}
.blog-card__info-top {
  position: relative;
  display: flex;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.blog-card__info-top > * {
  position: relative;
}
.blog-card__info-top > *:not(:last-child) {
  padding-right: 3.4rem;
}
.blog-card__info-top > *:not(:last-child):after {
  content: '';
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  right: 1.4rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 100%;
  background: #2FAE8F;
}
.blog-card-title {
  position: relative;
  display: block;
  width: 100%;
  color: #005393;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.blog-card-date {
  font-weight: 300;
  color: #000000;
  display: inline-block;
}
.blog-card-author {
  font-weight: 300;
  color: #263238;
  display: inline-block;
}
.blog-card-author strong {
  font-weight: 600;
  text-transform: capitalize;
}
.blog-card-description {
  position: relative;
  display: block;
  color: #333;
  font-size: 1.4rem;
  font-weight: 400;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}
.blog__more {
  position: relative;
  text-align: center;
  padding-top: 5rem;
}
.loadmore {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 0 0.5rem;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  font-size: 1rem;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background: rgba(47, 174, 143, 0.63);
  color: #fff;
  text-transform: uppercase;
}
.loadmore:before {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
  z-index: -2;
  background: rgba(47, 174, 143, 1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.loadmore:after {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
  z-index: -2;
  background: rgba(47, 174, 143, 1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.loadmore:hover {
  color: #fff;
}
.loadmore:focus {
  color: #fff;
}
.loadmore:hover:after, .loadmore:focus:after {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  animation: pulse 1.5s infinite;
}

.hero-blog-single,
.hero-blog {
  padding-bottom: 18rem;
}
.hero-blog {
  padding-bottom: 10rem;
}
.hero-blog-single__thumbnails {
/*   height: 48rem; */
	height: auto;
  width: 100%;
  background: #fff;
  overflow: inherit;
}
.hero-blog-single__thumbnails picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: center;
  padding-top: 0rem;
  max-width: 90rem;
  margin: -10rem auto 7.5rem auto;
  background: #C0EAE0;
	border-radius: 1.2rem;
	overflow: hidden;
}
.hero-blog-single__thumbnails img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hero-blog-single__text {
  max-width: 78rem;
  margin: 0 auto;
}
.hero-blog-single__short {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.2rem;
  text-align: justify;
}
.hero-blog-single__info .row {
  align-items: center;
  align-content: center;
  row-gap: 5.6rem;
}
.hero-blog-single h1 {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .hero-blog-single h1 {
    /* margin-bottom: 2rem; */
  }
  .hero-blog-single__info .row {
    row-gap: 2rem;
  }
  .hero-blog-single__info {
    margin-bottom: 2rem;
  }
}
.hero-blog-single .l-side {
  font-size: 1.4rem;
}
.hero-blog-single .l-side > * {
  position: relative;
}
.hero-blog-single .l-side > *:not(:last-child) {
  padding-right: 3.4rem;
}
.hero-blog-single .l-side > *:not(:last-child):after {
  content: '';
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  right: 1.4rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 100%;
  background: #2FAE8F;
}
.hero-blog-single .r-side {
  display: flex;
  justify-content: flex-end;
}
.shares {
  position: relative;
  display: flex;
  gap: 2.2rem;
}

.shares-title {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 1.4rem;
  color: #000;
}
.shares__items {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
}
.share {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.75rem;
  border-radius: 100%;
  background: #2FAE8F;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.share:hover {
  padding: 0.5rem;
}

.blog-single {
  padding: 0rem 0 10rem;
}
.blog-single__content {
  position: relative;
  width: 100%;
  max-width: 81rem;
  margin: 0 auto;
  color: #000;
}
.blog-single__content ul {
	list-style-type: disc;
	padding-left: 1.25em;
}
.blog-single__content ul ul {
	margin-top: 0.5em;
}
.blog-single__content ul li::marker {
	color: #2FAE8F
}
.blog-single__content ul li:not(:last-child) {
	margin-bottom: 0.5em;
}
.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4,
.blog-single__content h5 {
  color: #000;
  font-weight: 700;
}
/**
.blog-single__content a {
	color: #2FAE8F;
	text-decoration: none;
}
***/
.blog-single__content .search-link {
	padding-left: 0
}
.blog-single__content .search-link::marker {
	display: none;
}
.blog-single__content .search-link a {
	position: relative;
	display: inline-flex;
    align-items: baseline;
    align-content: center;
	padding: 0.2rem 0;
	font-size: 2.1rem;
	font-weight: 700;
	text-decoration: none;
	/**text-decoration: underline;
	text-decoration-color: #C0EAE0;
	text-decoration-thickness: 0.4rem;**/
}
/* .blog-single__content .search-link a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 95%;
	height: 0.4rem;
	background: #C0EAE0;
} */
.blog-single__content .search-link a:before {
	content: '';
	position: relative;
	width: 2rem;
	min-width: 2rem;
	height: 1.6rem;
	
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: all 0.15s linear;
    background-color: currentColor;
    -webkit-mask-image: url("../images/icons/icon-link.svg");
    mask-image: url("../images/icons/icon-link.svg");
	margin-right: 0.3rem;
}
.blog-single__content blockquote {
	position: relative;
	margin: 0;
	padding: 5.8rem 6.5rem;
	padding-left: 13.5rem;
	border-radius: 2rem;
	overflow: hidden;
	background: url('../images/redesign/background.jpg');
	background-repeat: none;
	background-size: cover;
	background-position: center center;
	font-size: 1.6rem;
	line-height: 2.5rem;
	color: #333333;
}
.blog-single__content blockquote:before {
	content: '';
	position: absolute;
	left: 4.5rem;
	top: 6.6rem;
	width: 5.2rem;
	min-width: 5.2rem;
	height: 4.1rem;
	
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: all 0.15s linear;
    background-color: #fff;
    -webkit-mask-image: url("../images/icons/icon-quote-left.svg");
    mask-image: url("../images/icons/icon-quote-left.svg");
}
@media (max-width: 767px) {
	.blog-single__content blockquote {
		padding-left: 6.5rem;
		padding-top: 8rem;
	}
	.blog-single__content blockquote:before {
		left: 4rem;
		top: 4rem;
	}
}
.blog-single__content blockquote strong {
	font-weight: 700;
}
.blog-single__content h4 {
  font-size: 2.8rem;
}
.blog-single__content p {
  text-align: justify;
  font-weight: 400;
}

.table-of-content {
  position: relative;
  background: #EEF3F8;
  padding: 9.2rem 0;
}
.table-of-content .decor-2 {
  top: calc(100% - 15rem);
  left: -8rem;
  transform: rotate(45.81deg) scale(1, -1);
}
.table-of-content .decor {
  background-color: var(--color-white);
}
.table-of-content:not(:last-child) {
  margin-bottom: 5rem;
}
.table-of-content__wrap {
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
}
.table-of-content__head {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2.4rem;
}
.table-of-content__body {
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
}
.table-of-content ol { counter-reset: item }
.table-of-content ol ol {
  margin-top: 1rem;
}
.table-of-content ol li { display: block }
.table-of-content ol li:before { content: counters(item, ".") ". "; counter-increment: item }
.table-of-content ol li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.table-of-content a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease-in-out;
}
.table-of-content a.active,
.table-of-content a:hover {
  color: var(--color-green);
}

@media (max-width: 767px) {
  .table-of-content {
    padding: 4rem 2rem;
  }
}

@media (max-width: 767px) {
  .hero-blog-single__short {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .hero-blog-single {
    padding-bottom: 19rem;
  }
  .hero-blog-single__thumbnails {
/*     height: 25rem; */
	  height: auto;
    margin-top: -12.5rem;
    margin-bottom: 0;
  }
  .hero-blog-single .r-side {
    justify-content: flex-start;
  }
  .blog-single__content p {
    text-align: left;
  }

}

.contact {
  padding: 75px 0 112px 0;
}
.contact_head {
  text-align: center;
  margin-bottom: 90px;
  color: #000;
}
.contact_head h3 {
  color: inherit;
}
@media (max-width: 767px) {
  .contact_head h3 br {
    display: none;
  }
}
.contact_head h3:not(:last-child) {
  margin-bottom: 2.8rem;
}
.social_links--contact {
  justify-content: center;
}
.social_links--contact a {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
}
.social_links--contact a:not(:last-child) {
  margin-right: 11px;
}
.social_links--contact a img {
  width: 100%;
  height: auto !important;
}

.contact .illustration {
  position: relative;
  width: 100%;
  max-width: 41.7rem;
  margin: 0 auto;
  height: 100%;
}
.contact .illustration__men {
  position: relative;
  width: 100%;
  height: auto;
}
.contact .illustration__qs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.contact .illustration__qs picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contact .form_field {
  width: 100%;
}
.contact input,
.contact textarea {
  padding: 14px 22px;
  background: #F4FBF9;
  font-size: 16px;
  font-weight: 400;
  color: #005393;
  min-height: 62px;
  border: none;
  outline: none;
  width: 100%;
}
.contact textarea {
  min-height: 247px;
}
@media (max-width: 767px) {
  .contact textarea {
    min-height: 125px;
  }
}
.contact .form .button {
  width: 100%;
}
.contact_form-text {
  padding-top: 42px;
  font-weight: 600;
  color: #000;
}
.footer_content {
  position: relative;
  display: flex;
}
.footer_logo {
  margin-right: auto;
}
.footer .row > div:nth-child(1) {
  flex: 1
}
.footer_menus {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  margin: 0 -5rem;
}
.footer_menus > div {
  padding: 0 5rem;
}
.footer_menu-wrap {
  position: relative;
  display: flex;
  /* flex-wrap: wrap; */
  font-size: 1.4rem;
  line-height: 2;
}
.footer_menu-wrap:not(:last-child) {
  margin-bottom: 4rem;
}
.footer_menu-title {
  position: relative;
  color: #808080;
  font-weight: 700;
  width: 9rem;
  min-width: 9rem;
}
.footer_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  color: #085394;
  font-weight: 400;
  width: 20rem;
}
.footer_menu-wrap-1 .footer_menu {
  width: 10rem;
}
.footer_menu > li {
  width: 50%;
  margin: 0;
}
.footer_menu > li a {
  padding: 0 !important;
}
.footer_menu-1 > li {
  width: 100%;
}
.footer_logo svg {
  height: 8rem;
}
.footer_logo .word {
  fill: #1a171b;
}
.footer_logo .def-path {
  fill: #2fae8f;
}
.footer_logo .anim {
  fill: #005393;
}
.footer .menu_link:before,
.footer .menu_link:after {
  display: none;
}
.footer .social_links a {
  margin-left: 0 !important;
}
.footer .social_links a:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .footer_menu {
    margin: -1rem;
    width: auto;
  }
  .footer_menu-wrap-1 .footer_menu {
    width: auto;
  }
  .footer_menu > li {
    width: auto !important;
    margin: 1rem;
  }
  .footer_menu-wrap {
    flex-wrap: wrap;
  }
  .footer_menu-title {
    width: 100%;
  }
  .footer_logo {
    text-align: center;
  }
  .footer_logo .word {
    display: none;
  }
  .footer_logo svg {
    transform: translateX(4rem);
  }
}

@media (max-width: 767px) {
  .footer_content {
    flex-direction: column;
  }
  .footer_content > *:not(:last-child) {
    margin-bottom: 4rem;
  }
  .footer_logo {
    width: 100%;
  }
  .footer_menus {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .row {
    row-gap: 0;
  }
  .footer_menu-wrap {
    justify-content: center;
    text-align: center;
  }
  .social_links {
    justify-content: center;
  }
}
.popup-sign {
  background: rgba(0, 83, 147, 0.8);
}
.popup-sign .popup__wrapper {
  align-items: center;
  align-content: center;
}
@media (max-width: 767px) {
  .popup-sign .popup__content {
    max-width: 100%;
  }
  .popup-sign .form_wrap {
    max-width: 100%;
  }
}
.popup-sign .popup__content h2 {
  color: #fff;
  margin-bottom: 5rem;
  font-weight: 700;
}
.popup-sign .popup__content {
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #fff;
}
.popup-sign .form_wrap {
  position: relative;
  max-width: 52rem;
}
.popup-sign .show-popup {
  display: flex;
  justify-content: center;
}
.popup-sign .box {
  max-width: 48rem;
}
.popup-sign  .participation .button-custom-style {
  background: #005393;
}

.wpcf7-response-output {
  font-size: 2.2rem !important;
  text-align: center;
}


.mobile_sticky-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 1.8rem;
  overflow: visible !important;
  z-index: 3;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.mobile_sticky-btn.aos-animate {
  opacity: 1;
  visibility: visible;
}
.mobile_sticky-btn .button {
  overflow: visible;
}
@media (min-width: 992px) {
  .mobile_sticky-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile_sticky-btn .button {
    width: 100%;
  }
}