:root {
  --dark: #000;
  --accent: #2243ff;
  --grey: #858585;
  --white: #fff;
}
/* * {
  transition: all 0.3s;
} */

.crumbs a,
.crumbs span {
  color: #fff;
}
.wrapp {
  padding-left: 50px;
  padding-right: 50px;
  overflow: hidden;
}
.halb-wrapp {
  padding-left: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.common__title {
  font-size: 50px;
  color: var(--dark);
  line-height: 52px;
  font-weight: 500;
}

.btn {
  border-radius: 50px;
  height: 54px;
  line-height: 54px;
  padding-left: 34px;
  padding-right: 34px;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.btn span {
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}
.btn-white-hover:hover {
  background-color: var(--white);
  color: var(--accent);
}
.btn-white-hover:hover svg path {
  fill: var(--accent);
}
.btn-blue-hover:hover {
  background-color: var(--accent);
  color: var(--white);
}
.btn-blue-hover:hover svg path {
  fill: var(--white);
}

.grey_bg {
  position: relative;
  z-index: 2;
}

.grey_bg:after {
  content: "";
  display: block;
  width: calc(100% - 100px) !important;
  height: 101%;
  background: #f6f6f6;
  position: absolute;
  top: 0;
  right: 0 !important;
  left: 0 !important;
  margin: 0 auto !important;
  border-radius: 0 0 0 50px;
  opacity: 0.5;
  z-index: -1;
}
.page-child .post-thumbnail {
  display: none;
}

@media (max-width: 768px) {
  .grey_bg:after {
    width: calc(100% - 25px) !important;
  }
}

/* CTA start */
.cta {
  position: relative;
  background-color: var(--accent);
  padding-top: 120px;
  padding-bottom: 120px;
  margin-top: 120px;
  z-index: 2;
  margin-left: 50px;
  margin-right: 50px;
}
#cta__ravlik {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -50%;
  z-index: -1;
}
.cta__title {
  color: var(--white);
  text-align: center;
}
.cta__btns {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 817px;
  margin: 0 auto;
  margin-top: 50px;
  gap: 30px;
}
.cta__left-btn {
  background-color: var(--white);
  color: #333;
  border: 1px solid var(--white);
}
.cta__left-btn path {
  fill: #333;
}
.cta__btn {
  height: 64px;
  line-height: 64px;
  width: 48%;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  gap: 25px;
  min-width: 300px;
}
.cta__right-btn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.cta__text--wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.cta__text--item {
  font-size: 18px;
  white-space: nowrap;
}
.cta__text--item span {
  font-size: 39px;
}
.cta__text--wrap {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
}
.cta__text--item {
  color: var(--white);
}
/* CTA end */

@media screen and (max-width: 56.25em) {
  .grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  #cta__ravlik {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -50%;
    transform: translateY(50%);
    z-index: -1;
  }
  .cta {
    margin-left: 25px;
    margin-right: 25px;
  }
}

@media screen and (max-width: 48em) {
  .wrapp {
    padding-left: 24px;
    padding-right: 24px;
  }
  .halb-wrapp {
    padding-left: 24px;
  }

  .grey_bg:after {
    display: none !important;
  }
  .decorated:before {
    display: none !important;
  }
}

@media screen and (max-width: 33.875em) {
  .grid {
    grid-template-columns: 1fr;
  }
  .cta {
    margin-left: 25px;
    margin-right: 25px;
  }
  .cta__btn {
    width: 100%;
    font-size: 14px;
  }
  .cta__text--item {
    font-size: 19px;
    text-align: center;
    white-space: wrap;
  }
  .cta__title {
    font-size: 30px;
    line-height: 32px;
  }
  .cta {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 60px;
  }
}
