.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

:root {
  --main-orange: #e25200;
  --light-orange: #ffede2;
  --grey-light: #f5f5f5;
  --border: #e5e5e5;
  --error: #e25200;
  --success: #00904b;
  --sidePopinWidth: 700px;
}

.cta__component__block ul,
.cta__component__block li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta__component__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(50% - 8px), 1fr));
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .cta__component__items {
    grid-template-columns: repeat(auto-fit, minmax(calc(33.333% - 8px), 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .cta__component__items {
    grid-template-columns: repeat(auto-fit, minmax(calc(25% - 8px), 1fr));
  }
}
.cta__component__items.size {
  grid-template-columns: repeat(auto-fit, minmax(calc(16.66% - 8px), 1fr));
}
@media screen and (min-width: 1000px) {
  .cta__component__items.size {
    grid-template-columns: repeat(auto-fit, minmax(calc(25% - 8px), 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .cta__component__items.size {
    grid-template-columns: repeat(auto-fit, minmax(calc(16.66% - 8px), 1fr));
  }
}
.cta__component__title {
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: initial;
  color: #1c1c1c;
  line-height: 30px;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .cta__component__title {
    font-size: 2rem;
  }
}
.cta__component__title.text-left {
  text-align: left;
}
.cta__component__title.text-right {
  text-align: right;
}
.cta__component__subtitle {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.cta__component__link {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem !important;
  text-transform: initial;
  width: auto;
  max-width: initial;
  height: 50px;
}
.cta__component__link:hover, .cta__component__link:focus {
  border-color: #1c1c1c;
  background-color: transparent;
  color: #1c1c1c;
}
