/* button */
.button-block {
  display: flex;
}

.btns-center {
  justify-content: center;
}

.site-btn {
  --btn-height: 40px;
  --btn-hr-paddding: 20px;
  --btn-color: var(--dark-gray);
  --btn-border-width: 1px;
  --btn-border-color: var(--dark-gray);
  --btn-bg-color: var(--light-gray);
  --btn-hover-color: var(--light-gray);
  --btn-hover-bg-color: var(--dark-gray);
  --btn-border-radius: 0;
  display: flex;
  align-items: center;
  text-align: center;
  height: var(--btn-height);
  border: var(--btn-border-width) solid var(--btn-border-color);
  font-size: 0.875rem;
  line-height: normal;
  color: var(--btn-color);
  background: var(--btn-bg-color);
  padding: 0 var(--btn-hr-paddding);
  font-weight: var(--primary-font-regular);
  border-radius: var(--btn-border-radius);
}

.site-btn:focus,
.site-btn:hover {
  color: var(--btn-hover-color);
  background: var(--btn-hover-bg-color);
}

/* site-btn-2 */
.site-btn-2 {
  --btn-border-radius: 0;
  --btn-height: 50px;
  --btn-hr-paddding: 50px;
  --btn-bg-color: transparent;
  --btn-border-color: var(--white);
  --btn-color: var(--white);
  --btn-hover-color: var(--royal-blue);
  --btn-hover-bg-color: var(--white);
  text-transform: uppercase;
  font-size: 1.125rem;
}

/* goto-link  */

.goto-link {
  --link-color: var(--dark-gray);
  --link-hover-color: var(--black);
  font-weight: var(--primary-font-bold);
  font-size: 0.875rem;
  line-height: 1.3846;
  position: relative;
  display: flex;
  align-items: center;
}

.goto-link:after {
  content: "";
  background: url(img/goto-link-arrow.svg) no-repeat center center transparent;
  width: 17px;
  height: 10px;
  display: block;
  margin-left: 10px;
  flex-shrink: 0;
}

.goto-link:hover {
  color: var(--link-hover-color);
}

.goto-link:hover:after {
  background-image: url(img/goto-link-arrow_hover.svg);
}

.goto-link .goto-link-label {
  width: 50px;
  transition: width 0.5s linear 0s;
  white-space: nowrap;
  overflow: hidden;
}

.goto-link:hover .goto-link-label {
  width: 100%;
}



@media only screen and (max-width: 767px) {
  .site-btn-2 {
    font-size: 14px;
    --btn-height: 40px;
    --btn-hr-paddding: 30px;
  }
}
