@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  position: relative;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #000000;
  transition: all 0.25s;
  cursor: default;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.47;
  letter-spacing: 0.15em;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.47;
  letter-spacing: 0.15em;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.47;
  letter-spacing: 0.15em;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

section {
  width: 100vw;
}

.button {
  display: inline-block;
  border: 4px solid #4466fb;
  border-radius: 30px;
  padding: 18px 25px;
  transition: all 0.2s;
}
.button p {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.button:hover {
  background: #344baf;
}
.button:hover p {
  color: #fff;
}

.buttons-block {
  display: flex;
  justify-content: center;
}
.buttons-block .button:not(:first-of-type) {
  margin-left: 5rem;
}

.link {
  transition: all 0.2s;
}
.link:hover {
  cursor: pointer;
  color: #4466fb;
}

.text {
  font-weight: 600;
  font-size: 1.13rem;
  line-height: 1.38;
  text-align: center;
}
.text--large {
  font-size: 1.37rem;
  line-height: 1.36;
}
.text--extra-large {
  font-size: 1.6rem;
  line-height: 1.35;
}
.text--small {
  font-size: 0.87rem;
  line-height: 1.36;
}

.regular {
  font-weight: 400;
}

.bold {
  font-weight: 900;
}

.wrapper {
  width: 78%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  width: 100vw;
  height: 10.5vh;
  min-height: 5rem;
  max-height: 6.25rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  z-index: 50;
}
.header__content {
  width: 62%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__content .logo {
  width: 5.6rem;
  margin-top: -5px;
}
.header__content .logo img {
  width: 100%;
}
.header__content .navigation-list {
  display: flex;
}
.header__content .navigation-list__item {
  margin-left: 3.1rem;
}
.header__content .navigation-list__item a {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: #ffffff;
  padding: 0.5rem 0;
}
.header__content .navigation-list__item a:hover {
  cursor: pointer;
  color: #4466fb;
}

.menu,
.menu-mobile {
  display: none;
}

.main {
  width: 100vw;
  height: 100vh;
  background: url("../jpg/main_bg.jpg") no-repeat center/cover;
}
.main__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main .scroll {
  position: absolute;
  bottom: 7.4vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.main .scroll p {
  margin-bottom: 0.5rem;
}
.main .scroll-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-animation 1.5s infinite;
}
.main-about {
  width: 100vw;
  background-color: #fff;
  text-align: center;
}
.main-about__content {
  padding: 5.6rem 0;
  width: 100%;
  height: 100%;
}
.main-about-block {
  margin-bottom: 3.4rem;
}
.main-about-block h5 {
  margin-bottom: 1rem;
}
.main-about-features {
  margin-top: 4.7rem;
  display: flex;
  flex-wrap: wrap;
}
.main-about-features__item {
  position: relative;
  width: calc((100% - 2.5rem * 2) / 3);
}
.main-about-features__item:not(:nth-of-type(3n - 2)) {
  margin-left: 2.5rem;
}
.main-about-features__item:not(:nth-of-type(-n + 3)) {
  margin-top: 2.5rem;
}
.main-about-features__item::before {
  content: "";
  position: absolute;
  top: -2.1rem;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 3.75rem;
  background-color: #4466fb;
}
.main-about-logos {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.main-about-logos__item {
  width: calc((100% - 2.5rem * 2) / 3);
  border: 1px solid transparent;
  transition: all 0.3s;
}
.main-about-logos__item img {
  width: 100%;
}
.main-about-logos__item:not(:nth-of-type(3n - 2)) {
  margin-left: 2.5rem;
}
.main-about-logos__item:not(:nth-of-type(-n + 3)) {
  margin-top: 2.5rem;
}
.main-about-logos__item:hover {
  transform: scale(1.07);
}

@keyframes scroll-animation {
  0% {
    top: 100%;
  }
  10% {
    top: 100%;
  }
  20% {
    top: 130%;
  }
  25% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
.facts {
  background-color: #f8f8f8;
  padding: 5.6rem 0;
  text-align: left;
}
.facts__content {
  width: 76%;
}
.facts-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.1rem;
}
.facts-list__item {
  position: relative;
  width: calc(50% - 4.4rem / 2);
  padding-left: 5.6rem;
  counter-increment: number 1;
}
.facts-list__item:nth-of-type(even) {
  margin-left: 4.4rem;
}
.facts-list__item:not(:nth-of-type(-n + 2)) {
  margin-top: 5rem;
}
.facts-list__item::before {
  content: counter(number);
  position: absolute;
  left: 0;
  width: 3.75rem;
  height: 3.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.47;
  letter-spacing: 0.15em;
  border-right: 4px solid #4466fb;
}
.facts-list__item .text {
  text-align: left;
}

.technological-expertise {
  background-color: #fff;
}
.technological-expertise__content {
  padding: 5.6rem 0 8.1rem;
  text-align: center;
}
.technological-expertise-list {
  width: 100%;
  margin-top: 3.1rem;
  display: flex;
  flex-wrap: wrap;
}
.technological-expertise-list__item {
  width: calc((100% - 5rem * 3) / 4);
  position: relative;
  padding-top: 12.5rem;
}
.technological-expertise-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10rem;
  height: 10rem;
  background-color: #f8f8f8;
  border-radius: 150px;
  transform: translateX(-50%);
}
.technological-expertise-list__item::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 6rem;
  height: 6rem;
  transform: translateX(-50%);
}
.technological-expertise-list__item--data::after {
  background: url("../svg/data.svg") no-repeat center/contain;
}
.technological-expertise-list__item--it::after {
  background: url("../svg/programming.svg") no-repeat center/contain;
}
.technological-expertise-list__item--erp::after {
  background: url("../svg/erp.svg") no-repeat center/contain;
}
.technological-expertise-list__item--engineering::after {
  background: url("../svg/aerospace.svg") no-repeat center/contain;
}
.technological-expertise-list__item--management::after {
  background: url("../svg/management.svg") no-repeat center/contain;
}
.technological-expertise-list__item:not(:first-of-type) {
  margin-left: 5rem;
}
.technological-expertise-list__item .text {
  font-size: 1rem;
  width: 9rem;
  margin: 0 auto;
}

.services {
  background-color: #f8f8f8;
}
.services__content {
  padding: 4.4rem 0 6.9rem;
  text-align: center;
}
.services-list {
  width: 110%;
  margin-left: -5%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.services-list__item {
  position: relative;
  width: calc((100% - 5rem * 2) / 3);
  border-radius: 40px;
}
.services-list__item:hover {
  cursor: pointer;
  outline: 1px solid #4466fb;
}
.services-list__item:not(:first-of-type) {
  margin-left: 5rem;
}
.services-list__item h6 {
  text-transform: none;
}
.services-list__img {
  width: 100%;
  border: 4px solid #fff;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.services-list__img img {
  width: 100%;
  transition: all 0.2s;
}
.services-list__front {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  padding-bottom: 2.5rem;
  opacity: 0;
  transition: all 0.5s;
}
.services-list__front.active {
  opacity: 1;
}
.services-list__front p {
  width: 17.5rem;
  margin: 0 auto;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.36;
  text-transform: uppercase;
  padding-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.services-list__front button {
  margin-top: auto;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.2s;
  color: #4466fb;
}
.services-list__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 40px;
  padding: 3.7rem 2.5rem;
  -webkit-appearance: none;
  -webkit-box-shadow: 0px 4px 50px rgba(46, 66, 119, 0.2);
  box-shadow: 0px 4px 50px rgba(46, 66, 119, 0.2);
  text-align: center;
  overflow: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 0.3s;
  overflow-y: scroll;
}
.services-list__back h6 {
  width: 80%;
  margin: 0 auto 1.25rem;
  font-weight: 900;
  font-size: 1.37rem;
  line-height: 1.26;
  text-align: center;
}
.services-list__back li {
  position: relative;
  padding-left: 1rem;
}
.services-list__back li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: #000;
}
.services-list__back li .text {
  text-align: left;
}
.services-list__back.active {
  opacity: 1;
}
.services-list__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  padding: 20px;
  z-index: 10;
  transition: all 0.2s;
}
.services-list__close:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.services-list__close::before, .services-list__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50%;
  background-color: #3f3f46;
  transform: translate(-50%, -50%) rotate(45deg);
}
.services-list__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.why-us {
  background: linear-gradient(112.98deg, #ffffff 28.8%, #f4f7fc 73.3%);
}
.why-us__content {
  padding: 5.6rem 0 9.4rem;
  text-align: center;
}
.why-us-slider {
  width: 39rem;
  max-width: 70%;
  margin: 0 auto;
}
.why-us-slider-wrapper {
  position: relative;
  margin: 1.56rem auto 0;
  width: 90%;
}
.why-us-slider__number {
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 119px;
  width: 119px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.47;
}
.why-us-slider__number svg {
  transform: rotate(-90deg);
  position: absolute;
  left: 0;
  top: 0;
}
.why-us-slider__number .circle {
  stroke-width: 4px;
  stroke-dasharray: 760;
  stroke-dashoffset: 0;
  border-radius: 100%;
}
.why-us-slider__number .circle.animated {
  stroke-dasharray: 0 540;
  stroke-dashoffset: -474;
  stroke-width: 4px;
  stroke: #4466fb;
  border-radius: 100%;
  transition: stroke-width 20s, stroke-dashoffset 20s, stroke-dasharray 20s;
}
@keyframes stroke {
  to {
    stroke-dashoffset: 1000;
  }
}
.why-us-slider-arrow--prev, .why-us-slider-arrow--next {
  top: 70%;
}
.why-us-slider .text--small {
  width: 80%;
  margin: 10px auto 0;
}

.recognition__content {
  padding: 4.4rem 0 5.6rem;
  text-align: center;
}
.recognition-block {
  margin: 1.25rem -8% 0;
  display: flex;
  flex-wrap: wrap;
}
.recognition-block__item {
  width: calc((100% - 5rem * 2) / 3);
  height: 212px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recognition-block__item:not(:nth-of-type(3n - 2)) {
  margin-left: 5rem;
}
.recognition-block__item img {
  max-width: 90%;
}

.clients {
  background-color: #f8f8f8;
}
.clients__content {
  text-align: center;
  padding: 4.4rem 0 6.56rem;
}
.clients-slider {
  width: 90%;
  margin: 0 auto;
}
.clients-slider-wrapper {
  position: relative;
  margin-top: 2.5rem;
}
.clients-slider__item img {
  width: calc(100% - 2.5rem);
  margin: 0 auto;
}
.clients-slider-arrow--next, .clients-slider-arrow--prev {
  top: 50%;
}

.testimonials__content {
  padding: 3.1rem 0 9.4rem;
  background-color: #fff;
  text-align: left;
}
.testimonials-slider {
  margin-right: -15%;
}
.testimonials-slider-wrapper {
  position: relative;
  margin-top: 2.8rem;
}
.testimonials-slider-arrow--next, .testimonials-slider-arrow--prev {
  top: -25%;
}
.testimonials-slider-arrow--prev.slick-arrow {
  left: calc(100% - 120px);
}
.testimonials-slider__item {
  display: flex !important;
  padding-right: 120px;
  display: flex;
  justify-content: space-between;
}
.testimonials-slider__img {
  width: 30%;
  text-align: center;
}
.testimonials-slider__img img {
  margin: 0 auto 1.25rem;
}
.testimonials-slider__img h6:first-of-type {
  margin-bottom: 0.1rem;
}
.testimonials-slider__info {
  position: relative;
  width: calc(100% - 30% - 2.5rem);
  padding-top: 3.1rem;
}
.testimonials-slider__info::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(3.1rem - 2.6rem / 2);
  font-family: "Oswald", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.6rem;
  color: #4466fb;
}
.testimonials-slider__info p {
  text-align: left;
}

.potential {
  background-color: #f8f8f8;
}
.potential__content {
  padding: 7.5rem 0 7.8rem;
  text-align: center;
}

.footer {
  width: 100vw;
  background-color: #fff;
  margin-top: auto;
}
.footer__content {
  padding: 2.5rem 0 3.4rem;
  width: 62%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
}
.footer-col {
  width: calc((100% - 2.5rem * 2) / 3);
}
.footer-col:not(:first-of-type) {
  margin-left: 2.5rem;
}
.footer-col__item {
  display: block;
  margin-bottom: 0.6rem;
}
.footer-col__item p, .footer-col__item a {
  text-align: left;
}
.footer-col__item:first-child {
  margin-bottom: 1rem;
}
.footer-col__item.copyright {
  margin-top: 1rem;
}
.footer-col__item svg {
  display: block;
  margin-top: 1rem;
}
.footer-col__item svg path {
  transition: fill 0.2s;
}
.footer-col__item svg:hover {
  cursor: pointer;
}
.footer-col__item svg:hover path {
  fill: #344baf;
}

.slick-arrow {
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url("../svg/arrow-blue.svg") no-repeat center/40%;
  z-index: 10;
}
.slick-arrow--black {
  background-image: url("../svg/arrow-black.svg");
}
.slick-arrow.slick-disabled {
  opacity: 0.2;
}
.slick-arrow:hover {
  cursor: pointer;
}
.slick-arrow--next {
  right: 0;
  left: auto;
  transform: translateY(-50%) rotate(180deg);
}

.about {
  background: #dfe2e9 url("../png/about_bg.png") no-repeat 100px -20px/100%;
}
.about__content {
  padding: 11rem 0 5.6rem;
  width: 62%;
  text-align: left;
}
.about__content button {
  cursor: pointer;
}
.about-info {
  scroll-margin-top: 200px;
  width: 36rem;
  max-height: 23rem;
  overflow: hidden;
}
.about-info .text {
  text-align: left;
  margin-top: 1.87rem;
}
.about-info li {
  position: relative;
  padding-left: 1rem;
}
.about-info li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: #000;
}

.breadcrumbs {
  margin-bottom: 1rem;
}
.breadcrumbs-list {
  display: flex;
  align-items: flex-end;
}
.breadcrumbs-list__item {
  padding: 0.5rem 0;
}
.breadcrumbs-list__item:not(:first-of-type) {
  margin-left: 2rem;
}

.about-ceo {
  scroll-margin-top: 80px;
  background-color: #fff;
}
.about-ceo__content {
  position: relative;
  width: 62%;
  min-width: 900px;
  display: flex;
  justify-content: space-between;
  padding: 5rem 0 7.5rem;
}
.about-ceo__content button {
  margin-top: 1.5rem;
}
.about-ceo-img {
  width: calc(40% - 2.5rem);
}
.about-ceo-img img {
  width: 100%;
}
.about-ceo-info {
  position: relative;
  padding-top: 3.1rem;
  width: 35rem;
  max-height: 23rem;
  overflow: hidden;
}
.about-ceo-info h5 {
  margin-top: 1.87rem;
}
.about-ceo-info .text {
  text-align: left;
  margin-top: 1.87rem;
}
.about-ceo-info a {
  display: block;
  margin-top: 3.1rem;
}

.team {
  scroll-margin-top: 80px;
  background: url("../jpg/team_bg.jpg") no-repeat center top/cover;
}
.team__content {
  position: relative;
  padding: 5.6rem 0 9.4rem;
  width: 62%;
  min-width: 900px;
}
.team__content button {
  bottom: 5.5rem;
  left: 0;
}
.team-info {
  width: 35rem;
  max-height: 14rem;
  overflow: hidden;
}
.team-info .text {
  text-align: left;
  margin-top: 1.87rem;
}

.story {
  scroll-margin-top: 80px;
  background-color: #f8f8f8;
}
.story__content {
  width: 90%;
  text-align: center;
  padding: 5rem 0 11rem;
}
.story-block {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}
.story-block__item1 {
  grid-area: 1/1/3/2;
  border-radius: 48px;
  background: url("../jpg/story_1.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 4rem;
  min-height: 50rem;
}
.story-block__item1 h1 {
  font-family: "Oswald", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}
.story-block__item2 {
  grid-area: 1/2/2/3;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.7rem 2.5rem;
}
.story-block__item3 {
  grid-area: 1/3/2/4;
  background-color: #777777;
  border-radius: 20px;
  padding: 1.87rem 2.5rem;
}
.story-block__item3 .text {
  color: #fff;
}
.story-block__item4 {
  grid-area: 2/2/3/4;
  background-color: #dfe2e9;
  border-radius: 60px;
  padding: 2.5rem;
}
.story-block__item5 {
  grid-area: 3/1/5/2;
  background-color: #e5e5e5;
  border-radius: 20px;
  padding: 4.7rem 2.5rem;
}
.story-block__item6 {
  grid-area: 3/2/4/3;
  background-color: #f5f5f5;
  border: 2px solid #000000;
  border-radius: 40px;
  padding: 2.2rem 2.5rem;
}
.story-block__item7 {
  grid-area: 4/2/5/3;
  background-color: #f5f5f5;
  border-radius: 80px;
  padding: 4.7rem 2.5rem;
}
.story-block__item8 {
  grid-area: 3/3/5/4;
  background: url("../jpg/story_2.jpg") no-repeat center/cover;
  border-radius: 40px;
  text-align: center;
  padding: 8.7rem 2.5rem 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 50rem;
}
.story-block__item8 h5 {
  font-weight: 900;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.story-block__item8 h4 {
  margin-top: auto;
}
.story-block__item8 img {
  margin: 1rem auto 0;
  width: 22px;
  height: 34px;
  transform: rotate(-90deg);
}
.story-block .text {
  text-align: left;
}

.privacy {
  background-color: #e5e5e5;
}
.privacy__content {
  padding: 11rem 0 5.6rem;
  width: 62%;
  text-align: left;
}
.privacy-info h3 {
  margin-top: 3.1rem;
}
.privacy-info .text {
  text-align: left;
  margin-top: 1rem;
}
.privacy-info li {
  position: relative;
  padding-left: 1rem;
}
.privacy-info li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: #000;
}

.height-parent {
  scroll-margin-top: 300px;
}

.full-height {
  animation: change-height 2s forwards;
}

@keyframes change-height {
  to {
    max-height: 3000px;
  }
}
.no-scroll {
  overflow: hidden;
}

.cookies-block {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 170px;
  background-color: #fff;
  border: 1px solid #4466fb;
  padding: 10px 20px;
  z-index: 100;
}

.cookies-block__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 15px;
  height: 15px;
  z-index: 50;
}

.cookies-block__close:hover {
  cursor: pointer;
}

.cookies-block__close::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background-color: #000;
  transform: rotate(-45deg);
}

.cookies-block__close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background-color: #000;
  transform: rotate(45deg);
}

.cookies-block h5 {
  margin-bottom: 0.5rem;
}

.cookies-block p,
.cookies-block a {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.cookies-block-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.cookies-block-button {
  width: 100px;
  margin-left: 10px;
  display: block;
  font-size: 12px;
  padding: 10px 15px;
  cursor: pointer;
}