/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-family: system-ui,
  'Segoe UI',
  Roboto,
  Helvetica,
  Arial,
  sans-serif,
  'Apple Color Emoji',
  'Segoe UI Emoji';
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

body {
  font: 1em / 1.7em Poppins, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #131314;
  word-wrap: break-word;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.ai-button {
  position: relative;
  margin-top: 0;
  font-size: 14px;
  line-height: 18px;
  background: #fff;
  border: 2px solid #27f497;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 9px 17px;
  cursor: pointer;
}

.ai-button span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  margin-right: 20px;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px 10px 25px;
}

header .right-side {
  display: flex;
  gap: 20px;
  align-items: center;
}

header img {
  display: block;
  width: 110px;
  height: auto;
}

.ai-holder-dropdown-menu__wrapper {
  position: relative;
}

.ai-holder-dropdown-menu__list {
  display: none;
  position: absolute;
  bottom: 0;
  left: 3px;
  right: 3px;
  padding-top: 8px;
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  transform: translateY(100%);
  box-shadow: 0 5px 20px 0 rgba(0,0,0,0.1);
  pointer-events: none;
  z-index: 1;
}

.ai-holder-dropdown-menu__wrapper:hover .ai-holder-dropdown-menu__list {
  display: block;
  pointer-events: auto;
}

.ai-holder-dropdown-menu__button:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 13px;
  width: 18px;
  height: 20px;
  margin-right: 5px;
  background: url(/assets/whitepaper.svg) center / contain no-repeat;
}

.ai-holder-dropdown-menu__button:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 9px;
  height: 16px;
  transform: rotate(90deg);
  transition: transform 0.15s linear;
  background: url(/assets/arrow-down-drop.svg) center / contain no-repeat;
}

.ai-holder-dropdown-menu__button {
  pointer-events: none;
}

.ai-holder-dropdown-menu__button span {
  margin-left: 25px;
}

.ai-holder-dropdown-menu__button:hover:after {
  transform: rotate(0deg);
}

.ai-holder-dropdown-menu__item a {
  display: block;
  padding: 6px 10px;
  font-size: 14px;
  color: #131314;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s linear;
}

.ai-holder-dropdown-menu__item a:hover {
  color: #27f497;
}

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  width: 1160px;
  margin: 0 auto;
}

.main-content_part:first-child {
  flex: 0 0 500px;
}

.main-content_part:nth-child(2) {
  flex: 1 1 0;
  min-width: 0;
}

.main-content__desktop-img {
  display: block;
  width: 100%;
  height: auto;
}

h2 {
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 60px;
  color: #131314;
  line-height: 110%;
}

h5, p {
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  margin-bottom: 20px;
}

p {
  margin: 15px auto 30px auto !important;
  max-width: 700px;
}

.info-line {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.main-content__mobile-img {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.inline-link {
  color: #131314;
  text-decoration: none;
  border-bottom: 1px solid #27f497;
  display: inline-block;
  outline: none;
  transition: color 0.15s linear;
}

.inline-link:hover {
  color: #27f497;
}

footer {
  padding: 20px;
}

.team-social-link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.team-social-link {
  display: block;
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 1200px) {
  .main-content {
    max-width: 90%;
  }

  .main-content_part:first-child {
    flex: 0 0 50%;
  }

  .main-content_part:nth-child(2) {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 835px) {
  .main-content {
    display: block;
  }

  .main-content__desktop-img {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  .main-content__mobile-img {
    display: block;
    width: 70%;
    height: auto;
    margin: 20px auto;
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 480px) {
  .header-wrapper {
    align-items: flex-start;
  }

  header .right-side {
    flex-direction: column;
    align-items: self-end;
  }

  .ai-holder-dropdown-menu__wrapper {
    order: 2;
  }

  .right-side .image-wrap {
    margin-top: 10px;
    order: 1;
  }
}
