.support {
  display: -ms-flexbox;
  display: flex;
}

.support_wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.support_consultant {
  width: var(--themeSupportPicWidth, 90px);
  height: var(--themeSupportPicHeight, 90px);
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.support_img {
  width: 100%;
  height: 100%;
  background: url(/images/support-girl.jpg) no-repeat center;
  background-size: cover;
}

.support_information {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}

.support_link {
  text-decoration: none;
  transition: all var(--themeTransition);
  color: var(--themeAccentColor);
  font: var(--themeButtonFont);
  text-transform: uppercase;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.support_link-icon {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-left: 13px;
  font-size: 20px;
}

.support_link:hover {
  opacity: var(--themeHoverOpacity);
}

@media screen and (max-width: 680px) {
  .support_wrap {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }

  .support_consultant {
    margin-right: 0;
  }

  .support_information {
    width: 100%;
  }
}