/*
Theme Name: Infuse Hub
Author: Meduzzen
Description: A blank WordPress theme
Version: 1.0
*/

/*=============================================
=            Normalize            =
=============================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  outline: 0;
  vertical-align: baseline;
}

hr {
  margin: 0;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font3);
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: var(--black);
}

@media screen and (max-width: 700px) {
  body {
    font-size: 14px;
    line-height: 167%;
  }
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  transition: all 0.5s;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

dfn {
  font-style: italic;
}

mark {
  background: unset;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  transition: all var(--hover-transition);
}

button {
  overflow: visible;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  border-style: solid;
  border-width: 0;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

ul,
ol {
  margin-bottom: 25px;
  margin-left: 20px;
  padding-left: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.6rem;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.6rem 1.6rem;
}

/* standartization */

@font-face {
  font-family: "BentonSans Medium";
  src: url("fonts/BentonSans_Medium.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "BentonSans Bold";
  src: url("fonts/BentonSans_Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BentonSans Regular";
  src: url("fonts/BentonSans_Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* primary */

#primary {
  overflow: hidden;
  position: relative;
}

#primary.pdf-page::after {
  display: none;
}

#primary::after {
  position: absolute;
  content: "";
  width: 100%;
  background: linear-gradient(0deg, #7eb2cf 0%, #fff 100%);
  left: 0;
  z-index: -1;
}

.single-post #primary::after {
  bottom: -120px;
}

@media screen and (min-width: 1601px) {
  #primary::after {
    height: 989px;
    bottom: -154px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  #primary::after {
    height: 786px;
    bottom: -124px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
  #primary::after {
    height: 700px;
    bottom: -147px;
  }
}

@media screen and (max-width: 700px) {
  #primary::after {
    height: 520px;
    bottom: 0;
  }
}

/* container */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 100px;
  padding-right: 100px;
}

@media (max-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 700px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* header */

body:not(.single) .header-block__logo-container {
  display: none;
}

.header-block__logo-container {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.header-block__logo-link {
  display: flex;
}

@media screen and (max-width: 700px) {
  .header-block__logo-container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .header-block__logo-link {
    gap: 16px;
  }
}

.header-block__banner-text {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 131%;
  letter-spacing: 0.01em;
  color: var(--color-slate-gray);
  text-align: center;
  padding: 8px 0;
}

.header-block__banner-text-container-wrapper {
  background-color: var(--color-light-blue);
}

.header-block__banner-text p {
  text-align: left;
}

.header-block__banner-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

@media screen and (max-width: 700px) {
  .header-block__banner-text {
    padding: 12px 0;
    font-size: 9.5px;
    align-items: flex-start;
  }

  .header-block__banner-text svg {
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    margin-top: -2px;
    max-height: 16px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
  .header-block__banner-text {
    font-size: 12px;
  }

  .header-block__banner-text svg {
    max-width: 20px;
    max-height: 20px;
  }

  .header-block__banner-text-container {
    padding-left: 34px;
    padding-right: 34px;
  }
}

/* executive insights */

#primary section.executive-insights-block {
  padding-top: 64px;
  padding-bottom: 64px;
}

.executive-insights__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.executive-insights__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.executive-insights__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 105%;
  color: var(--color-dark-bg);
}

.executive-insights__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-slate-gray);
}

.executive-insights__posts-list {
  display: flex;
  gap: 32px;
}

.executive-insights__post-item {
  flex: 1 1 calc((100% / 3) - 32px);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-sizing: border-box;
  transition: all 0.5s;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 12px 0 rgba(61, 61, 61, 0.08);
}

.executive-insights__post-head {
  width: 100%;
  height: 242px;
  transition: all 0.5s;
}

.executive-insights__post-content {
  display: flex;
  flex-direction: column;
  padding: 32px;
  flex-grow: 1;
}

.executive-insights__post-tile {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.executive-insights__post-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.executive-insights__post-excerpt p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #222;
  margin-top: 20px;
  font-family: var(--font2);
}

.executive-insights__post-btn {
  max-width: fit-content;
  line-height: 100%;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  margin-top: auto;
  transition: all 0.5s;
  color: #000;
  background: var(--yellow);
  border-radius: 80px;
  padding: 13px 22px;
  font-weight: 400;
  font-size: 14px;
  margin-top: 25px;
}

.arrow-icon .arrow-line {
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s;
  transform-origin: left;
}

.arrow-icon .arrow-head {
  transition: all 0.5s;
}

@media screen and (min-width: 1201px) {
  .executive-insights__post-item {
    transform: translateY(6px);
  }

  .executive-insights__post-item:hover {
    transform: translateY(0px);
  }

  .executive-insights__post-btn:hover {
    background: #a6a6a6;
  }

  .executive-insights__post-tag {
    display: block !important;
    font-weight: 400;
    font-size: 10px;
    line-height: 110%;
    color: var(--yellow);
    border-radius: 20px;
    background: var(--black);
    padding: 6px 8px 4px 8px;
    max-width: fit-content;
    margin-bottom: 10px;
    font-family: var(--font1);
    text-transform: uppercase;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .executive-insights__post-content {
    padding: 24px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
  #primary section.executive-insights-block {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .executive-insights__posts-list {
    flex-direction: column;
    gap: 56px;
  }

  .executive-insights__post-item {
    flex-direction: row;
    padding-bottom: 0;
    align-items: center;
  }

  .executive-insights__post-head {
    height: 273px;
    flex-basis: calc(50% - 24px);
  }

  .executive-insights__post-content {
    margin: 0;
    padding: 0 24px;
    flex-basis: 50%;
  }

  .executive-insights__head {
    gap: 20px;
  }

  .executive-insights__title {
    font-size: 24px;
  }

  .executive-insights__desc {
    font-size: 16px;
  }

  .executive-insights__post-excerpt p {
    margin-top: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .executive-insights__head {
    max-width: unset;
  }

  .executive-insights__post-btn {
    margin-top: 20px;
  }
}

@media screen and (max-width: 700px) {
  #primary section.executive-insights-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .executive-insights__wrapper {
    gap: 40px;
  }

  .executive-insights__posts-list {
    flex-direction: column;
    gap: 40px;
  }

  .executive-insights__post-head {
    height: 147px;
  }

  .executive-insights__post-content {
    padding: 24px;
  }

  .executive-insights__post-tile {
    font-size: 18px;
  }

  .executive-insights__title {
    font-size: 20px;
  }

  .executive-insights__desc p {
    font-size: 14px;
    line-height: 140%;
  }

  .executive-insights__post-btn {
    max-width: unset;
    text-align: center;
    justify-content: center;
  }
}

/* cta cloud contact */

#primary section.cta-cloud-contact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.cta-cloud-contact__wrapper {
  padding: 80px 120px;
  border-radius: 20px;
  background-color: var(--color-background-light);
  margin-left: -52px;
  margin-right: -52px;
}

.cta-cloud-contact__content {
  max-width: 620px;
}

.cta-cloud-contact__title strong {
  color: var(--blue);
  font-weight: 700;
}

.cta-cloud-contact__title {
  font-weight: 500;
  font-size: 46px;
  line-height: 115%;
  color: var(--color-dark-bg);
}

.cta-cloud-contact__desc p {
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  color: var(--color-medium-gray);
  margin-top: 20px;
  margin-bottom: 32px;
}

.cta-cloud-contact__btn {
  border-radius: 80px;
  padding: 13px 21px;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: var(--white);
  display: block;
  background: var(--blue);
  max-width: fit-content;
  border: 2px solid transparent;
  transition: all 0.5s;
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .cta-cloud-contact__wrapper {
    padding: 64px 80px;
    margin-left: -60px;
    margin-right: -60px;
  }

  .cta-cloud-contact__title {
    font-size: 40px;
  }

  .cta-cloud-contact__desc {
    font-size: 20px;
  }
}

@media screen and (min-width: 1201px) {
  .cta-cloud-contact__btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: transparent;
  }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
  .cta-cloud-contact__wrapper {
    padding: 28px 32px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .cta-cloud-contact__title {
    font-size: 28px;
    max-width: 385px;
  }

  .cta-cloud-contact__desc p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .cta-cloud-contact__btn {
    font-size: 16px;
  }
}

@media screen and (max-width: 700px) {
  .cta-cloud-contact__wrapper {
    border-radius: 12px;
    padding: 28px 24px;
    margin-left: -12px;
    margin-right: -12px;
  }

  .cta-cloud-contact__title {
    font-size: 22px;
  }

  .cta-cloud-contact__desc p {
    font-size: 14px;
    margin-bottom: 180px;
  }

  .cta-cloud-contact__btn {
    max-width: unset;
    text-align: center;
  }
}

/* sliders */

.slider-block-swiper {
  clip-path: inset(-1000px -1000px -9999px -100px);
  overflow: visible;
}

.sliders-block {
  margin-bottom: 90px;
}

.slider-block-slide {
  height: auto;
  display: flex;
}

.swiper-pagination {
  position: unset !important;
}

.sliders-block__pagination:not(.swiper-pagination-lock) {
  display: flex;
  align-items: center;
  gap: 8px;
  width: unset !important;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  transition: all 0.3s ease;
  outline: none !important;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--white);
  opacity: 1;
}

.sliders-block__wrapper {
  display: flex;
  gap: 48px;
  align-items: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next svg *,
.swiper-button-prev svg * {
  transition: all 0.3s;
}

.swiper-button-next,
.swiper-button-prev {
  position: unset;
  display: flex;
  margin: 0;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: unset !important;
  outline: none !important;
  min-width: 23px;
  height: auto;
  transition: all 0.5s;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  height: auto;
}

.sliders-block__nav {
  position: absolute;
  width: fit-content !important;
  bottom: 32px !important;
  left: 32px !important;
  top: unset !important;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(32px);
  padding: 5px;
  border-radius: 32px;
  display: flex;
  gap: 15px;
  box-sizing: border-box;
  align-items: center;
  z-index: 1;
}

.swiper-button-disabled svg {
  opacity: 0.3;
}

.sliders-block__pagination:not(.swiper-pagination-lock) {
  display: flex;
  align-items: center;
  gap: 8px;
  width: unset !important;
}

@media screen and (min-width: 1201px) {
  .swiper-button-next:not(.swiper-button-disabled):hover svg rect,
  .swiper-button-prev:not(.swiper-button-disabled):hover svg rect {
    fill: var(--yellow);
  }
}

@media screen and (max-width: 1200px) {
  .swiper-button-next:not(.swiper-button-disabled):active svg rect,
  .swiper-button-prev:not(.swiper-button-disabled):active svg rect {
    fill: var(--yellow);
  }
}

.sliders-block__card {
  min-height: 570px;
  max-width: 336px;
  width: 100%;
  border-radius: 20px;
  padding: 40px 32px 32px 32px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.sliders-block__card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.sliders-block__card-inner {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sliders-block__column--right {
  max-width: calc(100% - 336px - 55px);
  position: relative;
}

.sliders-block__card-title {
  font-weight: 400;
  font-size: 30px;
  line-height: 105%;
  color: var(--white);
  font-family: var(--font3);
}

.sliders-block__card-desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  margin-top: 20px;
  font-family: var(--font2);
}

.sliders-block.midnight .sliders-block__card {
  background-color: var(--midnight-blue);
}

.sliders-block.midnight .sliders-block__card::before {
  position: absolute;
  content: "";
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/05/slider-banner-midnight-pseudo.svg");
  top: -112px;
  left: -96px;
  width: 398px;
  height: 353px;
  filter: blur(400px);
}

.sliders-block.light_blue .sliders-block__card {
  background-color: var(--light-blue);
}

.sliders-block.yellow .sliders-block__card {
  background: linear-gradient(270deg, #d0af38 0%, #e5b531 100%);
}

.sliders-block.yellow .sliders-block__card::before {
  position: absolute;
  content: "";
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/05/slider-banner-yellow-pseudo.svg");
  top: -34px;
  left: -107px;
  width: 480px;
  height: 258px;
  filter: blur(100px);
}

@media screen and (min-width: 701px) and (max-width: 1600px) {
  .sliders-block__wrapper {
    gap: 40px;
  }
}

@media screen and (min-width: 1201px) {
  .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    background: var(--black);
  }

  .sliders-block .sliders-block__card::after {
    background: transparent;
    transition: all 0.5s;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .sliders-block .sliders-block__card:hover::after {
    background: rgba(0, 0, 0, 0.15);
  }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
  .sliders-block__card {
    padding: 40px 32px;
  }

  .sliders-block__nav {
    bottom: 40px !important;
  }

  .sliders-block__card {
    min-height: 298px;
  }

  .sliders-block__card-image {
    width: 60%;
    height: 100%;
    top: 0;
    left: unset;
    right: 0;
  }

  .sliders-block__card-inner {
    max-width: 298px;
  }

  .sliders-block {
    margin-bottom: 70px;
  }

  .sliders-block.midnight .sliders-block__card::before {
    background: center / cover no-repeat
      url("/wp-content/uploads/2025/05/slider-banner-midnight-pseudo-tablet.svg");
    left: -60px;
    top: -65px;
    width: 100%;
    height: 100%;
  }

  .sliders-block.yellow .sliders-block__card {
    background: linear-gradient(
      180deg,
      #ebbb34 0%,
      #f0c641 56.52%,
      #f1d96f 86.42%,
      #f1cf5c 90.09%,
      #edb239 94.23%,
      #eab23d 100%
    );
  }

  .sliders-block.yellow .sliders-block__card .sliders-block__card-image {
    width: 335px;
    height: 446px;
    top: -133px;
    left: unset;
    right: 0;
  }

  .sliders-block.yellow .sliders-block__card::before {
    background: center / cover no-repeat
      url("/wp-content/uploads/2025/05/slider-banner-yellow-pseudo-tablet.svg");
    left: -113px;
    top: -71px;
    width: 581px;
    height: 422px;
  }
}

@media screen and (max-width: 1200px) {
  .sliders-block__wrapper {
    flex-direction: column;
    align-items: unset;
  }

  .sliders-block__column--right {
    max-width: unset;
  }

  .sliders-block__card {
    max-width: unset;
  }
}

@media screen and (max-width: 700px) {
  .sliders-block {
    margin-bottom: 50px;
  }

  .sliders-block__card-title {
    font-size: 22px;
  }

  .sliders-block__card-desc p {
    font-size: 14px;
    margin-top: 12px;
  }

  .sliders-block__card {
    padding: 20px;
    min-height: 240px;
  }

  .sliders-block__nav {
    left: 20px !important;
    bottom: 20px !important;
  }

  .sliders-block__wrapper {
    gap: 20px;
  }

  .sliders-block {
    margin-bottom: 50px;
  }

  .sliders-block .sliders-block__card::before {
    display: none;
  }

  .sliders-block.yellow .sliders-block__card::before {
    display: block;
    background: center / cover no-repeat
      url(/wp-content/uploads/2025/05/slider-banner-yellow-pseudo-mobile.svg);
    top: -17px;
    left: -100px;
    width: 480px;
    height: 258px;
  }

  .sliders-block.yellow .sliders-block__card .sliders-block__card-image {
    width: 278px;
    height: 370px;
    top: unset;
    bottom: -114px;
  }
}

/* footer */

.footer-block__logo-link {
  display: flex;
  align-items: center;
}

.footer-block__logo-link img {
  max-height: 53px;
}

.footer-block__logo-container {
  display: flex;
  justify-content: space-between;
}

.footer-block__right-text {
  display: flex;
  flex-direction: column;
}

.footer-block__right-menu {
  display: flex;
}

.footer-block__right-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.footer-block__right-menu ul li a {
  display: flex;
  font-family: var(--font2);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-skip-ink: none;
}

.footer-block {
  background: var(--black);
}

.footer-block__separator {
  min-width: 1px;
}

.footer-block__right-copyright p {
  font-family: var(--font2);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}

@media screen and (min-width: 1301px) {
  .footer-block__right-text {
    align-items: flex-end;
  }
}

@media screen and (max-width: 1300px) {
  .footer-block__logo-container {
    flex-direction: column;
    gap: 32px;
  }
}

@media screen and (min-width: 1201px) {
  .footer-block__separator {
    margin-right: 26px;
    margin-left: 26px;
    max-height: 52px;
  }

  .footer-block__right-text a:hover {
    text-decoration-color: var(--white);
  }
}

@media screen and (max-width: 1200px) {
  .footer-block__logo-link img {
    max-height: 42px;
  }
}

@media screen and (min-width: 801px) {
  .footer-block__right-menu ul {
    gap: 40px;
  }

  .footer-block__right-text {
    gap: 12px;
  }

  .footer-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 800px) {
  .footer-block__right-text {
    align-items: center;
    gap: 20px;
  }

  .footer-block__right-copyright p {
    text-align: center;
  }

  .footer-block__right-menu ul {
    flex-direction: column;
    gap: 12px;
  }

  .footer-block {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer-block__logo-link img:last-child {
    max-width: 141px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .footer-block__separator {
    margin-right: 20px;
    margin-left: 20px;
    max-height: 42px;
  }

  .footer-block__logo-link img:last-child {
    max-width: 161px;
  }
}

@media screen and (max-width: 800px) {
  .footer-block__separator {
    margin-right: 17px;
    margin-left: 17px;
    max-height: 43px;
  }
}

/* first screen */
.first-screen {
  position: relative;
}

.first-screen__wrapper {
  display: flex;
  position: relative;
  gap: 40px;
  justify-content: space-between;
}

@media screen and (min-width: 1601px) {
  .first-screen__wrapper {
    padding-top: 20px;
    padding-bottom: 80px;
    align-items: flex-end;
  }

  .first-screen__content {
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .first-screen__wrapper {
    align-items: center;
  }
}

@media screen and (min-width: 701px) and (max-width: 1600px) {
  .first-screen__wrapper {
    padding-top: 60px;
  }
}

@media screen and (max-width: 700px) {
  .first-screen__wrapper {
    padding-top: 40px;
    flex-direction: column;
  }
}

.first-screen__content {
  display: flex;
  flex-direction: column;
}

.first-screen__title {
  font-family: var(--font3);
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
  font-size: 48px;
}

.first-screen__title strong {
  font-weight: 700;
  color: #34a853;
}

.first-screen__desc p {
  font-family: var(--font2);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 60px;
}

.first-screen__sponsored-logos {
  display: flex;
}

.first-screen__sponsored-logos img {
  width: 100%;
  height: auto;
}

.first-screen__association-text img {
  max-width: 111px;
}

.first-screen__sponsored-text img {
  max-width: 212px;
}

.first-screen__right-img.mobile {
  display: none;
}

.first-screen__separator {
  min-width: 1px;
}

.first-screen__association-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: space-between;
}

.first-screen__association-text p,
.first-screen__sponsored-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  font-family: var(--font2);
  color: #000;
}

.first-screen__sponsored-text {
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: space-between;
}

.white-text p {
  color: #fff !important;
}

@media screen and (max-width: 1200px) {
  .first-screen__association-text p,
  .first-screen__sponsored-text p {
    font-size: 12px;
  }
}

@media screen and (min-width: 1201px) {
  .first-screen__separator {
    margin-right: 26px;
    margin-left: 26px;
    max-height: 52px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .first-screen__association-text img {
    max-width: 105px;
  }
  .first-screen__sponsored-text img {
    max-width: 207px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
  .first-screen__separator {
    margin-right: 20px;
    margin-left: 20px;
    max-height: 42px;
  }

  .first-screen__sponsored-text {
    gap: 10px;
  }
}

@media screen and (max-width: 700px) {
  .first-screen__separator {
    display: none;
  }
}

@media screen and (min-width: 1601px) {
  .first-screen__content {
    max-width: 700px;
  }

  .first-screen__right-img {
    max-width: 778px;
    margin-right: -100px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .first-screen__desc p {
    margin-bottom: 56px;
  }

  .first-screen__content {
    max-width: 581px;
  }

  .first-screen__right-img {
    max-width: 502px;
    margin-right: -100px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
  .first-screen__desc p {
    margin-bottom: 40px;
    max-width: 273px;
  }

  .first-screen__association-text img {
    max-width: 83px;
  }

  .first-screen__sponsored-text img {
    max-width: 161px;
  }

  .first-screen__right-img {
    max-width: 336px;
    margin-right: -40px;
  }

  .first-screen__content {
    max-width: 371px;
  }

  .first-screen__wrapper {
    gap: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .first-screen__title {
    font-size: 30px;
  }
}

@media screen and (max-width: 700px) {
  .first-screen__title {
    text-align: center;
  }

  .first-screen {
    background-position-x: 62% !important;
  }

  .first-screen__desc p {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .first-screen__sponsored-logos {
    gap: 18px;
    justify-content: center;
  }

  .first-screen__association-text img {
    max-width: 92px;
  }

  .first-screen__sponsored-text img {
    max-width: 158px;
  }

  .first-screen__right-img.desktop {
    display: none;
  }

  .first-screen__right-img.mobile {
    display: block !important;
    width: calc(100% + 40px);
    margin-left: auto;
    margin-right: -20px;
    max-width: 380px;
  }
}

@media screen and (max-width: 400px) {
  .first-screen__right-img.mobile {
    width: calc(100% + 30px);
    margin-left: -10px;
    margin-right: -20px;
  }
}
