*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

html {
  margin: 0;
}

html, body {
  overflow-x: hidden;
}

html.lock, body.lock {
  overflow: hidden;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}
@font-face {
  font-family: "Ubuntu";
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"),
  url("../fonts/Ubuntu-Regular.woff2") format("woff2"),
  url("../fonts/Ubuntu-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"),
  url("../fonts/Ubuntu-Bold.woff2") format("woff2"),
  url("../fonts/Ubuntu-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  line-height: 133%;
  color: #555;
  background: #fff;
}

.btn {
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid red;
  border-radius: 4px;
  background-color: red;
  cursor: pointer;
  transition: all 0.1s ease-in;
  height: 48px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-white {
  color: red;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid red;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.1s ease-in;
  height: 48px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
}

.container {
  max-width: 1192px;
  padding-right: 24px;
  padding-left: 24px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.title {
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
}
.title span {
  color: red;
}

.title-two {
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}
.title-two span {
  color: red;
}

.title-three {
  color: #000;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.title-three span {
  color: red;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .title-two {
    font-size: 24px;
    line-height: 133%;
  }
}
.header {
  height: 80px;
  width: 100%;
  background-color: #000;
  font-size: 16px;
  display: flex;
  position: fixed;
  top: 0;
  border-bottom: 1px solid #2b2b2b;
  z-index: 1000;
}
.header__logo {
  width: 116px;
  height: 60px;
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 100%;
  object-fit: contain;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
  align-items: center;
}
.header__menu {
  margin-left: auto;
  display: flex;
  gap: 32px;
}
.header__menu li a {
  color: #ffffff;
  text-decoration: none;
}
.header__btn {
  height: 38px;
  padding: 0 20px;
  max-width: 200px;
}
.header__burger {
  display: none;
}

@media screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }
  .header__burger {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
  }
  .header__burger:before, .header__burger:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: red;
    transition: 0.4s;
  }
  .header__burger:before {
    top: 2px;
  }
  .header__burger:after {
    bottom: 2px;
  }
  .header__burger span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 1.5px;
    background: red;
  }
  .header__burger.active span {
    display: none;
  }
  .header__burger.active:before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__burger.active:after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header__menu {
    padding: 24px;
    background: #000000;
    position: absolute;
    width: 100vw;
    left: 0;
    top: 100%;
    flex-direction: column;
    margin: 0;
    display: none;
  }
  .header__menu.show {
    display: flex;
  }
}
.home {
  padding-top: 144px;
  background: url(../images/red-dots.df5ae95d.svg) no-repeat top 360px left -130px, url(../images/red-dots.df5ae95d.svg) no-repeat top 40px right -130px, url(../images/red-dots.df5ae95d.svg) no-repeat top 17% right -130px, linear-gradient(165deg, #000 850px, #fff 0, #fff 1420px, #000 0);
}

.home-first__title {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px auto;
  font-size: 50px;
  color: #fff;
  text-align: center;
  line-height: 1;
}
.home-first__title span {
  color: red;
}
.home-first__img {
  max-width: 795px;
  width: 100%;
  margin: 0 auto;
}
.home-first__img img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 1020px) {
  .home {
    padding-top: 120px;
    background: url(../images/red-dots.df5ae95d.svg) no-repeat top 14% right -130px, linear-gradient(165deg, #000 9%, #fff 0, #fff 15%, #000 0);
  }
}
@media screen and (max-width: 767px) {
  .home-first__title {
    font-size: 28px;
  }
}
.home-features__list {
  display: flex;
  gap: 28px;
  max-width: 848px;
  width: 100%;
  margin: 36px auto 0 auto;
  padding: 0;
}
.home-features__item {
  max-width: 264px;
  width: 100%;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  list-style-type: none;
}
.home-features__item span {
  font-size: 60px;
  color: red;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
}
.home-features__item h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #000;
}
.home-features__bottom {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.home-features__btn, .home-features__btn-white {
  max-width: 264px;
}
.home-features__btn-white {
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .home-features .container {
    padding: 0;
  }
  .home-features__list {
    overflow-x: auto;
    padding: 0 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .home-features__item {
    width: 208px;
    flex: 0 0 208px;
  }
  .home-features__item span {
    font-size: 40px;
  }
  .home-features__item h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .home-features__bottom {
    flex-direction: column;
    padding: 0 24px;
  }
  .home-features__btn, .home-features__btn-white {
    max-width: 100%;
  }
}
.home-swiper {
  margin-top: 130px;
  padding-bottom: 160px;
}
.home-swiper .container {
  max-width: 100%;
}
.home-swiper__slider {
  overflow: visible;
  position: relative;
}
.home-swiper__slider:before {
  content: "";
  position: absolute;
  width: 540px;
  height: 100%;
  right: calc(65% + 220px);
  top: 0;
  background: linear-gradient(270deg, transparent, #000);
  z-index: 10;
}
.home-swiper__slider:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 540px;
  left: calc(65% + 220px);
  top: 0;
  background: linear-gradient(90deg, transparent, #000);
  z-index: 10;
}
.home-swiper__title {
  font-size: 130px;
  text-align: center;
  color: #fff;
  margin-bottom: 160px;
  font-weight: 900;
}
.home-swiper__title span {
  color: red;
}
.home-swiper .swiper-slide {
  max-width: 480px;
  width: 100%;
}
.home-swiper .swiper-slide.swiper-slide-active .home-swiper__slider-text {
  opacity: 1;
}
.home-swiper__slider-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-swiper__slider-img img {
  max-width: 100%;
  height: 380px;
  object-position: center;
  object-fit: contain;
}
.home-swiper__item-title {
  margin-bottom: 40px;
}
.home-swiper__item:not(:last-child) {
  margin-bottom: 100px;
}
.home-swiper__slider-item h5 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 133%;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 8px;
}
.home-swiper__slider-item h5 span {
  color: red;
}
.home-swiper__slider-item p {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.home-swiper__slider-text {
  opacity: 0;
  transition: 0.4s;
}
.home-swiper__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
}
.home-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #222;
  margin: 0 !important;
}
.home-swiper__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #666;
}
.home-swiper__button-next, .home-swiper__button-prev {
  position: absolute;
  top: 32%;
  transform: translate(-50%, -50%);
  z-index: 100;
  cursor: pointer;
}
.home-swiper__button-next.swiper-button-disabled, .home-swiper__button-prev.swiper-button-disabled {
  display: none;
}
.home-swiper__button-next {
  left: calc(50% + 235px);
}
.home-swiper__button-prev {
  left: calc(50% - 235px);
}

@media screen and (max-width: 767px) {
  .home-swiper {
    padding: 60px 0 40px 0;
    margin: 0;
  }
  .home-swiper__title {
    font-size: 68px;
    margin-bottom: 80px;
  }
  .home-swiper__item-title {
    font-size: 40px;
  }
  .home-swiper__slider-img {
    height: 300px;
  }
  .home-swiper__slider-img img {
    height: 300px;
  }
}
.discuss {
  background: linear-gradient(280.57deg, #000, red 209.55%);
  padding: 96px 0;
  width: 100%;
}
.discuss__wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.discuss__wrap p {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 133%;
}
.discuss__btn {
  max-width: 320px;
}

@media screen and (max-width: 767px) {
  .discuss {
    padding: 64px 0;
  }
  .discuss__wrap {
    flex-direction: column;
  }
  .discuss__wrap p {
    font-size: 24px;
    text-align: center;
  }
  .discuss__btn {
    max-width: 260px;
  }
}
.constructor {
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 80px left -130px, bottom 80px right -130px;
  background-repeat: no-repeat, no-repeat;
  background-color: #f7f7f7;
}
.constructor__title {
  padding-top: 80px;
  margin-bottom: 64px;
  text-align: center;
}
.constructor__wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: stretch;
  width: 100%;
  margin-bottom: 40px;
}
.constructor__item1 {
  width: 30%;
}
.constructor__item1 img {
  width: 100%;
  object-fit: contain;
}
.constructor__item4 {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  transform: scale(1.1);
  z-index: 1;
}
.constructor__item4 p {
  font-size: 18px;
  position: absolute;
  color: #000;
  left: 50%;
  top: 42%;
  margin-top: -40px;
  transform: translateX(-50%);
}
.constructor__line-img {
  display: flex;
  align-items: center;
  width: 100%;
}
.constructor__line-img img {
  width: 100%;
  object-fit: contain;
}
.constructor__item5 {
  width: 25%;
}
.constructor__item5 img {
  width: 100%;
  object-fit: contain;
}
.constructor__item3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #181818;
  background-image: url(../images/interface-constructor-mask.d8f80b3b.png);
  border-radius: 6px;
  font-size: 24px;
  color: #fff;
  padding: 30px 28px;
  text-align: center;
  height: 147px;
  max-width: 158px;
}
.constructor__item3 p {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  padding: 30px 28px;
  display: inline-block;
  text-align: center;
}
.constructor__item3 p span {
  color: red;
}
.constructor__list {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 28px;
  padding: 0 24px 80px 24px;
  max-width: 1192px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.constructor__list li {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 14px 20px 14px 24px;
  text-align: center;
  font-size: 18px;
  line-height: 133%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1270px) {
  .constructor {
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .constructor__wrap {
    flex-direction: column;
  }
  .constructor__item {
    width: 100%;
  }
  .constructor__item4 p {
    left: 53%;
    transform: translateX(0);
    top: 80px;
  }
  .constructor__line-img {
    height: 100px;
    width: 200px;
    transform: rotate(90deg) scale(0.6);
    z-index: 1;
  }
  .constructor__title {
    padding-top: 64px;
    margin-bottom: 32px;
  }
  .constructor__list {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-gap: 16px;
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 40px;
  }
  .constructor__list li {
    font-size: 14px;
    padding: 9px 32px 7px;
    white-space: nowrap;
  }
}
.development {
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 80px left -130px, bottom 80px right -130px;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
}
.development__top {
  margin-top: 80px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.development__top-icon {
  max-width: 247px;
  height: 64px;
}
.development__top-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.development__img {
  max-width: 100%;
}
.development__img img {
  width: 100%;
  object-fit: contain;
}
.development__partners {
  display: flex;
  align-items: center;
  margin: 50px 0;
}
.development__partners-img {
  padding-right: 8px;
  padding-left: 8px;
  width: 8.33%;
  display: flex;
  align-items: center;
}
.development__partners-img img {
  width: 100%;
  object-fit: contain;
}
.development__tag {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 28px;
  padding: 0 24px 80px 24px;
  max-width: 1192px;
  position: relative;
  width: 100%;
  margin: 0 auto 80px auto;
}
.development__tag-item {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 14px 20px 14px 24px;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  line-height: 133%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1270px) {
  .development {
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .development {
    background-image: none;
  }
  .development__top {
    flex-direction: column;
    margin-top: 64px;
    margin-bottom: 32px;
    gap: 24px;
  }
  .development__top-icon {
    max-width: 220px;
  }
  .development__partners {
    flex-wrap: wrap;
    margin: 20px 0;
  }
  .development__partners-img {
    width: 25%;
    margin-bottom: 12px;
  }
  .development__tag {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-gap: 16px;
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding-bottom: 40px;
  }
  .development__tag li {
    font-size: 14px;
    padding: 9px 32px 7px;
    white-space: nowrap;
  }
}
.roadmap {
  background-color: #000;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 80px left -130px, bottom 80px right -130px;
  background-repeat: no-repeat, no-repeat;
  padding: 80px 0 128px;
}
.roadmap__title {
  color: #ffffff;
  margin-bottom: 64px;
}
.roadmap__table {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  padding-bottom: 48px;
}
.roadmap__table-item {
  background-color: #181818;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 8px;
  z-index: 999;
  font-size: 20px;
}
.roadmap__table-item:nth-child(7) {
  grid-area: 2/1/2/3;
}
.roadmap__table-item:nth-child(8) {
  grid-area: 3/2/3/4;
}
.roadmap__table-item:nth-child(9) {
  grid-area: 4/3/4/5;
}
.roadmap__table-item:nth-child(10) {
  grid-area: 5/4/5/6;
}
.roadmap__table-item:nth-child(11) {
  grid-area: 6/4/6/6;
}
.roadmap__table-item:nth-child(12) {
  grid-area: 7/5/7/7;
}
.roadmap__table-item:nth-child(13) {
  grid-area: 8/6/8/7;
}
.roadmap__table-end {
  height: 500px;
  position: absolute;
  right: -6px;
  top: 0;
  width: 0;
  border-right: 1px dashed red;
  z-index: 0;
}
.roadmap__table-end-text {
  position: absolute;
  color: red;
  bottom: -4px;
  right: 14px;
}
.roadmap__other {
  margin: 24px 24px 24px 0;
  z-index: 1000;
  transition: left 0.5s, bottom 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background-color: #300;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
  padding: 7px 0 14px;
}
.roadmap__other-item1, .roadmap__other-item3, .roadmap__other-item4 {
  font-size: 18px;
}
.roadmap__other-item2 {
  font-size: 65px;
  line-height: 78px;
  font-weight: 800;
}

@media screen and (max-width: 1270px) {
  .roadmap {
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .roadmap {
    padding: 40px 0;
  }
  .roadmap .container {
    padding: 0;
  }
  .roadmap__table {
    grid-template-columns: repeat(6, 120px);
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-right: 24px;
    padding-left: 24px;
  }
  .roadmap__table-item {
    font-size: 15px;
  }
  .roadmap__table-end {
    height: 500px;
    right: unset;
    left: 795px;
  }
  .roadmap__other {
    margin: 24px;
    width: 200px;
    height: 200px;
  }
  .roadmap__title {
    margin-bottom: 24px;
  }
}
.outsourcing {
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 80px left -130px, bottom 80px right -130px;
  background-repeat: no-repeat, no-repeat;
  background-color: #f7f7f7;
}
.outsourcing__title {
  padding-top: 80px;
  margin-bottom: 64px;
}
.outsourcing__wrap {
  padding-bottom: 140px;
  display: flex;
  justify-content: center;
}
.outsourcing__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0;
}
.outsourcing__list:first-child {
  padding-right: 70px;
  padding-left: 0;
}
.outsourcing__list:first-child .outsourcing__icon {
  background: red;
}
.outsourcing__list:first-child .outsourcing__icon img {
  width: 12px;
  height: 12px;
}
.outsourcing__list:first-child .outsourcing__item span {
  color: red;
}
.outsourcing__list:last-child {
  padding-right: 0;
  padding-left: 70px;
  border-left: 1px solid #e7e7e7;
}
.outsourcing__list:last-child .outsourcing__icon {
  background: #32b52e;
}
.outsourcing__list:last-child .outsourcing__icon img {
  width: 16px;
  height: 16px;
}
.outsourcing__item {
  display: flex;
  align-items: center;
}
.outsourcing__icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.outsourcing__icon img {
  object-fit: contain;
}

@media screen and (max-width: 1270px) {
  .outsourcing {
    background-image: none;
  }
  .outsourcing .container {
    padding: 0;
  }
  .outsourcing__title {
    padding-top: 64px;
    margin-bottom: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .outsourcing__wrap {
    justify-content: flex-start;
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 80px;
  }
  .outsourcing__list {
    gap: 20px;
  }
  .outsourcing__list:first-child .outsourcing__icon img, .outsourcing__list:last-child .outsourcing__icon img {
    width: 6px;
    height: 6px;
  }
  .outsourcing__list:first-child {
    padding-left: 24px;
    padding-right: 40px;
  }
  .outsourcing__list:last-child {
    padding-left: 24px;
    padding-right: 24px;
  }
  .outsourcing__list li {
    white-space: nowrap;
  }
  .outsourcing__icon {
    width: 20px;
    flex: 0 0 20px;
    height: 20px;
  }
}
.reviews__wrap {
  padding-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 28px;
}
.reviews__main-img {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.reviews__main-img img {
  width: 100%;
  object-fit: contain;
}
.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.reviews__logo {
  display: inline-block;
  max-width: 345px;
  width: 100%;
}
.reviews__logo img {
  width: 100%;
  object-fit: contain;
}
.reviews__content {
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
}
.reviews__content-text {
  padding: 24px;
}
.reviews__content-bottom {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid #e7e7e7;
}
.reviews__content-bottom h4 {
  font-weight: 700;
}
.reviews__content-bottom h4 span {
  font-weight: 400;
}
.reviews__content-bottom-icon {
  width: 48px;
  height: 48px;
  margin-right: 24px;
}
.reviews__content-bottom-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reviews__bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
}
.reviews__bottom-icon {
  max-width: 240px;
  width: 100%;
}
.reviews__bottom-icon img {
  width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .reviews {
    padding-top: 64px;
    padding-bottom: 60px;
  }
  .reviews__main-img {
    display: none;
  }
  .reviews__wrap {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .reviews__inner {
    align-items: center;
  }
  .reviews__title {
    font-size: 28px;
  }
  .reviews__content-text p {
    font-size: 18px;
    line-height: 133%;
  }
  .reviews__content-bottom {
    font-size: 18px;
  }
  .reviews__bottom {
    width: 100%;
    max-width: 100%;
  }
}
.contact {
  background-color: #000;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top -85px left -90px, top -85px right -90px, bottom -85px left -90px, bottom -85px right -90px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  padding-bottom: 210px;
}
.contact__title {
  color: #fff;
  padding-top: 80px;
  margin-bottom: 64px;
}
.contact__wrap {
  display: flex;
  justify-content: center;
}
.contact__main-img {
  max-width: 456px;
  width: 100%;
}
.contact__main-img img {
  width: 100%;
  object-fit: contain;
}
.contact__inner h5 {
  color: red;
  margin: 0;
  font-size: 24px;
  line-height: 36px;
}
.contact__inner ol {
  margin: 0 74px 0 0;
  padding-left: 24px;
}
.contact__inner ol li {
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
}
.contact__btn-block {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.contact__btn {
  max-width: 220px;
}

@media screen and (max-width: 1270px) {
  .contact {
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 100px;
  }
  .contact__wrap {
    flex-direction: column;
  }
  .contact__title {
    padding: 64px 0 32px 0;
    margin: 0;
  }
  .contact__inner {
    width: 200px;
    margin: 0 auto 32px auto;
  }
  .contact__inner h5 {
    font-size: 16px;
  }
  .contact__inner ol {
    margin-right: 0;
  }
  .contact__inner ol li {
    font-size: 16px;
    line-height: 133%;
  }
  .contact__btn-block {
    flex-direction: column;
    margin-top: 32px;
  }
  .contact__btn {
    max-width: 100%;
  }
}
.footer {
  width: 100%;
  background-color: #000;
  color: #555;
  border-top: 1px solid #2b2b2b;
  padding: 40px 0 24px;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}
.footer__wrap h4 {
  font-size: 16px;
  margin-bottom: 15px;
}
.footer__wrap p {
  font-size: 12px;
  line-height: 133%;
}
.footer__inner-first {
  max-width: 202px;
  width: 100%;
}
.footer__inner {
  display: flex;
  grid-gap: 24px;
}
.footer__menu-inner {
  display: flex;
  grid-gap: 24px;
}
.footer__menu:last-child p {
  max-width: 202px;
  color: #555555;
  text-decoration: none;
  font-size: 12px;
  line-height: 133%;
  margin-bottom: 7px;
}
.footer__menu:last-child ul {
  margin-bottom: 7px;
}
.footer__menu:last-child ul li {
  font-size: 12px;
}
.footer__menu ul {
  padding: 0;
  margin: 0;
}
.footer__menu ul li {
  list-style-type: none;
  min-width: 160px;
  line-height: 24px;
  font-size: 12px;
}
.footer__menu ul li a {
  color: #555555;
  text-decoration: none;
  font-size: 12px;
  line-height: 24px;
}
.footer__bottom {
  display: flex;
  margin-top: 36px;
}
.footer__bottom p {
  font-size: 12px;
}
.footer__bottom p:first-child {
  padding-right: 12px;
}
.footer__bottom p:last-child {
  padding-left: 12px;
  border-left: 1px solid #181818;
}

@media screen and (max-width: 991px) {
  .footer ul {
    max-width: 136px;
  }
  .footer__wrap {
    gap: 16px;
  }
  .footer__inner {
    gap: 16px;
    justify-content: space-between;
    width: 100%;
  }
  .footer__menu {
    max-width: 136px;
  }
  .footer__menu-inner {
    flex-direction: column;
  }
  .footer__bottom p:last-child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    flex-direction: column;
  }
  .footer ul {
    max-width: 100%;
  }
  .footer__menu {
    max-width: 100%;
  }
  .footer__inner-first {
    max-width: 100%;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__menu-inner {
    flex-direction: row;
  }
}
.about {
  padding: 144px 0 80px 0;
}
.about__bg {
  height: 480px;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #000;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 30px right -125px, bottom 30px left -125px;
  background-repeat: no-repeat, no-repeat;
}
.about__btn {
  max-width: 200px;
}
.about__top {
  max-width: 510px;
  margin: 0 auto 64px auto;
}
.about__top p {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: dimgray;
}
.about__title {
  font-size: 50px;
  text-align: center;
  color: #fff;
  line-height: 133%;
  font-weight: 700;
}
.about__content {
  display: flex;
}
.about__inner {
  margin-right: 12px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 40px;
  width: 50%;
}
.about__text {
  height: 100%;
  background-color: #f7f7f7;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 40px;
}
.about__text h3 {
  font-size: 32px;
  line-height: 32px;
  color: #000000;
}
.about__text p {
  margin: 24px 0;
}
.about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  width: 50%;
  margin-left: 12px;
}
.about__item {
  width: 100%;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
}
.about__item span {
  font-size: 60px;
  color: red;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about__item h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #000000;
}
@media screen and (max-width: 1270px) {
  .about__bg {
    background-image: none;
  }
  .about__content {
    flex-direction: column;
    gap: 24px;
  }
  .about__inner {
    margin: 0;
    width: 100%;
  }
  .about__list {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 40px;
  }
  .about__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .about__top {
    padding: 0 24px;
  }
  .about__text h3 {
    font-size: 18px;
  }
  .about__text p {
    font-size: 14px;
  }
  .about__btn {
    max-width: 100%;
  }
  .about__inner {
    margin: 0 24px;
    width: calc(100% - 48px);
  }
  .about .container {
    padding: 0;
  }
  .about__list {
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .about__item {
    width: 208px;
  }
  .about__item span {
    font-size: 40px;
  }
  .about__item h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .about__item p {
    font-size: 14px;
  }
}
.api-gateway {
  position: relative;
  background: linear-gradient(165deg, #000 20%, #fff 0, #fff 32%, #f7f7f7 0);
  padding: 144px 0 160px;
}

.api-gateway-first .container {
  background: border-box url(../images/red-dots.df5ae95d.svg) no-repeat top 400px right 70px;
}
.api-gateway-first__title {
  font-size: 50px;
  max-width: 700px;
  margin: 0 auto 56px auto;
}
.api-gateway-first__wrap {
  display: flex;
  justify-content: center;
}
.api-gateway-first__wrap iframe {
  max-width: 845px;
  width: 100%;
  height: 477px;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .api-gateway-first br {
    display: none;
  }
  .api-gateway-first__wrap iframe {
    height: 300px;
    border-radius: 20px;
  }
}
.api-gateway-list__wrap {
  display: flex;
  gap: 28px;
  max-width: 848px;
  width: 100%;
  margin: 40px auto 0 auto;
}
.api-gateway-list__item {
  width: 100%;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
}
.api-gateway-list__item > span {
  font-size: 60px;
  color: red;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.api-gateway-list__item h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #000000;
}
.api-gateway-list__item p span {
  color: red;
}

@media screen and (max-width: 767px) {
  .api-gateway-list .container {
    padding: 0;
  }
  .api-gateway-list__wrap {
    grid-gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
    display: grid;
    overflow-x: scroll;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-template-columns: none;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .api-gateway-list__item {
    width: 208px;
  }
  .api-gateway-list__item > span {
    font-size: 40px;
  }
  .api-gateway-list__item h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .api-gateway-list__item p {
    font-size: 14px;
  }
}
.api-gateway-features__title {
  margin-bottom: 100px;
  margin-top: 100px;
}
.api-gateway-features__wrap {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.api-gateway-features__img-block {
  display: flex;
  align-items: center;
}
.api-gateway-features__img {
  display: none;
}
.api-gateway-features__img img {
  width: 100%;
  object-fit: contain;
}
.api-gateway-features__img.show {
  display: block;
}
.api-gateway-features__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.api-gateway-features__content {
  margin-right: 90px;
}
.api-gateway-features__content-title {
  color: #000;
  font-weight: 800;
  font-size: 40px;
  line-height: 32px;
  margin-bottom: 32px;
}
.api-gateway-features__tab-list {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.api-gateway-features__tab-item {
  color: #000;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  opacity: 0.3;
}
.api-gateway-features__tab-item.active {
  opacity: 1;
}
.api-gateway-features__tab-content-text {
  display: none;
}
.api-gateway-features__tab-content-text.show {
  display: block;
}

@media screen and (max-width: 767px) {
  .api-gateway {
    padding-bottom: 80px;
  }
  .api-gateway-features__title {
    font-size: 38px;
    margin: 60px 0;
  }
  .api-gateway-features__wrap {
    gap: 100px;
  }
  .api-gateway-features__inner {
    grid-template-columns: 1fr;
  }
  .api-gateway-features__img-block {
    display: none;
  }
  .api-gateway-features__content-title {
    font-size: 28px;
  }
  .api-gateway-features__tab-item {
    font-size: 18px;
  }
  .api-gateway-features__content {
    margin-top: 0;
  }
}
.api-gateway-second {
  background-color: #000;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg), url(../images/line7.bbcb3481.svg);
  background-position: bottom 70px left -130px, top 70px right -130px, top -205px left 50%;
  background-repeat: no-repeat, no-repeat;
  padding: 120px 0;
}
.api-gateway-second__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
}
.api-gateway-second__item-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.api-gateway-second__item-title {
  font-size: 24px;
  color: #ffffff;
}
.api-gateway-second__item-icon {
  width: 32px;
  height: 32px;
}
.api-gateway-second__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.api-gateway-second__item {
  padding: 24px;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .api-gateway-second {
    background-image: none;
    padding: 80px 0;
  }
  .api-gateway-second__wrap {
    grid-template-columns: 1fr;
  }
  .api-gateway-second__item-title {
    font-size: 18px;
  }
  .api-gateway-second__item {
    scroll-snap-align: start;
    width: 100%;
    padding: 16px;
    margin-bottom: 0;
  }
}
.pricing {
  padding: 80px 0 200px 0;
  background-color: #fff;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg), url(../images/vector7.214064b7.svg), url(../images/vector8.431dff31.svg);
  background-position: bottom -54px left -58px, top -54px right -58px, bottom -300px left 0, top -300px left 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow-y: visible;
}
.pricing__title {
  margin-bottom: 80px;
}
.pricing__inner {
  max-width: 560px;
  width: 100%;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  margin: 0 auto;
}
.pricing__inner span {
  font-size: 60px;
  color: red;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.pricing__inner h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #000000;
}
.pricing__bottom {
  max-width: 560px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 40px auto 0 auto;
}
.pricing__btn {
  max-width: 264px;
}

@media screen and (max-width: 991px) {
  .pricing {
    padding: 80px 0 100px 0;
    background-image: none;
  }
  .pricing__title {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .pricing__inner {
    max-width: 208px;
  }
  .pricing__inner span {
    font-size: 40px;
    margin-bottom: 5px;
  }
  .pricing__inner h3 {
    font-size: 24px;
  }
  .pricing__bottom {
    flex-direction: column;
    align-items: center;
  }
}
.popup-form {
  position: fixed;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.9);
  overflow-y: scroll;
  padding: 24px;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  align-items: center;
  display: none;
}
.popup-form.show {
  display: flex;
}
.popup-form__close {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  background-color: #f9f9f9;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-form__close img {
  width: 16.5px;
  height: 16.5px;
  object-fit: contain;
}
.popup-form__body {
  position: relative;
  margin: auto;
  pointer-events: auto;
  background: #fff;
  max-width: 1140px;
  width: 100%;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
}
.popup-form__wrap {
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px 40px;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 0 left -180px, bottom 0 right -180px;
  background-repeat: no-repeat;
}
.popup-form__title {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 32px;
  color: #000000;
}
.popup-form__form-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px 32px;
  max-width: 512px;
  width: 100%;
  margin: 0 auto;
}
.popup-form__form-item textarea {
  height: calc(100% - 26px);
}
.popup-form__form-item:last-child {
  grid-row-start: 3;
  grid-row-end: 5;
  grid-column-start: 2;
}
.popup-form__form-item span {
  color: #8a8a8a;
  font-size: 14px;
}
.popup-form__btn {
  max-width: 512px;
  width: 100%;
  margin: 32px auto 0 auto;
}

.input {
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background: #f9f9f9 no-repeat 50%;
  color: #000;
  height: 40px;
  font-size: 14px;
  padding: 4px 10px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .popup-form__wrap {
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .popup-form__wrap {
    padding: 0;
  }
  .popup-form__form-wrap {
    grid-template-columns: 1fr;
  }
  .popup-form__title {
    text-align: left;
  }
  .popup-form__form-item:last-child {
    grid-row-start: auto;
    grid-row-end: auto;
    grid-column-start: auto;
  }
}
.news {
  padding-top: 79px;
}
.news__top {
  width: 100%;
  background-color: #000;
  position: relative;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 20px right -125px, bottom 20px left -125px;
  background-repeat: no-repeat, no-repeat;
  overflow: visible;
}
.news__top-wrap {
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.news__top-wrap > p {
  color: dimgray;
  font-size: 24px;
  line-height: 32px;
  margin-top: 10px;
}
.news__top-cat {
  position: absolute;
  box-sizing: border-box;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 24px;
  overflow-y: hidden;
  display: flex;
  gap: 24px;
  bottom: -41px;
}
.news__top-cat a {
  text-decoration: none;
  display: block;
  padding: 3px 9px;
  border-radius: 4px;
  color: red;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 24px;
}
.news__top-cat a.active {
  border: 1px solid red;
}
.news__title {
  color: #ffffff;
}
.news__inner {
  margin-top: 80px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 40px;
  gap: 40px;
  width: 100%;
}
.news__item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: #555;
}
.news__item.hidden {
  display: none;
}
.news__item h4 {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.news__item p {
  margin-bottom: 24px;
}
.news__item-img {
  width: 100%;
  line-height: 1;
}
.news__item-img img {
  height: 196px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
.news__item-text {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
}
.news__item-text-cat {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 9px;
  color: red;
  border: 1px solid red;
  border-radius: 4px;
  display: inline-block;
  width: max-content;
}
.news__item-text-date {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .news__item.first {
    flex-direction: row;
    align-items: center;
    grid-area: 1/1/1/4;
  }
  .news__item.first .news__item-img {
    width: 50%;
  }
  .news__item.first .news__item-img img {
    height: 330px;
  }
  .news__item.first .news__item-text {
    padding: 16px 32px;
    width: 50%;
  }
  .news__item.first .news__item-text h4 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .news__inner {
    grid-template-columns: 1fr;
  }
  .news__title {
    font-size: 50px;
  }
  .news__top-cat {
    max-width: calc(100% - 48px);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.single-top {
  margin-top: 79px;
  width: 100%;
  background-color: #000;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  background-image: url(../images/red-dots.df5ae95d.svg), url(../images/red-dots.df5ae95d.svg);
  background-position: top 20px right -125px, bottom 20px left -125px;
  background-repeat: no-repeat, no-repeat;
  overflow: visible;
}
.single-top__nav {
  min-height: 24px;
  margin-top: 28px;
  margin-bottom: 28px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.single-top__nav a {
  color: red;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}
.single-top__nav a:before {
  content: "";
  position: absolute;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDggMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCA4TDggMEw4IDE2TDAgOFoiIGZpbGw9IiNGRjAwMDAiLz4KPC9zdmc+Cg==") no-repeat center/contain;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
}
.single-top__nav a:first-child {
  padding-left: 20px;
}
.single-top__nav a:first-child:before {
  left: 0;
}
.single-top__nav a:last-child {
  padding-right: 20px;
}
.single-top__nav a:last-child:before {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.single-top__nav span {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 9px;
  color: red;
  border: 1px solid red;
  border-radius: 4px;
}
.single-top__wrap h1 {
  color: #fff;
  font-size: 40px;
  line-height: 48px;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}
.single-top__wrap p {
  color: dimgray;
  font-size: 18px;
  line-height: 32px;
  margin: 24px 0 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .single-top__wrap h1 {
    font-size: 28px;
    line-height: 40px;
  }
}
.single {
  margin: 60px auto 40px;
}
.single .container {
  max-width: 734px;
}
.single__content blockquote {
  border: 6px solid red;
  padding: 36px 36px 12px;
  margin: 0 0 24px;
}
.single__content h2 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 24px;
}
.single__content h3 {
  color: #000000;
  margin-bottom: 24px;
}
.single__content p, .single__content ul {
  font-size: 20px;
  line-height: 32px;
  color: #292929;
  margin-bottom: 24px;
}
.single__content img {
  max-width: 100%;
}
.single__content img img img {
  object-fit: contain;
}
.single__content ul {
  margin: 0 0 24px 0;
  padding: 0;
}
.single__content ul li {
  list-style-type: disc;
  padding-bottom: 12px;
  padding-left: 4px;
  margin-left: 18px;
}
.single__content a {
  text-decoration: none;
  color: red;
}

.single-bottom {
  padding: 64px 0 80px;
  background-color: #f7f7f7;
}
.single-bottom__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.single-bottom__title {
  color: #222;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
}
.single-bottom__item {
  text-decoration: none;
  color: #555555;
}
.single-bottom__item h4 {
  color: #000000;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 28px;
}
.single-bottom__item p {
  margin-bottom: 24px;
  max-height: 72px;
  overflow: hidden;
}
.single-bottom__cat {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 9px;
  color: red;
  border: 1px solid red;
  border-radius: 4px;
  display: inline-block;
}
.single-bottom__date {
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .single-bottom {
    padding: 40px 0;
  }
  .single-bottom__wrap {
    grid-template-columns: 1fr;
  }
  .single-bottom__title {
    font-size: 32px;
  }
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup.show {
  display: block;
}

.popup__content {
  background-color: white;
  padding: 30px 21px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.popup__content svg {
  width: 30px;
  height: 40px;
}
.popup__content h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px;
}

.popup__message {
  font-size: 16px;
  color: #555555;
}

.popup__close-btn {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  background-color: #f9f9f9;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__close-btn img {
  width: 16.5px;
  height: 16.5px;
  object-fit: contain;
}

/*# sourceMappingURL=style.css.map */
