@charset "UTF-8";
:root {
  --phone: 768px;
  /* COLORS */
  --text: #1c1c1c;
  --secondText: #565656;
  --accent: #3EB5E6;
  --secondAccent: #49a042;
  --background: #fbfbfb;
  --placeholder: #9f9f9f;
  --hoverColor: #0A115C;
  --darkGray: #f1f1f1;
  --color-main-block: #ECEEFF;
  --color-silver: #C0C0C0;
  --color-soft-blue: #BB79FF;
  --color-global-text: #17425D;
  /* VALUES */
  --titleXXL: 84px;
  --titleXL: 64px;
  --titleL: 48px;
  --titleM: 32px;
  --button-font-size: 24px;
  --textXL: 24px;
  --textL: 20px;
  --textMD: 16px;
  --textXs: 12px;
  /* Other */
  --mainFont: "Roboto", sans-serif;
  --brsXL: 32px;
  --brsL: 24px;
  --brsMD: 16px;
  --brsXS: 12px;
  --border-radius-main: 32px;
  --shadow: 10px 10px 25px 20px rgba(0, 0, 0, 0.03);
  --margin-section: 64px;
  --padding-section: 64px;
  --padding-text-section: 48px;
  --gap: 32px;
  --margin: 64px;
  --gap-small: 24px;
  --footer-padding: 96px;
}

@media (max-width: 1024px) {
  :root {
    --titleXL: 48px;
    --titleL: 36px;
    --titleM: 28px;
    --textXL: 20px;
    --textL: 16px;
    --margin-section: 48px;
    --padding-section: 32px;
    --gap: 24px;
    --footer-padding: 96px 48px;
  }
}
@media (max-width: 768px) {
  :root {
    --titleXL: 32px;
    --titleL: 24px;
    --titleM: 20px;
    --button-font-size: 18px;
    --textXL: 18px;
    --textL: 16px;
    --textMD: 14px;
    --margin-section: 32px;
    --padding-section: 24px;
    --padding-text-section: 32px;
    --gap: 16px;
    --gap-small: 12px;
    --margin: 32px;
    --border-radius-main: 24px;
    --footer-padding: 64px 32px;
  }
}
@media (max-width: 450px) {
  :root {
    --titleXL: 28px;
    --button-font-size: 16px;
    --border-radius-main: 16px;
    --footer-padding: 48px 20px;
  }
}
* {
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-global-text) !important;
  background: var(--background);
  font-family: var(--mainFont);
}

.layout h1, h2, h3, h4, h5, h6 {
  font-family: var(--mainFont) !important;
}

.layout h1 {
  font-size: var(--titleXXL);
  /*margin: 0;*/
}

.layout h2 {
  font-size: var(--titleL);
  margin: 0;
  line-height: 110%;
  font-weight: bold;
}

.layout h3 {
  margin: 0;
  font-size: var(--titleM);
  line-height: 1.25em;
  font-weight: bold;
}

.layout h4 {
  margin: 0;
  font-size: var(--textXL);
  line-height: 1.25em;
}

.layout h5 {
  margin: 0;
  font-size: var(--textL);
  line-height: 31px;
}

.layout p {
  margin: 0;
  font-size: var(--textMD);
  line-height: 1.3;
}

.layout img {
  pointer-events: none;
  height: revert-layer;
  max-width: none;
}

.blockquote {
  all: unset;
}

/* LAYOUT */
.layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 104px;
}

/* LAYOUT END */
.site-main {
  padding: 0 0 0 0 !important;
}

.img-main-hidden img {
  display: none;
  margin: auto;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img {
  outline: none !important;
}

/* COMPONENTS */
/* Button */
.button-main {
  display: block;
  text-align: center;
  border: none;
  background: none;
  padding: 12px 24px;
  border-radius: 36px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
.button-main:active {
  transform: scale(0.9);
  transition: 0.3s;
}

#animate_button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#animate_button:active {
  transform: scale(0.9);
  transition: 0.3s;
}

/* BLUE */
.button__blue {
  background: var(--accent);
  color: white;
}
.button__blue:hover {
  background: #0A115C;
}

.button__soft_blue {
  background: var(--color-soft-blue);
  color: white !important;
}
.button__soft_blue:hover {
  background: #9043C8;
}

.button__big {
  font-size: var(--button-font-size);
  padding: 20px 40px;
  border-radius: var(--brsMD);
}

.button__large {
  font-size: var(--textXL);
  padding: 24px 62px;
  border-radius: var(--brsMD);
}

.button__outline {
  color: var(--text);
  background: transparent;
  border: 2px solid var(--text);
}

/* TAB */
.tab {
  display: inline-flex;
  gap: 2px;
  padding: 10px;
  border-radius: var(--brsMD);
  background: var(--darkGray);
}

.tab-item {
  font-size: var(--textXL);
  color: var(--secondText);
  font-weight: 500;
  text-align: center;
  padding: 24px 40px;
  transition: all 0.4s;
  cursor: pointer;
}

.tab-item__active {
  border-radius: var(--brsMD);
  color: var(--text);
  background: white;
}

/* LINK */
.link {
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--accent);
  background-color: #E8F2FF;
  width: max-content;
  padding: 15px 34px;
  border-radius: var(--brsXS);
}

.link:hover {
  background-color: var(--accent);
  color: white;
}

/* LINK END  */
/* COMPONENTS END */
.page-id-863 .post-list li time {
  color: #666;
  margin-top: 20px;
}

.in_progress {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.in_progress h2 {
  text-align: center;
}

.in_progress a {
  text-decoration: none;
}

.in_progress a:hover {
  color: var(--accent);
}

@media screen and (max-width: 768px) {
  h1 {
    line-height: 1.25em !important;
  }
  .layout {
    padding: 0 20px;
  }
  /* COMPONENTS */
  /* BUTTON */
  .button__large {
    padding: 19px;
    font-size: var(--textL);
  }
  /* BUTTON END */
  /* TAB */
  .tab {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-bottom: 6px;
  }
  .tab-item {
    padding: 19px;
    font-size: var(--textL);
  }
  /* TAB END*/
  /* COMPONENTS  END*/
  .site-main {
    padding: 0 0 32px 0 !important;
  }
  .img-main-hidden img {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .layout {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .layout {
    padding: 0 50px;
  }
}
.accent-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.accent-link:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
.accent-link:not(:hover) {
  transition: 0.3s;
}

.margin-section {
  margin-bottom: var(--margin-section);
}

.bread__crumbs {
  display: flex;
  width: max-content;
  background-color: white;
  padding: 16px;
  border-radius: var(--brsMD);
  font-weight: bold;
  font-size: var(--textMD);
}
.bread__crumbs > span {
  color: var(--color-silver);
}
.bread__crumbs a {
  color: var(--accent);
  text-decoration: none;
}

.img-main-hidden img {
  margin-bottom: -80px;
  width: 100%;
}

.section-hide-second {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-main-block);
  border-radius: var(--border-radius-main);
  padding: var(--padding-section);
  gap: var(--gap);
}
.section-hide-second .content-block {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.section-hide-second .image-block-visible img {
  position: relative;
  left: calc(var(--padding-section) + 24px);
}
.section-hide-second img {
  width: 100%;
}

@media (max-width: 768px) {
  .section-hide-second {
    grid-template-columns: 1fr;
  }
  .section-hide-second .content-block {
    text-align: center;
  }
  .section-hide-second .image-block-visible {
    display: none !important;
  }
}
.grid-for-two-block, .strategy-advanced, .service-description .service-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .grid-for-two-block, .strategy-advanced, .service-description .service-grid {
    grid-template-columns: 1fr;
  }
}

.section-only-text {
  border-radius: var(--border-radius-main);
  padding: var(--padding-text-section);
}
.section-only-text h2 {
  margin-bottom: 0.75em;
}
.section-only-text p {
  font-size: var(--textXL);
}
.section-only-text p:not(:last-child) {
  margin-bottom: 0.5em;
}
@media (max-width: 450px) {
  .section-only-text .centered-head {
    text-align: center;
  }
}

.meeting_block {
  display: grid;
}
.meeting_block img {
  width: 100%;
  border-top-left-radius: var(--brsXL);
  border-top-right-radius: var(--brsXL);
}
.meeting_block div {
  padding: var(--padding-section);
  border-bottom-left-radius: var(--brsXL);
  border-bottom-right-radius: var(--brsXL);
  background-color: #ECEEFF;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  z-index: 1;
}
.meeting_block div h2 {
  color: var(--hoverColor);
}
.meeting_block div p {
  font-size: var(--textL);
}
.meeting_block div .link {
  background-color: var(--accent);
  color: white;
  font-size: var(--textL);
}
.meeting_block div .link:hover {
  background-color: var(--hoverColor);
}
@media (max-width: 450px) {
  .meeting_block img {
    position: relative;
    top: var(--brsXL);
  }
  .meeting_block div {
    border-radius: var(--brsXL);
  }
  .meeting_block div .link {
    width: 100%;
    text-align: center;
  }
}

.container__latest-posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  color: var(--color-global-text) !important;
}
.container__latest-posts img {
  max-width: 370px !important;
  height: auto !important;
  max-height: 200px;
  border-radius: 36px !important;
  object-fit: cover;
}
.container__latest-posts .post-item {
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: linear-gradient(106.88deg, #EFF3F5 -3.04%, #ADDCEF 109.71%);
  border-radius: 36px;
  padding: 30px;
}
.container__latest-posts .post-item .post-image {
  text-align: center;
}
.container__latest-posts .post-item .post-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.container__latest-posts .post-item .post-content .post-title {
  line-height: 0.85;
}
.container__latest-posts .post-item .post-content .post-title a {
  color: var(--color-global-text) !important;
  font-weight: bold;
  font-size: 22px;
}
.container__latest-posts .post-item .post-content p {
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .container__latest-posts {
    grid-template-columns: 1fr;
  }
  .container__latest-posts img {
    border-radius: 24px !important;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .container__latest-posts img {
    width: 270px !important;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) and (max-width: 768px) {
  .container__latest-posts img {
    width: 200px !important;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .container__latest-posts .post-item {
    flex-direction: row;
  }
  .container__latest-posts .post-item .post-image {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .container__latest-posts .post-item {
    padding: 24px;
  }
}
.faq-question {
  cursor: pointer;
}
.faq-question .dropdown-arrow {
  margin-left: 0;
  display: flex;
  align-items: center;
  position: initial;
  width: 48px;
  height: 48px;
  background-color: #E9F7FD;
  color: var(--color-global-text);
  border-radius: 8px;
}
.faq-question .dropdown-arrow:after, .faq-question .dropdown-arrow:before {
  height: 12px;
  width: 3px;
  border-radius: 2px;
}
.faq-question .dropdown-arrow:after {
  left: 26px;
}
.faq-question .dropdown-arrow:before {
  left: 19px;
}

.faq-answer {
  overflow: hidden;
  visibility: hidden;
}
.faq-answer.elementor-widget {
  position: absolute;
}
.faq-answer.up {
  visibility: visible;
}
.faq-answer.up.elementor-widget {
  position: inherit;
}

@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
button:focus {
  outline: none !important;
}

.header {
  padding-inline: 32px;
  position: fixed;
  top: 24px;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: 0.3s;
}
.header img {
  width: 100%;
}
.header .header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--textMD);
  gap: 5px;
  padding: 32px 32px 32px 48px;
  background: #FFFFFF;
  border-radius: 80px;
  box-shadow: 4px 3px 10px rgba(0, 112, 210, 0.1);
  transition: 0.3s;
}
.header a {
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: var(--mainFont);
  color: inherit;
  line-height: 1.2;
}
.header p {
  font-family: var(--mainFont);
}
.header .normal-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header .normal-menu .header-list {
  display: flex;
  align-items: center;
  padding: 0;
}
.header .normal-menu .header-list > li {
  padding: 8px 16px;
  font-weight: 700;
}
.header .normal-menu .header-list li {
  line-height: 130%;
  border-radius: 36px;
  margin: 0;
  list-style: none;
  transition: 0.2s;
  cursor: pointer;
}
.header .normal-menu .header-list li a[aria-current] {
  color: var(--accent);
}
.header .normal-menu .header-list li .sub-menu {
  display: none;
  position: fixed;
  background-color: white;
  padding: var(--gap);
  border-radius: var(--brsMD);
  cursor: auto;
  box-shadow: var(--shadow);
}
.header .normal-menu .header-list li .sub-menu .sub-menu {
  position: initial;
  padding: 0;
  box-shadow: none;
}
.header .normal-menu .header-list li .sub-menu .sub-menu a {
  padding-left: 24px;
}
.header .normal-menu .header-list li .sub-menu a, .header .normal-menu .header-list li .sub-menu p {
  padding: 8px;
  text-align: left;
}
.header .normal-menu .header-list li .sub-menu .refactor-ul {
  display: grid;
}
.header .normal-menu .header-list li .sub-menu .refactor-ul div {
  display: flex;
  flex-direction: column;
}
.header .normal-menu .header-list li .sub-menu .refactor-ul p {
  font-weight: bold;
}
.header .normal-menu .header-list li .sub-menu .refactor-ul a:hover {
  color: var(--accent);
}
.header .normal-menu .header-list li:hover > a {
  color: var(--accent);
}
.header .normal-menu .header-list li:hover .dropdown-arrow:after, .header .normal-menu .header-list li:hover .dropdown-arrow:before {
  background-color: var(--accent);
}
.header .normal-menu .button-main {
  padding: 16px 30px;
  line-height: 130%;
}

.header__press-top {
  top: 6px;
  padding-inline: 0;
  box-shadow: 4px 3px 10px rgba(0, 112, 210, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.header__press-top .header-nav {
  box-shadow: none;
  padding: 14px 48px;
  background: transparent;
}

.sub-menu_active {
  display: block !important;
  animation-name: opacity;
  animation-duration: 0.2s;
}

.dropdown-arrow {
  position: relative;
  margin-left: 8px;
  top: 6px;
}
.dropdown-arrow:before, .dropdown-arrow:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 8px;
  border-radius: 1px;
  background-color: var(--color-global-text);
  transition: transform 0.3s ease;
}
.dropdown-arrow:before {
  transform: rotate(-45deg);
}
.dropdown-arrow:after {
  left: 4.5px;
  transform: rotate(45deg);
}
.dropdown-arrow.up::before {
  transform: rotate(45deg);
}
.dropdown-arrow.up::after {
  transform: rotate(-45deg);
}

.header-burger {
  display: none;
  cursor: pointer;
  background-color: transparent !important;
}

.sub-menu-toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header .normal-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
  }
  .header .normal-menu .header-list {
    display: block;
    overflow: auto;
    height: 75%;
    position: relative;
    top: 5%;
  }
  .header .normal-menu .header-list li {
    font-weight: bold;
  }
  .header .normal-menu .header-list li:hover {
    box-shadow: none;
    background-color: white;
  }
  .header .normal-menu .header-list li .sub-menu {
    display: block;
    position: initial;
    box-shadow: none;
    font-weight: normal;
    padding: 4px;
  }
  .header .normal-menu .header-list li .sub-menu li {
    font-weight: normal;
  }
  .header .normal-menu .header-list li .sub-menu .refactor-ul {
    grid-template-columns: 1fr !important;
  }
  .header .normal-menu .header-list li .dropdown-arrow {
    display: none;
  }
  .header .normal-menu .button-main {
    display: none;
  }
  .header .button-main {
    display: none;
  }
  .header-burger {
    width: 36px;
    min-width: 36px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: transparent;
    padding: 0;
  }
  .header-burger span {
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
  }
  .header__menu-open {
    transition: none;
    backdrop-filter: none;
  }
  .header__menu-open .normal-menu {
    visibility: visible;
    opacity: 1;
  }
  .header__menu-open .header-burger {
    position: relative;
    z-index: 3;
  }
  .header__menu-open .header-burger span {
    transition: transform 0.3s ease;
    position: absolute;
  }
  .header__menu-open .header-burger span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .header__menu-open .header-burger span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-open .header-burger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  .header__press-top {
    top: 0;
    background: white;
    backdrop-filter: none;
  }
  .header__press-top .header-nav {
    background: white;
  }
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    padding: 20px 32px;
  }
  .header.header__press-top .header-nav {
    padding: 14px 32px;
  }
  .header-logo {
    position: relative;
    z-index: 3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .normal-menu {
    display: none;
  }
}
@media (max-width: 450px) {
  .header {
    top: 0;
    padding: 0;
  }
  .header img {
    max-width: 158px;
  }
  .header .header-nav {
    border-radius: 0;
    padding: 20px 20px;
  }
  .header.header__press-top .header-nav {
    padding: 14px 20px;
  }
}
.advantage {
  margin-bottom: 81px;
  padding: 0 7px;
}

.advantage-content {
  display: flex;
  gap: 50px;
}

.advantage-content_title {
  margin-bottom: 18px !important;
}

.advantage-content_description {
  line-height: 22px;
}

.advantage-content_description:nth-child(2) {
  margin-bottom: 22px;
}

.advantage-content_text {
  margin-bottom: 20px;
}
.advantage-content_text h2 {
  font-size: var(--titleM);
}

/* BLOCKQUOTE */
.blockquote {
  display: grid;
  grid-template-columns: 106px 1fr;
  grid-template-rows: 1fr auto;
  gap: 11px 21px;
  padding: 22px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  margin: auto;
}

.blockquote-image img {
  border-radius: 100%;
  overflow: hidden;
}

.blockquote-quote {
  font-weight: 600;
  line-height: 22px;
}

.blockquote-author {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--placeholder);
  grid-column-start: 2;
}

/* BLOCKQUOTE END */
@media screen and (max-width: 768px) {
  .advantage {
    padding: 0;
    margin-bottom: 37px;
  }
  .advantage-content_left {
    display: none;
  }
  .advantage-content_title {
    text-align: center;
    line-height: normal;
    margin-bottom: 22px !important;
  }
  .advantage-content_text {
    margin-bottom: 24px;
  }
  .advantage-content_text h2 {
    font-size: var(--titleL);
  }
  .advantage-content_description {
    line-height: 19.6px;
  }
  .advantage-content_description:nth-child(2) {
    margin-bottom: 14px;
  }
  .blockquote {
    padding: 30px;
    gap: 21px 11px;
    grid-template-columns: 59px 1fr;
  }
  .blockquote-right {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .blockquote-quote {
    font-size: var(--textXL);
  }
  .blockquote-image img {
    width: 59px;
    height: 59px !important;
  }
  .blockquote-author {
    display: flex;
    flex-direction: column;
    padding-top: 11px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .advantage-content_left {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .advantage-image img {
    max-width: 573px;
    width: 100%;
    min-width: 400px;
    object-fit: contain;
  }
}
.banner {
  margin-bottom: 121px;
}

.banner-title {
  font-weight: 500;
  margin-bottom: 35px;
}

.banner-content {
  display: flex;
  align-items: flex-start;
  gap: 105px;
}

.banner_description {
  margin: 0 0 53px !important;
  font-size: var(--textXL) !important;
  line-height: 33px;
}

.banner-content_left {
  padding: 0 6px;
}

.banner-buttons {
  display: flex;
  gap: 30px;
}

.banner-content_right {
  position: relative;
  min-width: 424px;
  height: 100%;
}

.banner-image {
  position: absolute;
  top: -72px;
  left: -7px;
  max-width: 455px;
  max-height: 341px;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .banner {
    margin-bottom: 125px;
  }
  .banner-title {
    display: none;
  }
  .banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }
  .banner_description {
    text-align: center;
    line-height: 22px;
    margin-bottom: 0 !important;
    font-weight: 500;
  }
  .banner-buttons {
    position: absolute;
    bottom: -84px;
    left: 50%;
    margin-right: -50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 12px;
    z-index: 1;
    width: 335px;
  }
  .banner-content_right {
    min-width: unset;
  }
  .banner-image {
    position: static;
  }
  .banner-image img {
    width: 100%;
    max-height: inherit;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .banner-title {
    font-size: 60px;
  }
  .banner-content_right {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .banner-buttons {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 400px) {
  .banner-buttons {
    width: 100%;
  }
}
@keyframes smooth {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes forms {
  from {
    max-height: 0;
  }
  to {
    max-height: 95%;
  }
}
.container-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: smooth;
  animation-duration: 0.5s;
}

.container-forms {
  background: white;
  min-width: 50%;
  position: fixed;
  border-radius: 5px;
  max-height: 95%;
  display: flex;
  flex-direction: column;
  animation-name: forms;
  animation-duration: 1.75s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.container-forms .close-form {
  height: 5vh;
  text-align: end;
}

.container-forms .close-form img {
  height: 100%;
  vertical-align: baseline;
  cursor: pointer;
}

.container-forms .close-form img:hover {
  transform: rotateZ(180deg);
  transition: 1s;
}

.container-forms #forms {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  max-height: calc(100% - 5vh);
}

.container-forms #forms .submitted-message {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .container-forms {
    min-width: 75%;
  }
}
@media screen and (max-width: 350px) {
  .container-forms {
    min-width: 100%;
  }
}
@keyframes hidden {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.section_banner {
  padding: 0 32px;
  max-width: 1440px;
  margin: auto !important;
  position: relative;
}
.section_banner img {
  width: 100%;
}
.section_banner .banner_content {
  position: relative;
  max-height: 580px;
  overflow: hidden;
  display: flex;
  border-radius: var(--border-radius-main);
  align-items: center;
}
.section_banner .banner_content h1 {
  display: flex;
  padding-left: 64px;
  font-size: var(--titleXL);
  font-weight: bold;
  color: white;
  position: absolute;
  top: 0;
  text-shadow: 0 0 1em black, 0 0 2em black, 0 0 3em black;
  width: 100%;
  height: 100%;
  align-items: center;
}
.section_banner .bread__crumbs {
  position: absolute;
  margin: 32px;
  bottom: 0;
}

.layout:has(.ms-developing) {
  margin-top: 0 !important;
}
.layout:has(.ms-developing) p {
  line-height: 1.5;
}

.ms-developing h2 {
  margin: 64px 0;
  text-align: center;
}
.ms-developing p {
  font-size: var(--textL);
  margin-bottom: 12px;
}
.ms-developing .ms-developing_grid {
  margin: 48px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
}
.ms-developing .ms-developing_grid.reverse {
  grid-template-columns: 1fr 2fr;
}
.ms-developing .ms-developing_grid img {
  width: 100%;
  max-width: max-content;
}
.ms-developing .ms-developing_grid h3 {
  margin: 0 0 var(--gap) 0;
}

.workflow h2 {
  text-align: center;
  margin: 32px 0;
}
.workflow .points {
  display: flex;
  flex-direction: column;
}
.workflow .points .point {
  border-bottom: 2px solid #E4E4E4;
  position: relative;
}
.workflow .points .point p {
  font-size: var(--textL);
}
.workflow .points .point:first-child {
  padding: 0 32px 32px;
}
.workflow .points .point:not(:first-child) {
  padding: 32px;
}
.workflow .points .point div:first-child {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.workflow .points .point div:first-child .point_title {
  background-color: #EBF5FF;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: var(--brsL);
}
.workflow .points .point div:first-child::before {
  content: "—";
  position: absolute;
  right: 0;
  max-width: 20px;
}
.workflow .points .point div:first-child::after {
  content: "—";
  transition: transform 0.3s ease-in-out;
  transform: matrix(0, 1, 1, 0, -1, 1);
  max-width: 20px;
}
.workflow .points .point div:last-child {
  overflow: hidden;
  visibility: hidden;
  position: absolute;
}
.workflow .points .point div:last-child p {
  margin-top: 16px;
}
.workflow .points .point div:last-child p:not(:first-child) {
  margin-top: 12px;
}
.workflow .points .point.active div:first-child::after {
  transform: none;
}
.workflow .points .point.active div:last-child {
  position: inherit;
  visibility: visible;
}
.workflow .points .point:last-child {
  border: none;
}

@media (max-width: 1024px) {
  .ms-developing h2 {
    margin: 32px 0;
  }
}
@media (max-width: 768px) {
  .section_banner {
    padding: 0 20px;
  }
  .section_banner .banner_content h1 {
    text-align: center;
    padding-left: 0;
    justify-content: center;
  }
  .section_banner .bread__crumbs {
    margin: 24px 0;
    position: relative;
    background-color: #F2F2F2;
    flex-direction: column;
  }
  .ms-developing h2 {
    margin: 24px 0;
  }
  .ms-developing p {
    margin-bottom: 8px;
  }
  .ms-developing .ms-developing_grid {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ms-developing .ms-developing_grid.reverse {
    flex-direction: column-reverse;
  }
  .ms-developing .ms-developing_grid h3 {
    margin: var(--gap) 0;
  }
  .workflow h2 {
    margin: 16px 0;
  }
  .workflow .points .point:first-child {
    padding: 0 0 16px 0;
  }
  .workflow .points .point:not(:first-child) {
    padding: 16px 0;
  }
}
.marketing-analytics-main {
  position: relative;
}
.marketing-analytics-main h1 {
  font-size: var(--titleXL);
  font-weight: 600;
  width: 140%;
  z-index: 1;
}
.marketing-analytics-main .content-block {
  gap: calc(var(--gap) * 2);
  padding-bottom: var(--gap);
}
.marketing-analytics-main .content-block .button-main {
  width: max-content;
}
.marketing-analytics-main .image-block-visible {
  display: flex;
  justify-content: flex-end;
}
.marketing-analytics-main .bread__crumbs {
  position: absolute;
  padding: 0;
  bottom: calc(var(--padding-section) / 3);
  left: calc(var(--padding-section) / 2);
  background: transparent;
}

@media (max-width: 768px) {
  .marketing-analytics-main h1 {
    width: 100%;
  }
  .marketing-analytics-main .content-block {
    align-items: center;
  }
  .marketing-analytics-main .bread__crumbs {
    position: initial;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 450px) {
  .marketing-analytics-main .content-block .button-main {
    width: 100%;
  }
}
.section-text p {
  font-size: var(--textXL);
  line-height: 1.3;
}
.section-text p:first-child {
  margin-bottom: calc(var(--gap) / 2);
}

@media (max-width: 768px) {
  .section-text p {
    text-align: center;
    text-wrap: balance;
  }
}
.section-who-needs .who-needs-block {
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-small);
  padding: 32px;
  border-radius: var(--brsL);
  box-shadow: var(--shadow);
  box-shadow: none;
  border: 2px solid black;
}
.section-who-needs .who-needs-block img {
  height: 64px;
}
.section-who-needs .who-needs-block p {
  line-height: 1.3;
}

@media (max-width: 768px) {
  .section-who-needs img {
    height: 48px !important;
  }
}
.section-solution {
  display: grid;
  grid-template-rows: 1fr;
  gap: var(--gap);
  justify-items: center;
}
.section-solution h1 {
  margin-bottom: calc(var(--margin-section) / 2);
  text-align: center;
}
.section-solution img {
  width: 100%;
}
.section-solution .grid-for-two-block, .section-solution .strategy-advanced, .section-solution .service-description .service-grid, .service-description .section-solution .service-grid {
  background-color: white;
  padding: 32px;
  box-shadow: var(--shadow);
  border-radius: var(--brsL);
  justify-items: center;
}
.section-solution .grid-for-two-block .solution-img-block, .section-solution .strategy-advanced .solution-img-block, .section-solution .service-description .service-grid .solution-img-block, .service-description .section-solution .service-grid .solution-img-block {
  display: flex;
  overflow: hidden;
  border-radius: inherit;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .section-solution .grid-for-two-block .solution-img-block, .section-solution .strategy-advanced .solution-img-block, .section-solution .service-description .service-grid .solution-img-block, .service-description .section-solution .service-grid .solution-img-block {
    max-height: 200px;
  }
}
.section-solution .grid-for-two-block .solution-block, .section-solution .strategy-advanced .solution-block, .section-solution .service-description .service-grid .solution-block, .service-description .section-solution .service-grid .solution-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap);
}
.section-solution .grid-for-two-block .solution-block p, .section-solution .strategy-advanced .solution-block p, .section-solution .service-description .service-grid .solution-block p, .service-description .section-solution .service-grid .solution-block p {
  font-size: var(--textMD);
  line-height: 1.3;
}
.section-solution .grid-for-two-block .solution-block a, .section-solution .strategy-advanced .solution-block a, .section-solution .service-description .service-grid .solution-block a, .service-description .section-solution .service-grid .solution-block a {
  font-size: var(--textXL);
  width: max-content;
}

.section-approach {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
}
.section-approach .approach-content h2 {
  margin-bottom: 0.5em;
}
.section-approach .approach-content p {
  font-size: var(--textXL);
}
.section-approach .approach-content p:not(:last-child) {
  margin-bottom: 0.5em;
}
.section-approach img {
  width: 100%;
}
@media (max-width: 768px) {
  .section-approach {
    grid-template-columns: 1fr;
  }
  .section-approach .approach-content {
    text-align: center;
    text-wrap: balance;
  }
  .section-approach .approve-image-section {
    display: none;
  }
}

/* SECTION 1 and last */
.main-block-strategy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: var(--padding-section);
  border-radius: var(--brsXL);
  position: relative;
  z-index: 1;
  margin-top: var(--margin);
}
.main-block-strategy .main-block-text {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.main-block-strategy .main-block-text h1 {
  font-size: var(--titleXL);
  font-weight: bold;
  width: 140%;
}
.main-block-strategy .main-block-text h2 {
  color: #0A115C;
  width: 200%;
}
.main-block-strategy .main-block-text p {
  font-size: var(--textXL);
  line-height: 1.25em;
  width: 130%;
  z-index: 1;
}
.main-block-strategy .main-block-text a {
  width: max-content;
}
.main-block-strategy .main-block-img {
  display: grid;
  justify-content: flex-end;
  align-items: end;
}
.main-block-strategy .main-block-img img {
  width: 100%;
  position: relative;
  left: calc(var(--padding-section) + 24px);
}

/* SECTION 2 */
.section-trust, .section-who-needs {
  margin-top: var(--margin);
}
.section-trust > h2, .section-who-needs > h2, .section-trust > p, .section-who-needs > p {
  margin-bottom: calc(var(--margin) / 2);
  text-align: center;
}
.section-trust > p, .section-who-needs > p {
  font-size: var(--textXL);
}
.section-trust .trust-block, .section-who-needs .trust-block {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-small);
  padding: 32px;
  border-radius: var(--brsL);
  box-shadow: var(--shadow);
}
.section-trust .trust-block img, .section-who-needs .trust-block img {
  height: 64px;
}
.section-trust .trust-block p, .section-who-needs .trust-block p {
  line-height: 1.3;
}

/* SECTION 3 */
.service-description {
  margin-top: var(--margin);
}
.service-description > h2 {
  margin-bottom: calc(var(--margin) / 2);
}
.service-description .service-grid img {
  width: 100%;
}
.service-description .service-grid > div p:first-child {
  font-size: var(--textXL);
  margin-bottom: var(--gap);
}
.service-description .service-grid > div p {
  font-size: var(--textL);
  line-height: 1.25em;
  margin-bottom: calc(var(--gap) / 2);
}

/* SECTION 4 */
.support {
  margin-top: var(--margin);
}
.support h4 {
  margin-bottom: calc(var(--margin) / 2);
  text-align: center;
}
.support .support-table .table-line:first-child, .support .support-table .table-line:last-child {
  font-weight: bold;
}
.support .support-table .table-line {
  border-bottom: 1px solid #1c1c1c;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.support .support-table .table-line p {
  line-height: 1.25em;
  padding: calc(var(--gap) / 2);
}

/* SECTION 5 */
.strategy-advantages {
  margin-top: var(--margin);
}
.strategy-advantages h3 {
  margin-bottom: calc(var(--margin) / 2);
  text-align: center;
}
.strategy-advantages > p {
  font-size: var(--textXL);
  line-height: 1.25em;
  text-align: center;
  margin-bottom: calc(var(--margin) / 2);
}
.strategy-advantages .advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.strategy-advantages .advantages-grid .advantages-block {
  background-color: #ECEEFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-small);
  padding: 32px;
  border-radius: var(--brsL);
  box-shadow: var(--shadow);
  box-shadow: none;
}
.strategy-advantages .advantages-grid .advantages-block img {
  height: 64px;
}
.strategy-advantages .advantages-grid .advantages-block p {
  line-height: 1.3;
}
.strategy-advantages .advantages-grid .advantages-block p {
  font-weight: bold;
}
.strategy-advantages .advantages-grid .advantages-block p span {
  font-weight: normal;
}
.strategy-advantages .advantages-mobile {
  display: none;
}
.strategy-advantages a {
  width: max-content;
  margin: 48px auto 0 auto;
}

/* SECTION 6 */
.strategy-advanced {
  margin-top: var(--margin);
}
.strategy-advanced .advanced-text h3 {
  margin-bottom: calc(var(--margin) / 2);
}
.strategy-advanced .advanced-text p {
  margin-bottom: calc(var(--gap) / 2);
  line-height: 1.25em;
}
.strategy-advanced img {
  width: 100%;
}

/*//////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 1024px) {
  /* SECTION 1 and last */
  .main-block-strategy .main-block-text h1 {
    width: 135%;
  }
  .main-block-strategy .main-block-text p {
    width: 110%;
  }
  /* SECTION 3 */
  .service-description h2, .service-description p {
    text-align: center;
    text-wrap: balance;
  }
  .service-description .service-grid {
    display: flex;
  }
  .service-description .service-grid img {
    display: none;
  }
  /* SECTION 6 */
  .strategy-advanced {
    grid-template-columns: 1fr;
  }
  .strategy-advanced h3, .strategy-advanced p {
    text-align: center;
    text-wrap: balance;
  }
  .strategy-advanced img {
    display: none;
  }
}
/*//////////////////////////////////////////////////////////////*/
@media (max-width: 768px) {
  /* SECTION 1 and last */
  .main-block-strategy {
    display: block;
  }
  .main-block-strategy .main-block-text h1 {
    font-size: var(--titleL);
  }
  .main-block-strategy .main-block-text h1, .main-block-strategy .main-block-text h2, .main-block-strategy .main-block-text p {
    width: 100% !important;
  }
  .main-block-strategy .main-block-text a {
    width: 100%;
  }
  .main-block-strategy .main-block-img {
    display: none;
  }
  /* SECTION 2 */
  .section-trust img, .section-who-needs img {
    height: 48px !important;
  }
  /* SECTION 4 */
  .support p {
    font-size: var(--textXs);
  }
  /* SECTION 5 */
  .strategy-advantages .advantages-grid {
    display: none;
  }
  .strategy-advantages .advantages-mobile {
    background-color: #ECEEFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-small);
    padding: 32px;
    border-radius: var(--brsL);
    box-shadow: var(--shadow);
    gap: 12px;
    padding: 24px;
  }
  .strategy-advantages .advantages-mobile img {
    height: 64px;
  }
  .strategy-advantages .advantages-mobile p {
    line-height: 1.3;
  }
  .strategy-advantages .advantages-mobile p {
    font-size: var(--textXL);
  }
  .strategy-advantages a {
    width: 100%;
    margin-top: calc(var(--margin) / 2);
  }
}
.strategy-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 158px;
}

.strategy-header_title {
  max-width: 550px;
  margin: 0 auto 24px !important;
  text-align: center;
  text-wrap: balance;
}

.strategy-header_title span {
  text-wrap: nowrap;
}

.strategy-header_description {
  margin: 0 auto 40px !important;
  max-width: 896px;
  font-size: var(--textXL) !important;
  font-weight: 500;
  line-height: 33.6px;
  text-align: center;
}

.strategy-header_control {
  display: none;
  /*display: inline-block;*/
  margin: 0 auto;
}

.strategy-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px 30px;
}

.strategy-block {
  position: relative;
  padding: 46px;
  background: white;
  box-shadow: var(--shadow);
  border-radius: var(--brsXL);
}

.strategy-block__with-image {
  /* display: flex; */
  display: grid;
  grid-template-columns: 0.97fr 1fr;
}

.strategy-block__with-label {
  border-radius: 0 var(--brsXL) var(--brsXL) var(--brsXL);
}

.strategy-block__with-label::before {
  content: attr(data-label);
  position: absolute;
  top: -88px;
  left: 0;
  padding: 24px 46px;
  border-radius: var(--brsMD) var(--brsMD) 0 0;
  background: var(--secondAccent);
  color: white;
  text-transform: uppercase;
  font-size: var(--textXL);
  font-weight: 700;
}

.strategy-block-left {
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.strategy-block_description {
  font-size: inherit;
  line-height: 22px;
}

.strategy-block-right {
  position: relative;
}

.strategy-action {
  position: absolute;
  width: 238px;
  right: 61px;
  bottom: 49px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strategy-action span {
  font-size: var(--textXs);
}

.strategy-block__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.strategy-interest {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 12px 14px;
  background: var(--darkGray);
  border-radius: 18px;
}

.strategy-interest_image img {
  width: 191px;
  height: 71px;
}

.strategy-interest_text {
  font-weight: 700;
  line-height: 22.4px;
}

.strategy-block .link {
  margin-top: auto;
  font-size: var(--textMD);
  text-decoration: none;
  /*display: none;*/
}

.strategy-blog {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 14px 12px;
  background: linear-gradient(126deg, #bb79ff 21.08%, #490c83 104.49%);
  border-radius: var(--brsXL);
  box-shadow: var(--shadow);
  color: white;
}

.strategy-blog_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  color: inherit;
  text-decoration: underline;
  padding: 0 8px;
}

.strategy-blog__description {
  color: inherit;
  font-weight: 700;
  line-height: 20.8px;
  padding: 0 8px;
}

.strategy-block_image {
  text-align: center;
}

.strategy-block_image img {
  width: 100%;
  border-radius: 20px;
  max-width: max-content;
}

/* LAYOUT  */
.strategy-layout__startups {
  margin-bottom: 157px;
}

.strategy-layout__startups .strategy-block:nth-child(1) {
  grid-column: 1/13;
  padding-bottom: 74px;
}

.strategy-layout__startups .strategy-block:nth-child(2) {
  grid-column: 1/7;
}

.strategy-layout__startups .strategy-block:nth-child(3) {
  grid-column: 7/13;
}

.strategy-layout__startups .strategy-block:nth-child(4) {
  grid-column: 1/10;
  grid-template-columns: 1fr 0.67fr;
}

.strategy-layout__startups .strategy-block:nth-child(5) {
  grid-column: 10/13;
}

.strategy-layout__enterprises {
  margin-bottom: 80px;
}

.strategy-layout__enterprises .strategy-block:nth-child(1) {
  grid-column: 1/7;
}

.strategy-layout__enterprises .strategy-block:nth-child(2) {
  grid-column: 7/13;
}

@media screen and (max-width: 768px) {
  .strategy-header {
    margin-bottom: 81px;
  }
  .strategy-header_title {
    line-height: normal;
  }
  .strategy-header_description {
    margin-bottom: 22px;
    text-align: left;
    font-size: var(--textMD);
    line-height: 19.6px;
  }
  .strategy-header_control {
    width: 100%;
    margin: 0;
  }
  .strategy-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .strategy-block {
    display: flex;
    flex-direction: column;
    padding: 30px;
    padding-bottom: 108px;
  }
  .strategy-block-left {
    gap: 20px;
    padding-right: 0;
  }
  .strategy-block__text {
    gap: 21px;
  }
  .strategy-block_title {
    line-height: 28px;
  }
  .strategy-block_description {
    line-height: 20px;
  }
  .strategy-block__with-label {
    border-radius: 0 0 var(--brsL) var(--brsL);
  }
  .strategy-block__with-label::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    top: -60px;
  }
  .strategy-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .strategy-action {
    width: 100%;
    right: 0;
    left: 0;
    bottom: -35px;
    gap: 8px;
    text-align: center;
  }
  .button__strategy {
    padding: 19px;
  }
  .strategy-interest {
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    gap: 10px;
  }
  .strategy-interest_image img {
    width: 236px;
    height: 84px !important;
  }
  .strategy-interest_text {
    font-size: var(--textXL);
  }
  .strategy-block .link {
    position: absolute;
    bottom: 30px;
    width: calc(100% - 60px);
    text-align: center;
  }
  .strategy-blog {
    padding: 24px 12px 9px 13px;
  }
  .strategy-block:nth-child(1) .strategy-right {
    position: relative;
  }
  .strategy-block:nth-child(1) img {
    width: 100%;
    height: 262px !important;
  }
  .strategy-layout__startups .strategy-block:nth-child(1) {
    padding-bottom: 66px;
  }
  .strategy-block:nth-child(4) img {
    width: 271px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .strategy-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
  }
  .strategy-interest {
    display: flex;
    flex-direction: column;
  }
  .strategy-block .link {
    margin-right: auto;
  }
  .strategy-layout__startups .strategy-block:nth-child(4) {
    grid-column: 1/-1;
  }
  .strategy-layout__startups .strategy-block:nth-child(5) {
    grid-column: 1/-1;
  }
  .strategy-blog {
    flex-direction: row;
    align-items: flex-start;
  }
  .strategy-blog_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .strategy-blog__description {
    padding: 0 25px 0 8px;
  }
  .strategy-block_image {
    width: 100%;
  }
  .strategy-block_image img {
    object-fit: cover;
  }
}
@media screen and (max-width: 350px) {
  .strategy-block:nth-child(1) img {
    height: 100%;
  }
}
.img-main-hidden #img-thanks {
  max-width: 75%;
}

.thanks {
  background-color: white;
  border-radius: var(--brsXL);
  display: flex;
  flex-direction: column;
  padding: 64px 64px 0 64px;
  gap: 32px;
  align-items: center;
  text-align: center;
}
.thanks > h1 {
  font-size: var(--titleXL);
  font-weight: bold;
  line-height: 130%;
}
.thanks > h1 > span {
  color: var(--accent);
}
.thanks > p {
  font-size: var(--textXL);
}
.thanks > a {
  background: var(--accent);
  color: white;
}
.thanks > a:hover {
  background: #0A115C;
}
.thanks > img {
  max-width: 70%;
  display: block;
}

@media (max-width: 768px) {
  .thanks {
    padding: 24px;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
  }
  .thanks > h1 {
    font-size: var(--titleL);
  }
  .thanks > a {
    width: 100%;
  }
  .thanks > img {
    display: none;
  }
}
.footer {
  background: #17425D;
  color: white;
  padding: var(--footer-padding);
}
.footer .footer-inner {
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 96px;
  margin: auto;
}
.footer .footer-inner .footer-block__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer .footer-inner .footer-block__main > a img {
  height: 100%;
}
.footer .footer-inner .footer-block__main img {
  width: 100%;
  max-width: 186px;
  transition: 0.2s;
}
.footer .footer-inner .footer-block__main img:hover {
  transform: scale(1.1);
}
.footer .footer-inner .footer-block__main .footer-social {
  display: flex;
  gap: 20px;
}
.footer .footer-inner .footer-block__main .footer_doc ul {
  list-style: none;
  padding-left: 0;
}
.footer .footer-inner .footer-block__main .footer_doc li a {
  color: white;
  font-weight: bold;
  font-size: 20px;
}
.footer .footer-inner .footer-company_description {
  line-height: 1.3;
}
.footer .footer-inner .footer-additional_page ul {
  list-style: none;
  padding-left: 0;
}
.footer .footer-inner .footer-additional_page a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  font-size: 22px;
  white-space: nowrap;
  display: block;
  transition: 0.2s;
}
.footer .footer-inner .footer-additional_page a:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .footer .footer-inner {
    gap: 48px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer .footer-inner {
    grid-template-columns: 1fr;
  }
}
#tarteaucitronRoot * {
  font-family: "Roboto", sans-serif !important;
}

.tarteaucitronAllow {
  background-color: #09AC00 !important;
}

#tarteaucitronAlertBig {
  padding: 16px 12px !important;
  box-sizing: border-box !important;
}

.tarteaucitronBeforeVisible #tarteaucitronAlertBig {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

#tarteaucitronDisclaimerAlert {
  text-align: center !important;
  padding: 0 !important;
}

#tarteaucitronPrivacyUrl {
  text-decoration: underline;
}

#tarteaucitron_button_container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
#tarteaucitron_button_container button {
  margin: 0 !important;
  padding: 5px 12px !important;
  border-radius: 24px !important;
  font-size: 16px !important;
  transition: 0.2s;
}
#tarteaucitron_button_container button:hover {
  transform: scale(1.03);
  transition: 0.2s;
}

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