.header {
  position: fixed;
  right: 50%;
  transform: translateX(50%);
  width: 100%;
  height: 80px;
  padding: 12px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--dark-color);
  border-bottom: 1px solid rgba(252, 252, 253, 0.13);
  background-color: var(--dark-color);
  z-index: 9;
}
.header-container {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
.logo {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 32px !important;
  line-height: 100%;
  letter-spacing: -0.06em;
  text-align: center;
  color: var(--light-color);
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.logo span {
  font-weight: 400;
  transition: color 0.3s ease-in-out;
}
.logo:hover span {
  color: var(--light-color);
}
.logo:hover {
  color: var(--accent-color);
}
.header-nav {
  position: relative;
  justify-content: space-between;
  gap: 10px;
}

.header-nav__title {
  position: absolute;
  top: 280px;
  right: -200px;

  display: none;
  align-items: center;

  transform: rotate(90deg);
  gap: 50px;
}
.header-nav__title h2 {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 70px;
  letter-spacing: -0.03em;
  color: var(--dark-color);
  text-shadow: 1px 1px 0 #cdfc18, 0px 0px 0 #cdfc18, -1px 0px 0 #cdfc18,
    0px -1px 0 #cdfc18;
  opacity: 0.07;
  z-index: -1;
}

.header-nav__line {
  position: relative;
  width: 200px;
  height: 1px;

  border-bottom: 1px solid var(--accent-color);
}

.header-nav__line::before {
  position: absolute;
  content: '';
  bottom: -1px;
  right: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.header-nav__list {
  gap: 36px;
}
.header-nav__list li.header-nav__mob {
  display: none;
}
.header-nav__list li:last-child {
  display: none;
}
.header-nav__list li:last-child a {
  gap: 20px;
}
.header-nav__list li:last-child span {
  font-family: var(--second-family);
  font-weight: 200;
  font-size: 22px;
  line-height: 100%;
  color: #efefef;
}
.header-nav__list a {
  gap: 36px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: color 0.3s ease-in-out;
}
.header-nav__list a:hover {
  color: var(--accent-color);
}

.header-nav__list .header-nav__mob a.is-active {
  color: var(--accent-color);
}

.header-nav__link {
  position: relative;
}
.header-nav__link::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -8px;
  height: 1px;
  width: 100%;
  background-color: var(--accent-color);

  transform: scaleX(0);
  transition: all 0.3s ease;
}

.header-nav__link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.switcher-block {
  display: flex;
  align-items: center;
  gap: 14px;

  cursor: pointer;

  color: #fff;
}

.switcher-block .switcher {
  width: 45px;
  height: 24px;

  position: relative;

  background-color: #fff;

  border-radius: 120px;
}

.switcher-block .switcher:hover {
  background-color: #eaeaea;;
  transition: background-color 0.3s ease;
}

.switcher .circle {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0px;
  top: -1px;
  background-color: #cdfc18;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #94b900, 0 0 0 3px #e8ff8e;
  transition: background-color 0.3s ease, transform 0.4s ease;
}

.switcher-block .switcher:hover .circle {
  background-color: #afd711;
  transition: background-color 0.3s ease, transform 0.4s ease;
}

.switcher[data-lang="en"] .circle {
  transform: translateX(0%);
}
.switcher[data-lang="en"].active .circle {
  transform: translateX(100%);
}

.switcher[data-lang="ua"] .circle {
  transform: translateX(100%);
}
.switcher[data-lang="ua"].active .circle {
  transform: translateX(0%);
}

/* hero  */
.hero {
  padding-top: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../images/verticals/smoke-bg.png');
}
.hero-container {
  position: relative;
  min-height: 750px;

  flex-direction: column;
  gap: 50px;
}
.hero h1 {
  margin-top: 108px;
  max-width: 1080px;
  font-family: var(--second-family);
  font-weight: 200;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--light-color);
}
.hero p {
  max-width: 560px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 146%;
  text-align: center;
  color: var(--light-color);
}
.hero-decor {
  position: absolute;
}
.title-decor, .contacts-title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;  
}
/* left  */
.hero-decor:nth-of-type(1) {
  top: 400px;
  left: 0;
  z-index: 2;
}
/* right  */
.hero-decor:nth-of-type(2) {
  top: 400px;
  right: -40px;
  z-index: 2;
}

/* ticktok  */
.hero-decor:nth-of-type(3) {
  top: 340px;
  left: 30px;
  z-index: 1;
}
/* meta  */
.hero-decor:nth-of-type(4) {
  top: 340px;
  right: 140px;
  z-index: 1;
}
/* google ads  */
.hero-decor:nth-of-type(5) {
  bottom: -160px;
  right: -140px;
  z-index: 1;
}
/* youtube  */
.hero-decor:nth-of-type(6) {
  top: 120px;
  right: 0;
  z-index: 1;
}
/* lightning  */
.hero-decor:nth-of-type(7) {
  top: 150px;
  left: 0;
  z-index: 1;
}

.about {
  padding-bottom: 90px;
}
.about-container {
  position: relative;
}
.about-container::after {
  position: absolute;
  content: '';
  right: -400px;
  bottom: -450px;
  width: 820px;
  height: 808px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../images/dollar.png');
}
.about-title {
  position: relative;
  height: 190px;
  align-items: center;
  justify-content: center;
}

.about-list {
  margin-top: 50px;
  justify-content: center;
  align-items: start;
  gap: 50px;
}
.about-list li {
  width: 100%;
  max-width: 530px;

  flex-direction: column;
  gap: 16px;
  align-items: start;
}
.about-list li:last-child {
  margin-top: 140px;
}
.about-list img {
  padding: 8px;
  border: 1px solid rgba(205, 252, 24, 0.07);
  border-radius: 10px;
  width: 46px;
  height: 46px;
}

.advantages {
  padding: 50px 0;
}

.advantages-container {
  position: relative;
  max-width: 1170px;
  display: flex;
  flex-direction: column;
}
.advantages-container::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: -550px;
  width: 530px;
  height: 522px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../images/advantages/dollar-bg.png');
}

.advantages-title {
  justify-content: center;
}
.advantages-title h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.advantages-text {
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid #cdfc18;
  border-radius: 50px;
}

.advantages-logo {
  height: 100px;
  margin-top: 57px;
  width: 100%;
  justify-content: space-between;
  gap: 45px;
}
.advantages-logo li:nth-of-type(1) img {
  min-width: 52px;
}
.advantages-logo li:nth-of-type(2) img {
  min-width: 55px;
}
.advantages-logo li:nth-of-type(3) img {
  min-width: 39px;
}
.advantages-logo li:nth-of-type(4) img {
  min-width: 70px;
}
.advantages-logo li:nth-of-type(5) img {
  min-width: 51px;
}
.advantages-logo li:nth-of-type(6) img {
  min-width: 230px;
}

.advantages-list {
  margin-top: 100px;
  flex-wrap: wrap;

  justify-content: center;
  align-items: stretch;
  gap: 24px;
}
.advantages-list li {
  width: 100%;

  max-width: 550px;

  padding: 25px;

  border-radius: 20px;
  background-image: linear-gradient(
    to left,
    #000 45%,
    var(--accent-color) 100%
  );
  box-shadow: inset 0 100vw #000;
  background-origin: border-box;
  border: 1px solid transparent;
}
.advantages-list li:nth-of-type(2) {
  background-image: linear-gradient(
    to right,
    #000 45%,
    var(--accent-color) 100%
  );
}
.advantages-list h3 {
  margin-top: 16px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: var(--light-color);
}
.advantages-list p {
  margin-top: 6px;
}
.advantages-list img {
  padding: 10px;
  border: 1px solid #cdfc18;
  border-radius: 10px;
}

.advantages-decor {
  position: absolute;
}
/* star  */
.advantages-decor:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}
/* lightning  */
.advantages-decor:nth-of-type(2) {
  right: -150px;
  bottom: 0;
  width: 60px;
  height: 100px;
  filter: blur(3px);
}

.verticals {
  padding: 50px 0;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../images/verticals/smoke-bg.png');
}
.verticals-container {
  flex-direction: column;
}

.verticals h2 {
  font-size: 32px;
}
.verticals-border {
  position: relative;
  margin-top: 40px;
  padding: 2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url('../images/verticals/border-bg.png');
}
.verticals-wrapper {
  position: relative;
  padding: 69px 122px;

  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 37px;

  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  z-index: 5;
}
.verticals-decor {
  position: absolute;
  top: -35px;
  left: -65px;
  z-index: 1;
}
.verticals-decor--second {
  position: absolute;
  bottom: -54px;
  right: -60px;
  z-index: 1;
}
.verticals-list {
  flex-direction: column;
  align-items: start;
  gap: 55px;
}
.verticals-list li {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.verticals-list__title {
  width: 100%;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 22px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: var(--light-color);
  border-bottom: 1px dashed #2d2929;
}
.verticals-list__title img {
  padding: 10px;
  border: 1px solid rgba(205, 252, 24, 0.07);
  border-radius: 10px;
  width: 46px;
  height: 46px;
}
.verticals-list__line {
  border-left: 1px dashed #2d2929;
}

.contacts {
  padding: 120px 0 100px;
}
.contacts h3 {
  font-size: 32px;
  line-height: 144%;
  text-align: left;
}
.contacts-container {
  /* position: relative; */
  flex-direction: column;
  align-items: start;
}
.contacts-wrapper {
  width: 100%;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.contacts-text {
  max-width: 827px;
}
.contacts-text img {
  margin-top: 72px;
}
.contacts-text p {
  max-width: 724px;
  margin-top: 20px;

  font-size: 22px;
}

.contacts-title {
  margin-top: -100px;
  font-family: var(--second-family);
  font-weight: 900;
  font-size: clamp(3.75rem, -1.125rem + 17.33vw, 11.875rem);
  letter-spacing: -0.03em;

  color: var(--dark-color);
  text-shadow: 1px 1px 0 #cdfc18, 0px 0px 0 #cdfc18, -1px 0px 0 #cdfc18,
    0px -1px 0 #cdfc18;
  opacity: 0.07;
  z-index: -1;
}
.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 464px;
  padding: 24px;
  border: 1px solid #cdfc18;
  border-radius: 19px;
}
.contacts-form__item {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
.contacts-form__item label {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #d0d0d0;
}

.contact-form__input {
  width: 100%;
  padding: 24px 20px;
  border: 1px solid rgba(208, 208, 208, 0.08);
  border-radius: 10px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--accent-color);
}
.contact-form__input:focus {
  border: 1px solid var(--accent-color);
}

.contacts-form button {
  width: 100%;
}
.footer {
  position: relative;
}
.footer::after {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  width: 1582px;
  height: 628px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../images/verticals/smoke-bg.png');
  z-index: -1;
}
.footer-container {
  justify-content: space-between;
  padding: 80px 20px;
  border-top: 1px dashed #101010;
}
.footer a {
  gap: 17px;
  font-family: var(--second-family);
  font-weight: 200;
  font-size: 22px;
  line-height: 100%;
  color: #efefef;
  transition: color 0.3s ease-in-out;
}
.footer a:hover {
  color: var(--accent-color);
}
.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.thanks-container {
  padding: 100px 30px;
  position: relative;
  width: 100%;
  max-width: 1200px;

  max-height: 900px;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.thanks-container img {
  width: 116px;
}
.thanks h2 {
  max-width: 725px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--light-color);
}
.thanks p {
  max-width: 560px;
  text-align: center;
  font-size: 20px;
}
.thanks .thanks-link img {
  width: 39px;
  height: 36px;
  transform: rotate(180deg);
}
.thanks-decor {
  position: absolute;
}
.thanks-decor:nth-of-type(2) {
  top: 0;
  left: 0;
  width: 190px;
}
.thanks-decor:nth-of-type(3) {
  top: 0;
  right: 0;
  width: 56px;
  height: 100px;
}
.thanks-decor:nth-of-type(4) {
  bottom: 0;
  left: 0;
  width: 93px;
}
.thanks-decor:nth-of-type(5) {
  bottom: 0;
  right: 0;
  width: 164px;
}
