.registration-page a.desc-btn {
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 25px;
  letter-spacing: 0.7px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 500;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.registration-page a.desc-btn::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 1px;
  right: -35px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .2s;
  background: var(--brand-color);
}

.registration-page a.desc-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top: 1px solid var(--brand-color);
  border-right: 1px solid var(--brand-color);
  display: block;
  position: absolute;
  right: -34px;
  top: 1px;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  transition: all .2s;
}

.registration-page a.desc-btn:hover {
  text-decoration: none;
}

.custom-lower-part img {
  max-width: 100% !important;
  height: auto !important;
}

.registration-page .brand-logo svg {
  height: 100%;
}

.registration-page .brand-logo svg .diff_color {
  fill: #000;
}
.registration-page .brand-logo svg .diff_color_atesto{
  fill: #808080;
}

@media screen and (min-width: 991px) {
  .registration-page a.desc-btn {
    cursor: default;
  }
}

@media screen and (max-width: 990px) {
  .registration-page .desc-btn-wrapper {
    text-align: center;
  }
  .registration-page a.desc-btn::after {
    height: 50px;
    width: 1px;
    right: 10px;
    top: 40px;
  }
  .registration-page a.desc-btn::before {
    right: 5px;
    top: 78px;
    transform: rotate(135deg);
  }
  .registration-page a.desc-btn:hover::before {
    top: 88px;
    right: 5px;
  }
  .registration-page a.desc-btn:hover::after {
    top: 50px;
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .registration-page a.desc-btn {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .registration-page a.desc-btn::before {
    top: -78px;
    transform: rotate(-45deg);
  }
  .registration-page a.desc-btn::after {
    top: -40px;
  }
  .registration-page a.desc-btn:hover::before {
    top: -78px;
  }
  .registration-page a.desc-btn:hover::after {
    top: -40px;
  }
  .registration-page .desc-btn-wrapper {
    text-align: left;
  }
}