/* inlined: main.css */
.hw-main__title--service-detail {
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: 82px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    text-transform: uppercase;
}

@media screen and (max-width: 840px) {
    .hw-main__title--service-detail {
        font-size: 52px;
    }
}

@media screen and (max-width: 500px) {
    .hw-main__title--service-detail {
        font-size: 42px;
    }
}
/* end: main.css */
/* inlined: preference.css */
.preference-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 42px;
  padding: 80px 250px 0;
  background-color: #111;
}

.preference-section__btn {
  display: block;
  width: 320px;
  height: 54px;
  padding: 20px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  color: #000;
  text-align: center;
  font-family: 'Josefin Sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.preference-section__btn:hover {
  background-color: #6c01f6;
  color: white;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.preference-section__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}

.preference-section__title-item {
  flex: 1 1 30%;
  display: flex;
  max-width: 580px;
  min-width: 300px;
  max-height: 350px;
  padding: 85px 25px 84px 25px;
  justify-content: center;
  align-items: center;
}

.preference-section__title {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 82px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}

.preference-section__focus-item {
  flex: 1 1 30%;
  display: flex;
  max-width: 340px;
  min-width: 300px;
  height: 350px;
  padding: 46px 49px 186px 48px;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 50%);
  background-color:rgb(41 41 41);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.preference-section__focus-item-title {
  max-width: 243px;
  color: #fff;
  text-align: center;
  font-family: 'Biryani', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}

.preference-section__focus-item-text {
  max-width: 207px;
  color: #fff;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
}

.preference-section__focus-item-title,
.preference-section__focus-item-text {
  position: relative;
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.preference-section__focus-item:hover {
  background-color: rgb(41 41 41 / 50%);
}

.preference-section__focus-item:hover .preference-section__focus-item-title {
  transform: translateY(80px);
}

.preference-section__focus-item:hover .preference-section__focus-item-text {
  transform: translateY(80px);
}

.preference-section__white-item {
  flex: 2 1 60%;
  max-width: 460px;
  min-width: 300px;
  height: 350px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 50%);
  background-color: rgb(41 41 41);
  padding: 186px 36px 46px 161px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.preference-section__white-item-img {
  position: absolute;
  top: -100px;
  left: -150px;
  max-width: 545px;
  max-height: 545px;
  transition: transform 1s ease, left 1s ease;
}

.preference-section__white-text-container,
.preference-section__black-text-container,
.preference-section__last-text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.preference-section__white-text-container-title {
  max-width: 263px;
  color: #fff;
  text-align: center;
  font-family: 'Biryani', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}

.preference-section__white-text-container-text {
  max-width: 263px;
  color: #fff;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
}

.preference-section__white-item,
.preference-section__black-item {
  transition: transform 0.3s ease, background-color 0.8s ease;
}

.preference-section__white-item:hover,
.preference-section__black-item:hover {
  border-color: rgb(255 255 255 / 50%);
  background-image: linear-gradient(180deg, #5e01d5 16.2%, #ff8902 135%);
}

.preference-section__white-item:hover .preference-section__white-text-container {
  transform: translate(-130px, -130px);
  transition: transform 0.8s ease;
}

.preference-section__white-item:hover .preference-section__white-item-img {
  transform: rotate(-180deg) translateX(calc(100% - 545.36px));
  left: calc(100% - 370.36px);
}

.preference-section__black-item {
  flex: 2 1 60%;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 50%);
  background-color:rgb(41 41 41);
  max-width: 820px;
  min-width: 200px;
  height: 350px;
  padding: 63px 378px 169px 45px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.preference-section__black-text-container {
  align-items: center;
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.8s ease;
}

.preference-section__black-text-container-title {
  max-width: 397px;
  color: #fff;
  text-align: center;
  font-family: 'Biryani', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}

.preference-section__black-text-container-text {
  max-width: 295px;
  color: #fff;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
}

.preference-section__black-item-img {
  position: absolute;
  bottom: -100px;
  right: -50px;
  max-width: 667px;
  max-height: 664px;
  transform: rotate(0) translateX(0);
  transition: transform 1s ease;
}

.preference-section__black-item:hover .preference-section__black-text-container {
  transform: translateY(30px);
}

.preference-section__black-item:hover .preference-section__black-item-img {
  transform: rotate(-180deg) translateX(calc(100% - 450px));
  left: calc(100% - 667px);
  z-index: 0;
}

.preference-section__last-item {
  flex: 2 1 30%;
  display: flex;
  max-width: 820px;
  min-width: 200px;
  height: 350px;
  padding: 206px 53px 46px 54px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 50%);
  background-color: #1d1d1d;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.preference-section__last-text-container {
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.preference-section__last-text-container-title {
  max-width: 383px;
  color: #fff;
  text-align: center;
  font-family: 'Biryani', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}

.preference-section__last-text-container-text {
  color: #fff;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
}

.preference-section__last-item:hover {
  background-color: rgb(41 41 41 / 80%);
}

.preference-section__last-item:hover .preference-section__last-text-container {
  transform: translateY(-60px);
}

@media screen and (max-width: 1700px) {
  .preference-section {
    padding: 80px 150px 0;
  }

  .preference-section__title {
    font-size: 72px;
  }

  .preference-section__focus-item {
    padding: 46px 49px 186px 48px;
  }

  .preference-section__focus-item-title {
    font-size: 30px;
  }

  .preference-section__focus-item-text {
    font-size: 16px;
  }

  .preference-section__white-item {
    padding-left: 161px;
    padding-top: 186px;
    padding-right: 36px;
    padding-bottom: 46px;
  }

  .preference-section__white-text-container-title {
    font-size: 30px;
  }

  .preference-section__white-text-container-text {
    font-size: 16px;
  }

  .preference-section__black-item {
    padding-left: 45px;
    padding-top: 63px;
    padding-right: 378px;
    padding-bottom: 169px;
  }

  .preference-section__black-text-container-title {
    font-size: 30px;
  }

  .preference-section__black-text-container-text {
    font-size: 16px;
  }

  .preference-section__last-item {
    padding: 206px 53px 46px 54px;
  }

  .preference-section__last-text-container-title {
    font-size: 30px;
  }

  .preference-section__last-text-container-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 1500px) {
  .preference-section {
    padding: 80px 100px 0;
  }

  .preference-section__title {
    font-size: 62px;
  }

  .preference-section__focus-item {
    padding: 46px 49px 186px 48px;
  }

  .preference-section__focus-item-title {
    font-size: 28px;
  }

  .preference-section__white-item {
    padding-left: 161px;
    padding-top: 186px;
    padding-right: 36px;
    padding-bottom: 46px;
  }

  .preference-section__white-text-container-title {
    font-size: 28px;
  }

  .preference-section__black-item {
    padding-left: 45px;
    padding-top: 63px;
    padding-right: 378px;
    padding-bottom: 169px;
  }

  .preference-section__black-text-container-title {
    font-size: 28px;
  }

  .preference-section__last-item {
    padding: 206px 53px 46px 54px;
  }

  .preference-section__last-text-container-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 1400px) {
  .preference-section {
    padding: 80px 50px 0;
  }

  .preference-section__title {
    font-size: 52px;
  }

  .preference-section__focus-item {
    padding: 46px 49px 186px 48px;
  }

  .preference-section__focus-item-title {
    font-size: 26px;
  }

  .preference-section__white-item {
    padding-left: 161px;
    padding-top: 186px;
    padding-right: 36px;
    padding-bottom: 46px;
  }

  .preference-section__white-text-container-title {
    font-size: 26px;
  }

  .preference-section__black-item {
    padding-left: 45px;
    padding-top: 63px;
    padding-right: 378px;
    padding-bottom: 169px;
  }

  .preference-section__black-text-container-title {
    font-size: 26px;
  }

  .preference-section__last-item {
    padding: 206px 53px 46px 54px;
  }

  .preference-section__last-text-container-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 1300px) {
  .preference-section {
    padding: 36px 40px 0;
  }

  .preference-section__title-item {
    order: 0;
    flex: 1 1 100%;
    max-width: 900px;
  }

  .preference-section__last-item {
    order: 3;
    flex: 1 1 100%;
  }

  .preference-section__grid {
    justify-content: center;
  }
}

@media screen and (max-width: 900px) {
  .preference-section__title-item,
  .preference-section__btn {
    display: none;
  }

  .preference-section__white-item {
    flex: 2 1 30%;
  }

  .preference-section__focus-item {
    display: flex;
    max-width: 270px;
    height: 350px;
    padding: 50px 14px 190px 13px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }

  .preference-section__black-item {
    height: 350px;
  }

  .preference-section__focus-item-title {
    font-size: 32px;
  }

  .preference-section__focus-item-text {
    font-size: 18px;
  }

  .preference-section__white-text-container-title {
    font-size: 32px;
  }

  .preference-section__white-text-container-text {
    font-size: 18px;
  }

  .preference-section__black-text-container-title {
    font-size: 32px;
    max-width: 397px;
  }

  .preference-section__black-text-container-text {
    font-size: 18px;
    max-width: 290px;
  }

  .preference-section__last-text-container-title {
    max-width: 383px;
    font-size: 32px;
  }

  .preference-section__last-text-container-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 825px) {
  .preference-section__focus-item {
    order: 1;
    flex: 1 1 100%;
    max-width: 900px;
  }

  .preference-section__white-item {
    order: 2;
    flex: 1 1 100%;
    max-width: 900px;
  }

  .preference-section__black-item {
    order: 3;
    flex: 1 1 100%;
    max-width: 900px;
  }

  .preference-section__black-item:hover .preference-section__black-item-img {
    transform: rotate(-180deg) translateX(calc(100% - 500px));
    left: calc(100% - 666.694px);
    transition: transform 1s ease;
    z-index: 0;
  }
}

@media screen and (max-width: 700px) {
  .preference-section {
    padding: 34px 20px 0;
  }

  .preference-section__black-item:hover .preference-section__black-item-img {
    transform: rotate(-180deg) translateX(calc(100% - 600px));
    left: calc(100% - 666.694px);
    transition: transform 1s ease;
    z-index: 0;
  }
}

@media screen and (max-width: 670px) {
  .preference-section__title-item,
  .preference-section__btn {
    display: block;
  }

  .preference-section__title-item,
  .preference-section__focus-item,
  .preference-section__white-item,
  .preference-section__black-item,
  .preference-section__last-item {
    max-width: 340px;
  }

  .preference-section__focus-item-title,
  .preference-section__white-text-container-title,
  .preference-section__black-text-container-title,
  .preference-section__last-text-container-title {
    font-size: 22px;
  }

  .preference-section__title {
    font-size: 42px;
  }

  .preference-section__focus-item {
    display: flex;
    width: 340px;
    height: 150px;
    padding: 27px 80px 27px 79px;
    justify-content: center;
    align-items: center;
  }

  .preference-section__white-item {
    padding-left: 36px;
    padding-top: 205px;
    padding-right: 36px;
    padding-bottom: 35px;
  }

  .preference-section__black-item {
    padding-left: 20px;
    padding-top: 38px;
    padding-right: 20px;
    padding-bottom: 145px;
  }

  .preference-section__last-item {
    padding: 42px 25px 42px 26px;
    height: 180px;
  }

  .preference-section__title-item {
    padding: 25px;
  }

  .preference-section__focus-item:hover .preference-section__focus-item-title {
    transform: none;
    font-size: 28px;
  }

  .preference-section__focus-item:hover .preference-section__focus-item-text {
    transform: none;
  }

  .preference-section__white-item:hover .preference-section__white-text-container {
    transform: translateY(-10px);
    transition: transform 0.8s ease;
  }

  .preference-section__white-item-img {
    position: absolute;
    top: -150px;
    right: 0;
    left: auto;
    transform: rotate(180deg);
  }

  .preference-section__white-item:hover .preference-section__white-item-img {
    transform: rotate(-30deg) translateX(calc(100% - 545.36px));
    right: calc(100% - 545.36px);
    left: auto;
  }

  .preference-section__black-item-img {
    position: absolute;
    bottom: -100px;
    right: -250px;
    max-width: 666.694px;
    max-height: 664.265px;
    transform: rotate(0deg) translateX(0);
    transition: transform 2s ease;
  }

  .preference-section__black-item:hover .preference-section__black-item-img {
    transform: rotate(90deg) translateX(calc(100% - 400px));
    left: calc(100% - 600px);
  }

  .preference-section__last-item:hover .preference-section__last-text-container {
    transform: none;
  }

  .preference-section__last-item:hover .preference-section__last-text-container-title {
    font-size: 28px;
  }
}
/* end: preference.css */
/* inlined: advantage.css */
.advantage-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 234px 250px 165px 350px;
    gap: 50px;
    position: relative;
    flex-wrap: wrap;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advantage-section .preference-section__title {
    text-align: left;
    position: relative;
    z-index: 10;
}

.advantage-section__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 1;
    flex: 0 0 50%;
    /* max-width: 50%; */
}

.advantage-section__item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.advantage-section__item-svg {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0;
}

.advantage-section__item-text {
    color: #FFF;
    font-family: "Josefin Sans", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;

    pointer-events: none;
}

.advantage-section__image {
    position: absolute;
    top: -300px;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

@media screen and (max-width: 1860px) {
    .advantage-section {
        padding-left: 250px;
        padding-right: 150px;
        padding-top: 200px;
        padding-bottom: 135px;
        gap: 100px;
    }
}

@media screen and (max-width: 1520px) {
    .advantage-section {
        padding-left: 150px;
        padding-right: 100px;
        padding-top: 150px;
        padding-bottom: 100px;
        gap: 50px;
    }
}

@media screen and (max-width: 1310px) {
    .advantage-section {
        flex-direction: column;
        justify-self: center;
        gap: 32px;
        display: flex;
        flex-direction: column;
    }

    .advantage-section__container {
        max-width: 100%;
    }

    .advantage-section__image {
        position: absolute;
        top: -300px;
        right: -280px;
        z-index: 0;
    }

    .advantage-section__image--meta {
        right: -320px !important;
    }

    .advantage-section__image--local {
        right: -365px !important;
    }

    .advantage-section__image--email {
        right: -400px !important;
    }
}

@media screen and (max-width: 834px) {
    .advantage-section {
        padding-left: 124px;
        padding-right: 123px;
        padding-top: 154px;
        padding-bottom: 155px;

        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .advantage-section__container {
        grid-column: span 2;
    }
}

@media screen and (max-width: 755px) {
    .advantage-section {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 620px) {
    .advantage-section__item-text {
        font-size: 22px;
    }

    .advantage-section__item-svg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 465px) {
    .advantage-section {
        padding-left: 32px;
        padding-right: 10px;
    }

    .advantage-section__item-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .advantage-section {
        padding-left: 25px;
        padding-right: 10px;
    }
}

.advantage-section__title {
    flex: 0 0 100%;
    grid-column: span 2;
}

.advantage-section__title {
    text-align: left;
}
/* end: advantage.css */
/* inlined: result.css */
.services-page {
    background-color: #111 !important;
    margin-top: 72px !important;
}
/* end: result.css */
/* inlined: about.css */
.service-margine {
    margin-top: 0px !important;
    margin-bottom: 56px;
}

.about-margine {
    margin-bottom: 180px;
}

@media screen and (max-width: 1800px) {
    .about-width {
        margin-left: 150px !important;
        margin-right: 150px !important;
    }
}

@media screen and (max-width: 1600px) {
    .about-width {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }
}

@media screen and (max-width: 1500px) {
    .about-width {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }
}

@media screen and (max-width: 500px) {
    .service-margine {
        margin-top: 0px !important;
        margin-bottom: 36px !important;
    }
}
/* end: about.css */
/* inlined: faq.css */
.faq-section {
    display: flex;
    flex-direction: column;
    margin: 180px auto;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq-section__container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1420px;
    padding: 0 50px;
    gap: 200px;
    justify-content: flex-start;
}

.faq-section__container-item:hover .faq-section__hidden-item {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s;
}

.faq-section__container-item {
    position: relative;
}

.faq-section__container-left-text {
    color: #fff;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    text-transform: uppercase;
}

.faq-section__container-right {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: flex-start;
    width: 100%;
    max-width: 958px;
    gap: 60px;
}

.faq-section__visible-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    cursor: pointer;
    height: 161px;
    gap: 5px;
    position: relative;
    margin-right: 15px;
}

.faq-section__visible-item--web {
    margin-bottom: 10px;
}

.faq-section__hidden-item {
    position: absolute;
    z-index: 1;
    top: 6px;
    left: 100%;
    height: 100%;
    display: flex;
    transform: translateX(-100%);
    width: 522px;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.faq-section__visible-item {
    z-index: 1;
}

.faq-section__item-answer {
    color: #fff;
    font-family: 'Biryani', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 275;
    line-height: 160%;
    width: 100%;
    max-width: 522px;
}

.faq-section__item-number {
    color: #e5e5ea;
    text-align: center;
    font-size: 104px;
    font-style: normal;
    font-weight: 700;
}

.faq-section__item-question {
    display: flex;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    max-width: 357px;
    padding-top: 12px;
}

.faq-section__image {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 1;
}

.faq-section__image--web-seo {
    top: -300px !important;
}

.faq-section__image--local {
    top: 0 !important;
}

.faq-section__image--influence {
    top: -50px !important;
}

@media screen and (max-width: 1360px) {
    .faq-section {
        margin: 100px auto;
    }

    .faq-section__container {
        gap: 100px;
    }

    .faq-section__container-right {
        gap: 40px;
    }

    .faq-section__container-item {
        gap: 40px;
    }

    .faq-section__container-left-text {
        font-size: 52px;
    }

    .faq-section__item-number {
        font-size: 72px;
    }

    .faq-section__item-question {
        font-size: 24px;
    }

    .faq-section__item-answer {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .faq-section {
        display: flex;
        flex-direction: column;
        margin: 140px auto;
    }

    .faq-section__container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 42px;
    }

    .faq-section__container-right {
        align-items: center;
        max-width: 100%;
    }

    .faq-section__container-item {
        position: relative;
    }

    .faq-section__hidden-item {
        position: relative;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .faq-section__visible-item {
        height: 104px;
        width: 561px;
        align-items: center;
        justify-content: flex-start;
    }

    .faq-section__item-question {
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .faq-section__container-item:hover .faq-section__hidden-item {
        transform: none;
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (max-width: 620px) {
    .faq-section__visible-item {
        height: 104px;
        width: 294px;
    }

    .faq-section__container-item {
        width: 294px;
    }

    .faq-section__item-answer,
    .faq-section__hidden-item {
        width: 294px;
    }

    .faq-section__container-item:hover .faq-section__hidden-item {
        min-height: 200px;
    }

    .faq-section__item-question {
        font-size: 20px;
        padding: 0;
    }

    .faq-section__container-left-text {
        font-size: 36px;
    }

    .faq-section__item-number {
        font-size: 58px;
    }
}

@media (min-width: 1201px) {
    .faq-section__visible-item {
        width: 405px;
    }
}
.faq-section {
    display: flex;
    flex-direction: column;
    margin: 180px auto;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq-section__container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1420px;
    padding: 0 50px;
    gap: 200px;
    justify-content: flex-start;
}

.faq-section__container-item:hover .faq-section__hidden-item {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s;
}

.faq-section__container-item {
    position: relative;
}

.faq-section__container-left-text {
    color: #fff;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    text-transform: uppercase;
}

.faq-section__container-right {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: flex-start;
    width: 100%;
    max-width: 958px;
    gap: 60px;
}

.faq-section__visible-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    cursor: pointer;
    height: 161px;
    gap: 5px;
    position: relative;
    margin-right: 15px;
}

.faq-section__visible-item--web {
    margin-bottom: 10px;
}

.faq-section__hidden-item {
    position: absolute;
    z-index: 1;
    top: 6px;
    left: 100%;
    height: 100%;
    display: flex;
    transform: translateX(-100%);
    width: 522px;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.faq-section__visible-item {
    z-index: 1;
}

.faq-section__item-answer {
    color: #fff;
    font-family: 'Biryani', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 275;
    line-height: 160%;
    width: 100%;
    max-width: 522px;
}

.faq-section__item-number {
    color: #e5e5ea;
    text-align: center;
    font-size: 104px;
    font-style: normal;
    font-weight: 700;
}

.faq-section__item-question {
    display: flex;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    max-width: 357px;
    padding-top: 12px;
}

.faq-section__image {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 1;
}

.faq-section__image--web-seo {
    top: -300px !important;
}

.faq-section__image--local {
    top: 0 !important;
}

.faq-section__image--influence {
    top: -50px !important;
}

.faq-section__container-item:nth-child(5) .faq-section__visible-item {
    height: 210px;
}
@media screen and (min-width: 1200px) {
    .faq-section__container-item:nth-child(7):hover {
        height: 435px;
    }
}

@media screen and (max-width: 1360px) {
    .faq-section {
        margin: 100px auto;
    }

    .faq-section__container {
        gap: 100px;
    }

    .faq-section__container-right {
        gap: 40px;
    }

    .faq-section__container-item {
        gap: 40px;
    }

    .faq-section__container-left-text {
        font-size: 52px;
    }

    .faq-section__item-number {
        font-size: 72px;
    }

    .faq-section__item-question {
        font-size: 24px;
    }

    .faq-section__item-answer {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .faq-section {
        display: flex;
        flex-direction: column;
        margin: 140px auto;
    }

    .faq-section__container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 42px;
    }

    .faq-section__container-right {
        align-items: center;
        max-width: 100%;
    }

    .faq-section__container-item {
        position: relative;
    }

    .faq-section__hidden-item {
        position: relative;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .faq-section__visible-item {
        height: 104px;
        width: 561px;
        align-items: center;
        justify-content: flex-start;
    }

    .faq-section__item-question {
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .faq-section__container-item:hover .faq-section__hidden-item {
        transform: none;
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (max-width: 620px) {
    .faq-section__visible-item {
        height: 104px;
        width: 294px;
    }

    .faq-section__container-item {
        width: 294px;
    }

    .faq-section__item-answer,
    .faq-section__hidden-item {
        width: 294px;
    }

    .faq-section__container-item:hover .faq-section__hidden-item {
        min-height: 200px;
    }

    .faq-section__item-question {
        font-size: 20px;
        padding: 0;
    }

    .faq-section__container-left-text {
        font-size: 36px;
    }

    .faq-section__item-number {
        font-size: 58px;
    }
}

@media (min-width: 1201px) {
    .faq-section__visible-item {
        width: 405px;
    }
}
/* end: faq.css */