a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  /* line-height: 1; */
}
* {
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
p {
  /* line-height: 1.5; */
}

@font-face {
  src:
    url(../fonts/Oswald/Oswald-Regular.woff2) format("woff2"),
    url(../fonts/Oswald/Oswald-Regular.woff) format("woff");
  font-weight: 400;
  font-family: Oswald;
  font-display: swap;
}

@font-face {
  src:
    url(../fonts/Oswald/Oswald-Medium.woff2) format("woff2"),
    url(../fonts/Oswald/Oswald-Medium.woff) format("woff");
  font-weight: 500;
  font-family: Oswald;
  font-display: swap;
}

@font-face {
  src:
    url(../fonts/Oswald/Oswald-Bold.woff2) format("woff2"),
    url(../fonts/Oswald/Oswald-Bold.woff) format("woff");
  font-weight: 700;
  font-family: Oswald;
  font-display: swap;
}

@font-face {
  src:
    url(../fonts/Oswald/Oswald-SemiBold.woff2) format("woff2"),
    url(../fonts/Oswald/Oswald-SemiBold.woff) format("woff");
  font-weight: 600;
  font-family: Oswald;
  font-display: swap;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  padding: 0 160px;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .hide_d {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .hide_m {
    display: none !important;
  }
}

.nowrap {
  white-space: nowrap;
}
main {
  padding-top: 95px;
}

@media (min-width: 1280px) {
  main {
    padding-top: 102px;
  }
}

header {
  position: fixed;
  background-color: #fff;
  z-index: 20;
  width: 100%;
}

header .header {
  padding-top: 36px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-bottom: 32px;
}
/* @media (max-width: 768px) {
  header .header {
    padding-left: 5vw;
  }
} */

@media (min-width: 768px) {
  header .header {
    gap: 8px;
  }
}

header .header .nav-menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  gap: 8px;
  align-items: center;
  z-index: 10;
}
@media (min-width: 1280px) {
  header .header .nav-menu {
    gap: 56px;
  }
}

header .header .nav-menu__item {
  color: #1f2431;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  /* margin-right: 56px; */
  position: relative;
}
header .header .nav-menu__item:last-child {
  margin-right: 0;
}
header .header .nav-menu__item:hover {
  color: #e90c20;
}
header .header .nav-menu__item:hover .arrow path {
  fill: #e90c20;
}
header .header .nav-menu__item_active {
  color: #e90c20;
}
header .header .nav-menu__item_active .arrow path {
  fill: #e90c20 !important;
}
header .header .nav-menu__item_submenu {
  padding-right: 16px;
  position: relative;
}
header .header .nav-menu__item_submenu:hover .arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
header .header .nav-menu__item_submenu:hover .dropdown-menu-container {
  visibility: visible;
  opacity: 1;
}
header .header .nav-menu__item_submenu .arrow {
  position: absolute;
  right: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: center;
  transform-origin: center;
}
header .header .nav-menu__item_submenu .arrow path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #1f2431;
}
header .header .nav-menu__item_submenu .dropdown-menu {
  padding: 24px 28px 24px 22px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  background: #fafcff;
  border: 1px solid #e9ecf3;
  box-sizing: border-box;
  box-shadow:
    0 15px 26px rgba(50, 50, 93, 0.06),
    0 0 11px rgba(0, 0, 0, 0.04),
    0 -1px 11px rgba(50, 50, 93, 0.02);
  border-radius: 4px;
  width: 387px;
}
header .header .nav-menu__item_submenu .dropdown-menu_simple {
  width: auto;
  padding: 24px;
}
header
  .header
  .nav-menu__item_submenu
  .dropdown-menu_simple
  .dropdown-menu__item-label {
  white-space: nowrap;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header
  .header
  .nav-menu__item_submenu
  .dropdown-menu_simple
  .dropdown-menu__item-label:hover {
  color: #e90c20;
}
header
  .header
  .nav-menu__item_submenu
  .dropdown-menu_simple
  .dropdown-menu__item-label:before {
  display: none;
}
header .header .nav-menu__item_submenu .dropdown-menu-container {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  top: 20px;
  padding-top: 22px;
  left: -16px;
  position: absolute;
  z-index: 1;
}
header .header .nav-menu__item_submenu .dropdown-menu__item:not(:first-child) {
  margin-top: 24px;
}
header
  .header
  .nav-menu__item_submenu
  .dropdown-menu__item:hover
  .dropdown-menu__item-label:before {
  -webkit-transform: translate(8px, -50%);
  transform: translate(8px, -50%);
}
header .header .nav-menu__item_submenu .dropdown-menu__item_active {
  color: #e90c20 !important;
}
header .header .nav-menu__item_submenu .dropdown-menu__item-label {
  padding-left: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1f2431;
  position: relative;
}
header .header .nav-menu__item_submenu .dropdown-menu__item-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/header/list_icon.svg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .header .nav-menu__item_submenu .dropdown-menu__item-description {
  font-size: 12px;
  line-height: 20px;
  color: #4a5266;
  margin-top: 8px;
  font-weight: 400;
}
header .header .nav-menu .info {
  margin-top: 26px;
  border-top: 1px solid rgba(222, 224, 231, 0.6);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}
header .header .nav-menu .info__description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -1px;
  color: #272222;
  text-align: center;
}
header .header .nav-menu .info__description-phone {
  color: #788092;
}
header .header .nav-menu .info__email {
  margin-top: 12px;
  color: #e90c20;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
header .header .nav-menu .info__socials {
  margin-top: 24px;
  display: -webkit-box;
  display: flex;
  width: 150px;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
header .header .nav-menu .info__socials-item {
  width: 16px;
  height: 16px;
  opacity: 0.4;
}
header .header .nav-menu .info__socials-item img {
  height: 100%;
}

@media (max-width: 768px) {
  header .header {
    padding-top: 28px;
  }
  header .header .nav-menu {
    visibility: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: absolute;
    max-height: 0;
    width: calc(100% - 32px);
    background-color: #fff;
    box-shadow:
      0 15px 26px rgba(50, 50, 93, 0.06),
      0 0 11px rgba(0, 0, 0, 0.04),
      0 -1px 11px rgba(50, 50, 93, 0.02);
    border-radius: 8px;
    top: 15px;
    overflow: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 10;
  }
  header .header .nav-menu .cross {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  header .header .nav-menu_open {
    max-height: 1000px;
    padding: 54px 0 24px;
  }
  header .header .nav-menu__item {
    margin: 0 0 24px;
    /* font-family: Montserrat, sans-serif; */
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
  }
  header .header .nav-menu__item-label {
    display: inline-block;
  }
  header .header .nav-menu__item_submenu {
    padding-left: 16px;
  }
  header .header .nav-menu__item_submenu .arrow {
    top: -5px;
    -webkit-transform: none;
    transform: none;
    position: relative;
  }
  header .header .nav-menu__item_submenu .dropdown-menu {
    width: auto;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    border: none;
  }
  header .header .nav-menu__item_submenu .dropdown-menu-container {
    position: static;
    left: 0;
    top: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    padding-top: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
  }
  header .header .nav-menu__item_submenu .dropdown-menu-container_open {
    max-height: 1000px;
  }
  header .header .nav-menu__item_submenu .dropdown-menu__item {
    text-align: center;
    margin-top: 12px !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  header .header .nav-menu__item_submenu .dropdown-menu__item-label {
    padding: 0;
  }
  header .header .nav-menu__item_submenu .dropdown-menu__item-description,
  header .header .nav-menu__item_submenu .dropdown-menu__item-label:before {
    display: none;
  }
}

.section--dark {
  padding: 48px 0;
  background-color: #101010;
}

.section--light {
  padding: 80px 0;
}

.section-pt--light {
  padding-top: 80px;
}

.section__title {
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.5;
}

.section__text {
  font-weight: 400;
  font-size: 15px;
  color: #1f2431;
  line-height: 1.5;
}

.section__title--light,
.section__text--light {
  color: #fff;
}

@media (min-width: 768px) {
  .section--dark {
    padding: 96px 0;
  }

  .section--light {
    padding: 120px 0;
  }

  .section-pt--light {
    padding-top: 120px;
  }

  .section__title {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .section__text {
    font-size: 20px;
  }
}

/* ---------------hero----------------------- */

.hero {
  padding: 12px 0 0;
}

.hero__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
}

.hero__title--pl {
  max-width: 530px;
}

.hero__text {
  font-weight: 400;
  font-size: 15px;
  color: #1f2431;
  /* margin-bottom: 16px; */
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.hero__btn {
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  padding: 10px 53px;
  width: 189px;
  height: 44px;
  background: #fe3c31;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.hero__btn--mob {
  display: flex;
  width: 100%;
}

.hero__btn--desk {
  display: none;
}

.hero__avatars {
  max-width: 188px;
}

.hero__avatars img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero__btn {
    width: fit-content;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding: 40px 0 0;
  }

  .hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero__wrapper .hero__wrapper--long {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 32px;
  }

  .hero__title {
    font-size: 72px;
    margin-bottom: 0;
  }

  .hero__text {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .hero__btn {
    height: 50px;
    font-size: 20px;
  }

  .hero__btn--mob {
    display: none;
  }

  .hero__btn--desk {
    display: flex;
  }

  .hero__avatars {
    max-width: 232px;
  }
}
/* why */
.section__text--short {
  max-width: 460px;
}

.country-why__intro {
  display: grid;
  gap: 12px;
}

.country-why__btn {
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  padding: 10px 24px;
  width: 189px;
  height: 44px;
  background: #fe3c31;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.country-why__btn--mob {
  display: flex;
  width: 100%;
  margin-top: 24px;
}

.country-why__btn--desk {
  display: none;
}

.country-why__btn:hover {
  opacity: 0.95;
}

.country-why__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.country-why__card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.country-why__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.country-why__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.country-why__card-title {
  font-weight: 500;
  font-size: 16px;
  color: #1f2431;
  margin-bottom: 6px;
}

.country-why__card-text {
  font-size: 15px;
  color: #1f2431;
}

@media (min-width: 1280px) {
  .country-why__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .country-why__title {
    margin-bottom: 0;
  }

  .country-why__btn {
    height: 50px;
    font-size: 20px;
  }

  .country-why__btn--desk {
    display: flex;
  }

  .country-why__btn--mob {
    display: none;
  }

  .country-why__intro {
    gap: 24px;
  }

  .country-why__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
  }

  .country-why__card {
    padding: 16px;
  }

  .country-why__card-title {
    font-size: 24px;
  }

  .country-why__card-text {
    font-size: 18px;
  }
}

/* map */

.map-section {
  padding-top: 0;
}

.map__content {
  margin-bottom: 26px;
}

.map-wrapper {
  position: relative;
  width: 100%;
}

#europe-map {
  width: 100%;
  height: auto;
}

.country {
  fill: rgba(255, 255, 255, 0.1);

  stroke: #777777;
  stroke-width: 0.4;
}

.country--active {
  fill: rgba(226, 227, 231, 1);
  stroke: #ffffff;

  stroke-width: 1;
  transition: fill 0.2s ease;
  /* cursor: pointer; */
}

.country--active:hover {
  fill: rgba(41, 41, 41, 1);
}

.country--link {
  cursor: pointer;
}

.country--link:focus {
  outline: none;
}

/* Tooltip */

.map-tooltip {
  position: absolute;
  background: #ffffff;
  border-radius: 5px;
  padding: 7px 9px;
  width: 89px;
  box-shadow:
    0 2px 4px -1px rgba(16, 24, 40, 0.03),
    0 7px 10px -2px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

  text-align: center;
  white-space: nowrap;
  pointer-events: none;

  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -140%) scale(0.95);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s linear 0.15s;
  z-index: 2;
}

/* Видимий стан */
.map-tooltip--visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -160%) scale(1);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s;
}
.country--selected {
  fill: #292929;
  stroke: #ffffff;

  stroke-width: 1;
  cursor: pointer;
}

.map-tooltip--pinned {
  /* якщо хочеш щоб pinned виглядав трохи інакше */
}

/* Прапор */
.map-tooltip__flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.4px solid rgba(226, 227, 231);
}

/* Текст */
.map-tooltip__label {
  font-weight: 400;
  font-size: 12px;
  line-height: 91%;
  text-align: center;
  color: #353535;
  font-family: "Oswald", sans-serif;
}

/* Хвостик тултіпу */
.map-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 3px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1280px) {
  .map__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 12px;
  }

  .map h2 {
    max-width: 400px;
  }

  .map .section__title--pl,
  .map .section__title--europe {
    max-width: 100%;
  }

  .map p {
    max-width: 460px;
  }

  .map-tooltip {
    padding: 16px 8px;
    border-radius: 8px;
    width: 148px;
    box-shadow:
      0 4px 6px -2px rgba(16, 24, 40, 0.03),
      0 12px 16px -4px rgba(16, 24, 40, 0.08);
    gap: 8px;
  }

  /* Прапор */
  .map-tooltip__flag {
    width: 32px;
    height: 32px;
  }

  /* Текст */
  .map-tooltip__label {
    font-size: 14px;
    line-height: 129%;
    color: #353535;
  }
}

/* market-advantages */

.market-advantages {
  background-repeat: no-repeat;
  background-size: 879px auto;
  background-position: left -140px bottom 50px;
  background-image: url("../images/country/advantages/decor-red.png");
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.market-advantages__top {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.market-advantages__title {
  margin: 0;
}

.market-advantages__title br {
  display: none;
}

.market-advantages__lead {
  display: grid;
  gap: 24px;
}

.market-advantages__text {
  margin: 0;
  color: #fff;
}

.market-advantages__cta {
  display: block;
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 48px;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-family: inherit;
  transition: 0.3s;
}
.market-advantages__cta:hover {
  background: #fff;
  color: #0b1b25;
}

.market-advantages__cta-desk {
  display: none;
}

.market-advantages__cta-mobile {
  width: 100%;
}

.market-advantages__grid {
  display: grid;
  gap: 32px;
}

.adv-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.adv-card__title {
  margin-bottom: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.adv-card__text {
  font-size: 15px;
  color: #fff;
}

.market-advantages__cta-mobile {
  margin-top: 32px;
}
.market-advantages__cta-mobile .market-advantages__cta {
  width: 100%;
}

/* Tablet */
@media (min-width: 768px) {
  .market-advantages {
    background-position: center bottom 120px;
  }

  .market-advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  .market-advantages__grid.three-column {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .market-advantages {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .market-advantages {
    background-size: 825px auto;
    background-position: left 266px center;
  }

  .market-advantages__top {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 32px;
  }

  .market-advantages__title br {
    display: inline;
  }

  .button.button--outline {
    font-size: 20px;
    padding: 14px 31px;
  }

  .market-advantages__cta-desk {
    display: block;
  }

  .market-advantages__lead {
    justify-items: start;
  }

  .market-advantages__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  .market-advantages__grid.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .adv-card {
    max-width: none;
  }

  .adv-card__icon {
    margin-bottom: 6px;
  }

  .adv-card__title {
    font-size: 24px;
  }

  .adv-card__text {
    font-size: 18px;
  }

  .market-advantages__cta-mobile {
    display: none;
  }
}

/* ecosystem */

.ecosystem__container {
  display: grid;
  gap: 24px;
  align-items: start;
}

.ecosystem__cards {
  display: grid;
  gap: 16px;
}

.ecosystem-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.ecosystem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.ecosystem-card__title {
  font-weight: 500;
  font-size: 16px;
  color: #1f2431;
  margin-bottom: 6px;
  line-height: 1.5;
}

.ecosystem-card__text {
  font-size: 15px;
  color: #1f2431;
  line-height: 1.5;
}

/* Desktop  */
@media (min-width: 1280px) {
  .ecosystem {
    padding: 72px 0;
  }

  .ecosystem__container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ecosystem__cards {
    gap: 12px;
    justify-self: end;
  }

  .ecosystem-card {
    border-radius: 16px;
    padding: 16px;
  }

  .ecosystem-card__title {
    font-size: 24px;
  }

  .ecosystem-card__text {
    font-size: 18px;
  }
}

/* country-adv */

.country-adv {
  background-image: url("../images/country/country-adv/decor-red.png");
  background-size: 460px auto;
  background-position: left -200px bottom -80px;
  background-repeat: no-repeat;
}

.country-adv__top {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.country-adv__title {
  margin-bottom: 0;
}

.country-adv__title br {
  display: none;
}

.country-adv__grid {
  display: grid;
  gap: 32px;
}

.country-adv-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.country-adv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(238, 41, 59, 0.1);
  margin-bottom: 6px;
}

.country-adv-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.country-adv-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.country-adv-card__text {
  font-size: 15px;
  color: #fff;
}

.country-adv-card__btn {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  border: 1px solid #fff;
  border-radius: 48px;
  padding: 10px 24px;
  height: 50px;

  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.country-adv-card__btn:hover {
  color: #111;
  background: #fff;
}

@media (min-width: 1280px) {
  .country-adv {
    background-size: 679px auto;
    background-position: left -60px bottom -30px;
    background-repeat: no-repeat;
  }

  .country-adv__top {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 32px;
  }

  .country-adv__title {
    max-width: 460px;
  }

  .country-adv__title br {
    display: inline;
  }

  .country-adv__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .country-adv-card {
    padding: 16px;
  }

  .country-adv-card--big {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    /* min-height: 300px; */
  }

  .country-adv-card--small {
    min-height: 141px;
  }

  /* right column stack */
  .country-adv__grid > .country-adv-card--small:nth-of-type(2) {
    margin-bottom: 0;
  }

  /* make right column actually stack */
  .country-adv__grid > .country-adv-card--small {
    grid-column: 2;
  }

  .country-adv__grid > .country-adv-card--big {
    grid-row: 1 / span 2;
  }

  .country-adv-card__title {
    font-size: 24px;
  }

  .country-adv-card__text {
    font-size: 18px;
  }
}

/* country-logos */

.country-logos {
  padding: 0;
}

.country-logos.section-pt--light {
  padding-top: 80px;
}
.country-logos__title {
  margin-bottom: 0;
}

.country-logos__container {
  display: grid;
  gap: 24px;
  align-items: start;
}

.country-logos__scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

  scroll-padding-left: 24px;
  scroll-padding-right: 24px;

  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;

  padding-bottom: 6px;
}

.country-logos__grid {
  display: grid;
  gap: 16px;

  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);

  width: max-content;
  padding-right: 8px;
}

.country-logos__card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 24px;
  width: 240px;
  height: 128px;
  background: #fff;

  display: grid;
  place-items: center;

  scroll-snap-align: start;
}

.country-logos__card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.country-logos__card--apple img {
  max-width: 72px;
}

.country-logos__card--intel img {
  max-width: 102px;
}

@media (min-width: 768px) {
  .country-logos.section-pt--light {
    padding-top: 120px;
  }
  .country-logos__scroller {
    overflow: visible;
    padding-bottom: 0;
  }
  .country-logos__grid {
    width: 100%;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-right: 0;
  }

  .country-logos__grid--three-two {
    grid-template-columns: repeat(6, 1fr);
  }

  /* перші 3 — по 2 колонки = 3 в ряд */
  .country-logos__grid--three-two .country-logos__card:nth-child(-n + 3) {
    grid-column: span 2;
  }

  /* останні 2 — по 3 колонки = 2 в ряд */
  .country-logos__grid--three-two .country-logos__card:nth-child(n + 4) {
    grid-column: span 3;
  }

  .country-logos__card {
    width: auto;
    height: 150px;
  }

  .country-logos__grid--three-two .country-logos__card:nth-child(4) img {
    height: 76px;
  }
  .country-logos__grid--three-two .country-logos__card:nth-child(5) img {
    height: 22px;
  }
}

@media (min-width: 1280px) {
  .country-logos__container {
    grid-template-columns: 0.985fr 1.015fr;
    gap: 16px;
  }

  .country-logos__title {
    max-width: 420px;
  }
}

/* edu-hubs */

.edu-hubs__top {
  display: grid;
  gap: 12px;
}

.edu-hubs__title {
  margin-bottom: 0;
}

.edu-hubs__btn {
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  padding: 10px 24px;
  width: 100%;
  height: 50px;
  background: #fe3c31;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.edu-hubs__btn:hover {
  opacity: 0.95;
}

.edu-hubs__btn--desk {
  display: none;
}

.edu-hubs__btn--mob {
  margin-top: 24px;
}

.edu-hubs__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.edu-hub-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.edu-hub-card__logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.edu-hub-card__logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.edu-hub-card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;

  color: #1f2431;
  margin-bottom: 6px;
}

.edu-hub-card__text {
  font-size: 15px;
  line-height: 1.5;
  color: #1f2431;
}

/* desktop */
@media (min-width: 1280px) {
  .edu-hubs {
    padding: 72px 0;
  }

  .edu-hubs__top {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 32px;
  }

  .edu-hubs__btn {
    width: 240px;
    height: 50px;
    font-size: 20px;
  }

  .edu-hubs__btn--desk {
    display: flex;
    justify-self: end;
  }

  .edu-hubs__btn--mob {
    display: none;
  }

  .edu-hubs__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .edu-hubs__grid.edu-hubs__grid--two-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .edu-hub-card:nth-child(1),
  .edu-hub-card:nth-child(2) {
    grid-column: span 3;
  }

  .edu-hub-card:nth-child(3),
  .edu-hub-card:nth-child(4),
  .edu-hub-card:nth-child(5) {
    grid-column: span 2;
  }

  .edu-hubs__grid--two-two .edu-hub-card:nth-child(1),
  .edu-hubs__grid--two-two .edu-hub-card:nth-child(2) {
    grid-column: span 1;
  }

  .edu-hubs__grid--two-two .edu-hub-card:nth-child(3),
  .edu-hubs__grid--two-two .edu-hub-card:nth-child(4) {
    grid-column: span 1;
  }

  .edu-hubs__grid--two-three .edu-hub-card:nth-child(1),
  .edu-hubs__grid--two-three .edu-hub-card:nth-child(2) {
    grid-column: span 3;
  }

  .edu-hubs__grid--two-three .edu-hub-card:nth-child(3),
  .edu-hubs__grid--two-three .edu-hub-card:nth-child(4),
  .edu-hubs__grid--two-three .edu-hub-card:nth-child(5) {
    grid-column: span 2;
  }

  .edu-hub-card {
    padding: 16px;
  }

  .edu-hub-card__logo {
    width: 70px;
    height: 70px;
  }

  .edu-hub-card__title {
    font-size: 24px;
  }

  .edu-hub-card__text {
    font-size: 16px;
  }
}

/* process */
.process {
  color: #fff;
}

.process__intro {
  color: #fff;
}

.process__cta {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 48px;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-family: inherit;
  transition: 0.3s;
}

.process__cta:hover {
  background: #fff;
  color: #0b1b25;
}

.process__cta--mob {
  display: block;
  width: 100%;
  margin-top: 12px;
}

.process__cta--desk {
  display: none;
  width: fit-content;
  margin-top: 24px;
}

.process__container {
  margin-bottom: 24px;
}

.process__steps {
  display: flex;
  flex-direction: column;
}

.process__step {
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  padding: 24px 0;
}

.process__header {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.process__number {
  font-weight: 500;
  font-size: 32px;
  text-align: right;
  color: #fe3c31;
}

.process__title {
  font-weight: 500;
  font-size: 20px;
}

.process__toggle {
  border: none;
  color: black;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #fe3c31;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.icon--minus {
  display: block;
}

.icon--plus {
  display: none;
}

.process__step:not(.active) .icon--minus {
  display: none;
}

.process__step:not(.active) .icon--plus {
  display: block;
}

.process__content {
  display: none;
  margin-top: 24px;
  font-size: 15px;
  color: #fff;
}

.process__step.active .process__content {
  display: block;
}

.process__step.active .process__toggle {
  content: "−";
}

@media (min-width: 1280px) {
  .process__cta--mob {
    display: none;
  }

  .process__cta--desk {
    display: block;
  }

  .process__cta {
    font-size: 20px;
    padding: 14px 24px;
  }

  .process__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 44px;
  }

  .process__step {
    padding: 32px 0;
  }

  .process__number {
    font-size: 60px;
  }

  .process__title {
    font-size: 32px;
  }

  .process__content {
    margin-top: 32px;
    padding: 17px 0;
    font-size: 20px;
    width: 50%;
    margin-left: auto;
    padding-left: 24px;
  }

  .process__header {
    grid-template-columns: 55px 1fr 50px;

    gap: 24px;
  }

  .process__toggle {
    width: 50px;
    height: 50px;
  }
}

/* trust */

.country-trust {
  padding-bottom: 0;
}
.country-trust__top {
  display: grid;
  gap: 12px;
}

.country-trust__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.country-trust__card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.country-trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.country-trust__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.country-trust__card-title {
  font-weight: 500;
  font-size: 16px;
  color: #1f2431;
  margin-bottom: 6px;
}

.country-trust__card-text {
  font-size: 15px;
  color: #1f2431;
}

/* Desktop */
@media (min-width: 1280px) {
  .country-trust__top {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 32px;
    align-items: start;
  }

  .country-trust__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
  }

  .country-trust__card {
    padding: 16px;
  }

  .country-trust__card-title {
    font-size: 24px;
  }

  .country-trust__card-text {
    font-size: 18px;
  }
}

/* tax overview */

.tax-overview__title {
  margin-bottom: 32px;
}

.tax-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.tax-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tax-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(238, 41, 59, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.tax-card__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.tax-card__title {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.tax-card__text {
  font-size: 15px;
  color: #fff;
}

@media (min-width: 1280px) {
  .tax-overview__container {
    gap: 32px;
  }

  .tax-overview__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .tax-card__title {
    font-size: 24px;
  }

  .tax-card__text {
    font-size: 16px;
  }
}

/* faq */
.faq__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.faq__title {
  margin-bottom: 0;
}

.faq__btn--outline {
  display: none;
  border: 1.5px solid #000;
  border-radius: 48px;
  padding: 10px 45px;
  width: fit-content;
  height: 50px;
  font-weight: 500;
  font-family: inherit;
  font-size: 20px;
  color: #000;
  transition: all 0.3s linear;
}

.faq__btn--outline:hover {
  color: #fff;
  background-color: #000;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.accordion__item {
  padding: 20px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 20px 16px;
  overflow: hidden;
}

.accordion__header {
  background: #fff;
  width: 100%;
  padding: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #000;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion__icon {
  transition: transform 0.3s;
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #000;
  padding-top: 12px;
}

.accordion__body ul {
  padding-left: 20px;
  list-style: disc;
}

.accordion__body span {
  font-weight: 500;
}

.accordion__body p:not(:last-child),
.accordion__body li:not(:last-child),
.accordion__body ul {
  margin-bottom: 8px;
}

.accordion__item.active .accordion__body {
  display: block;
}

@media (min-width: 1280px) {
  .faq__container {
    grid-template-columns: 1fr 1.44fr;
    gap: 32px;
  }

  .faq__sidebar {
    flex: 0 0 250px;
  }

  .faq__title {
    margin-bottom: 48px;
  }

  .faq__btn--outline {
    display: flex;
    align-items: center;
  }

  .faq__accordion {
    flex: 1;
    gap: 14px;
    margin-bottom: 24px;
  }

  .accordion__item {
    padding: 26px 24px;
  }

  .accordion__header {
    font-size: 24px;
  }

  .accordion__body {
    font-size: 18px;
  }
}

.accordion__body {
  max-height: 0;
  overflow: hidden;

  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

/* footer */
.footer {
  background-color: #000;
  padding-top: 42px;
  padding-bottom: 54px;
}

.footer > .grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo-wrapper a {
  display: block;
}

.footer__logo {
  margin-bottom: 18px;
}

.footer__logo img,
.footer_linkedin img {
  display: block;
}

.footer a {
  display: block;
  color: #9c9ca6;
  transition: all 0.3s linear;
}

.footer a:hover {
  color: #fff;
}

.footer__title {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer .footer__contacts-link {
  font-size: 16px;
  line-height: 125%;
  color: #9c9ca6;
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer .footer__legal-link {
  font-size: 16px;
  line-height: 125%;
  color: #9c9ca6;
  height: 27px;
  display: flex;
  align-items: center;
}

.footer__legal-link:not(:last-child) {
  margin-bottom: 16px;
}

.footer__contacts-link:not(:last-child) {
  margin-bottom: 16px;
}

.footer__contacts-link img {
  width: 24px;
  height: 24px;
}

.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 1280px) {
  .footer {
    border-radius: 32px 32px 0 0;
  }

  .footer > .grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__title {
    font-size: 24px;
    line-height: 117%;
  }
}
