*,
*:before,
*:after {
  box-sizing: border-box;
}

.icon {
  display: inline-block;
  vertical-align: top;
  position: relative;
  flex-shrink: 0;
}

html,
body {
  display: flex;
  flex-direction: column;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

html.behavior-auto {
  scroll-behavior: auto;
}

body {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.287;
  background: #fff;
  color: var(--main-color);
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

html.is-noscroll body {
  position: fixed !important;
  left: 0;
  right: 0;
  margin-right: var(--scrollbarWidth);
}

html.is-loading:before,
html.is-loading:after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999998;
}

html.is-loading:before {
  background: rgba(0, 0, 0, .5);
}

html.is-loading:after {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  z-index: 99999999;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:active,
:focus:not(:focus-visible) {
  outline: none;
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
  height: auto;
}

b,
strong {
  font-weight: bold;
}

hr {
  height: auto;
  border: 1px solid var(--accent-color);
  border-width: 1px 0 0;
  margin: 18px 0;
  clear: both;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: inherit;
  font-weight: bold;
}

a,
button {
  transition: 0.15s ease-in-out;
  transition-property: color, border-color, background-color, opacity, box-shadow;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"],
a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
  text-decoration: none;
}

h1 a:active,
h2 a:active,
h3 a:active,
h4 a:active,
h5 a:active,
h6 a:active,
.h1 a:active,
.h2 a:active,
.h3 a:active,
.h4 a:active,
.h5 a:active,
.h6 a:active {
  color: var(--accent-color);
  text-decoration: none;
}

p,
ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
  margin: 0 0 8px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.287;
  color: inherit;
  margin: 0 0 18px 0;
}

h1,
.h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

h2,
.h2 {
  font-size: 18px;
}

h3,
.h3 {
  font-size: 18px;
}

h4,
.h4 {
  font-size: inherit;
}

.text ul {
  padding: 0;
  list-style: none;
}

.text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.text ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--accent-color);
}

.text-center {
  text-align: center;
}

.form-check {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 12px;
  text-align: left;
  color: var(--grey-color);
}

.form-check label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.form-check input {
  opacity: 0;
}

.form-check input ~ span {
  display: block;
  position: relative;
  padding: 0 0 0 35px;
}

.form-check input,
.form-check input ~ span:before,
.form-check input ~ span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.form-check input,
.form-check input ~ span:before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  background: #fff;
}

.form-check input ~ span:after {
  width: 12px;
  height: 8px;
  margin: 4px 0 0 4px;
  border-style: solid;
  border-color: var(--accent-color);
  border-width: 0 0 3px 3px;
  opacity: 0;
  transform: rotate(-45deg);
}

.form-check input:checked ~ span:after {
  opacity: 1;
}

.form-check input:disabled ~ span {
  opacity: 0.5;
  cursor: default;
  cursor: not-allowed;
}

.form-check input[type="radio"] ~ span {
  padding: 0 0 0 24px;
}

.form-check input[type="radio"],
.form-check input[type="radio"] ~ span:before,
.form-check input[type="radio"] ~ span:after {
  top: 2px;
}

.form-check input[type="radio"],
.form-check input[type="radio"] ~ span:before {
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

.form-check input[type="radio"] ~ span:after {
  width: 8px;
  height: 8px;
  margin: 4px;
  border: none;
  border-radius: 50%;
  background: var(--accent-color);
  transform: none;
}

.form-header {
  text-align: center;
  color: var(--accent-color);
  margin: 0 14px 18px;
}

.form-header__icon {
  margin-bottom: 21px;
}

.form-header__title {
  margin-bottom: 13px;
}

.form-header__options {

}

.form-header .form-check {
  margin-bottom: 5px;
  color: inherit;
}

.form-row {
  display: flex;
  column-gap: 16px;
}

.form-row > * {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 1px;
}

.form-group {
  margin-bottom: 12px;
}

.form-control,
.form-select {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  width: 100%;
  height: 35px;
  font-size: 16px;
  line-height: 21px;
  padding: 6px 13px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: #fff;
  color: var(--main-color);
}

.form-control::placeholder {
  color: var(--grey-color);
}

.form-select {
  max-width: 100%; 
  margin: 0;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 15.123 25.878 13 19 19.878 12.123 13 10 15.123l9 9 9-9Z' fill='%23454545'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 38px 38px;
}

.form-select::-ms-expand {
  display: none;
}

textarea.form-control {
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
  height: auto;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: #00D2FF;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15);
}

.form-control[disabled],
.form-select[disabled] {
  background-color: var(--grey-bg);
  opacity: 1;
  cursor: default;
  cursor: not-allowed;
}

.link {
  display: inline;
  text-align: left;
  white-space: normal;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 6px 10px;
  width: 100%;
}

.btn_outline {
  background-color: transparent;
  color: var(--accent-color);
}

.btn:active {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.btn[disabled],
.btn.is-disabled {
  cursor: default;
  cursor: not-allowed;
  pointer-events: none;
}

.close-btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: none;
  background: none;
  padding: 0;
  width: 40px;
  height: 40px;
}

.close-btn:before,
.close-btn:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  border-bottom: 2px solid;
  margin: -1px 0 0 -10px;
  transform: rotate(45deg);
}

.close-btn:after {
  transform: rotate(-45deg);  
}

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, .7);
}

.fancybox__container .fancybox__content.popup-window>.f-button.is-close-btn {
  --f-button-border-radius: 0;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  opacity: 1;
  top: 0;
  right: 5px;
}

.f-button:focus-visible {
  box-shadow: none;
}

.alert-window {
  background: var(--accent-color);
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 5px;
  padding: 18px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  min-width: 220px;
  max-width: 270px;
  font-size: 15px;
  overflow: visible;
}

.alert-window .f-button.is-close-btn {
  display: none;
}

.popup-window {
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 22px 25px 35px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 270px;
  font-size: 15px;
  overflow: visible;
}

.popup-window:not(.fancybox__content) {
  display: none;
}

.popup-window__content + .popup-window__content {
  margin-top: 25px;
}

.popup-window__icon {
  margin-bottom: 10px;
}

.popup-window__title {
  margin-bottom: 20px;
}

.popup-window__form-btn-row {
  margin-top: 20px;
}

.popup-window__form-link-row {
  margin-top: 20px;
}

.popup-window .btn_outline {
  background-color: transparent;
  border-color: inherit;
  color: inherit;
}

.popup-window .btn_outline:active {
  background-color: #fff;
  border-color: #fff;
  color: var(--accent-color);
}

.popup-window .form-control {
  border-color: #27B5D3;
  background-color: #D8EEF2;
}

.popup-window .form-control::placeholder {
  color: #7CB6C2;
}

.swiper:not(.swiper-initialized) .swiper-wrapper {
  width: auto;
  height: auto;
}

.swiper:not(.swiper-initialized) .swiper-slide {
  height: auto;
}

.swiper.swiper-initialized .swiper-wrapper {
  margin: 0;
  flex-wrap: nowrap;
}

.swiper.swiper-initialized .swiper-slide {
  padding-left: 0;
  padding-right: 0;
  height: auto;
}

.swiper-pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.swiper-pagination-bullet {
  margin: 0 !important;
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: none !important;
  position: relative;
  opacity: 1;
  color: #A5A5A5;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #747474;
}

.swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px;
  background-color: currentColor;
  border-radius: 50%;
}

.container {
  padding: 0 30px;
  margin: 0 auto;
  max-width: 768px;
}

.color-main {
  color: var(--main-color) !important;
}

.color-accent {
  color: var(--accent-color) !important;
}

.bg-grey {
  background-color: var(--grey-bg);
}

.p-0 {
  padding: 0 !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.content {
  flex-grow: 1;
  min-height: 1px;
}

.header {
  padding-top: 50px;
  background: #fff;
}

.header__top {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1001;
  background: #fff;
}

html.is-noscroll .header__top {
  margin-right: var(--scrollbarWidth);
}

html.is-scrolled .header__top {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 15px;
  height: 50px;
}

.target {
  scroll-margin-top: 60px;
}

.header__share-btn {
  border: none;
  padding: 0;
  background: none;
  color: var(--accent-color);
}

.header__share-btn:active {
  color: var(--main-color);
}

.header__menu-btn {
  border: none;
  padding: 0;
  background: none;
  color: var(--accent-color);
}

.header__menu-btn:active {
  color: var(--main-color);
}

.header__menu-bg {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1030;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: 0.25s ease-in-out;
}

html.is-menu-open .header__menu-bg {
  opacity: 1;
  visibility: visible;
}

.header__menu {
  border-radius: 0 0 5px 5px;
  border: 1px solid #E9E9E9;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 216px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1031;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: 0.25s ease-in-out;
}

html.is-menu-open .header__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav {
  padding: 18px 0;
}

.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav li {
  border-bottom: 1px solid #D5E0E4;
}

.header__nav li:last-child {
  border-bottom: none;
}

.header__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  padding: 4px 21px;
}

.header__nav a:active {
  background-color: var(--grey-bg);
}

.header__content {
  text-align: center;
}

.header__content-inner {
  height: 92px;
}

.header__logo {

}

.header__logo img {
  vertical-align: top;
  width: auto;
  height: auto;
  max-width: 260px;
  max-height: 80px;
}

@media (min-width: 769px) {
  .header__top-inner {
    padding: 0 30px;
  }

  .header__menu {
    right: 30px;
  }
}

.image-wrapper {
  margin: 0 -30px 30px;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .image-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.section {
  margin-bottom: 24px;
}

.section-title {
  margin-bottom: 16px;
}

.section-header {
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  border-radius: 5px 5px 0 0;
  font-size: 18px;
  padding: 6px 16px;
}

.section-content {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 5px;
  padding: 16px;
  background: var(--grey-bg);
}

.section-content h3,
.section-content .h3 {
  margin-bottom: 8px;
}

.section-header + .section-content {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.section-content p:last-child,
.section-content ul:last-child,
.section-content ol:last-child,
.section-content li:last-child,
.section-content h3:last-child,
.section-content .h3:last-child {
  margin-bottom: 0;
}

.section-icon {
  margin-bottom: 16px;
  color: var(--accent-color);
}

.section-image {
  margin: 16px -16px -16px;
}

.section-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 5px 5px;
}

.image-slider {

}

.image-slider img {
  display: block;
  width: 100%;
  height: auto;
}

.video-wrapper {
  display: block;
  position: relative;
}

.video-wrapper:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.video-wrapper img,
.video-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.data-icon {
  width: 35px;
  height: 35px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.data-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.data-item {
  position: relative;
  margin: 0 -7px;
}

.data-item__inner {
  display: flex;
  align-items: center;
  column-gap: 18px;
  font-size: 16px;
  padding: 11px 7px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-color);
}

a.data-item__inner:active {
  background: var(--grey-bg);
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.15);
  color: inherit;
  text-decoration: none;
}

.bg-grey a.data-item__inner:active,
.section-content a.data-item__inner:active {
  background: #fff;
}

.section-content .data-item:last-child .data-item__inner {
  border-bottom: none;
}

.data-item__icon {
  flex-shrink: 0;
}

.data-item__content {
  flex-grow: 1;
  min-width: 1px;
}

.data-item__title {
  color: var(--accent-color);
}

.data-item__text {

}

.data-item__add-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.data-item__inner .data-item__add-btn {
  position: static;
  width: 22px;
  flex-shrink: 0;
}

.add-btn {
  height: 100%;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  background: none;
  color: var(--accent-color);
}

.add-btn:active {
  color: var(--main-color);
}

.contacts-header {
  text-align: center;
  border-bottom: 1px solid var(--accent-color);
  font-size: 16px;
}

.contacts-header__inner {
  max-width: 260px;
  margin: 0 auto;
  padding: 0 25px 16px;
  min-height: 222px;
  background: url('../images/ellipse-bg.svg') center bottom no-repeat;
}

.contacts-header__title {

}

.contacts-header__image {
  width: 94px;
  height: 94px;
  margin: 0 auto 8px;
  padding: 2px;
  background: var(--accent-color);
  border-radius: 50%;
}

.contacts-header__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.contacts-header__content {

}

.social-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 13px;
}

.social-list_center {
  justify-content: center;
}

.data-item .social-list {
  margin: 14px 0 6px;
}

.social-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.social-btn:active {
  background-color: var(--main-color);
  color: #fff;
}

.social-btn img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.languages-section {
  border: 1px solid var(--accent-color);
  border-width: 1px 0;
  padding: 9px 0;
  margin-bottom: 20px;
}

.languages-section__inner {
  position: relative;
  text-align: center;
}

.languages-section__icon {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

.languages {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  text-align: left;
  color: var(--accent-color);
  z-index: 100;
}

.languages__target {
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  background: #fff;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 78px;
  height: 35px;
}

.languages__value {

}

.languages__arrow {
  flex-shrink: 0;
}

.languages.is-open .languages__arrow {
  transform: rotate(180deg);
}

.languages__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: -1px;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  background: #fff;
  padding: 5px 0;
}

.languages:not(.is-open) .languages__dropdown {
  display: none;
}

.languages__link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0 10px;
}

.languages__link:active {
  color: var(--main-color);
}

.languages__link.is-active {
  display: none;
}

.auth-btn {
  border: none;
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 39px;
  width: 39px;
  color: var(--grey-color-2);
}

.auth-btn:active {
  color: var(--accent-color);
}

.footer {
  text-align: center;
  padding-bottom: 20px;
}

.footer__qr-block {
  margin-bottom: 20px;
}

.footer__qr-target {
  border: none;
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 26px;
  height: 26px;
  color: var(--grey-color-2);
}

.footer__qr-block.is-open .footer__qr-target .icon {
  transform: rotate(180deg);
}

.footer__qr-target:active {
  color: var(--main-color);
}

.footer__qr-content {
  margin-top: 20px;
}

.footer__qr-block:not(.is-open) .footer__qr-content {
  display: none;
}

.footer__gr {
  width: 117px;
  margin: 0 auto;
  background: #fff;
  padding: 9px;
}

.footer__gr img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__auth {
  margin-bottom: 34px;
}

.footer__logo {

}

.footer__bottom-logo {

}

.services-logo-list {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  text-align: center;
}

.page-header {
  height: 320px;
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  margin: 0 -30px 38px;
}

@media (min-width: 769px) {
  .page-header {
    margin-left: 0;
    margin-right: 0;
  }
}

.page-header img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.smart-card-header {
  margin: 0 -30px 20px;
}

@media (min-width: 769px) {
  .smart-card-header {
    margin-left: 0;
    margin-right: 0;
  }
}

.smart-card-header__main {
  position: relative;
}

.smart-card-header__main:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 53px;
  background: url('../images/card-img-wave.svg') center bottom no-repeat;
  background-size: 100% 100%;
}

.smart-card-header__image {
  display: block;
  width: 100%;
  height: auto;
}

.smart-card-header__logo {
  position: absolute;
  bottom: -10px;
  right: 14px;
  width: 108px;
  height: 108px;
  background: #fff;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  z-index: 1;
}

.smart-card-header__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.smart-card-header__content {
  background: #fff;
  padding: 21px 30px;
  font-size: 20px;
}

.smart-card-header__control {
  padding: 18px 30px;
  padding-right: 0;
  border-bottom: 1px solid var(--accent-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

@media (min-width: 769px) {
  .smart-card-header__control {
    padding-left: 0;
  }
}

.smart-card-header__control-content {
  flex-grow: 1;
  min-width: 1px;
}

.smart-card-header__add-contact-btn {
  font-size: 15px;
  display: flex;
  align-items: center;
  column-gap: 14px;
  height: 27px;
  white-space: nowrap;
}

.smart-card-header__control-list {
  display: flex;
  align-items: center;
}

.smart-card-header__control-item {
  border-left: 1px solid;
}

.smart-card-header__control-btn {
  border: none;
  padding: 0 15px;
  background: none;
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
}

.smart-card-header__add-contact-btn:active,
.smart-card-header__control-btn:active {
  color: var(--main-color);
}

.smart-card-section-title {
  font-size: 14px;
  font-weight: normal;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.smart-card-social .social-list {
  margin-bottom: 16px;
}

.smart-card-text {
  font-size: 16px;
}

.smart-card-request {
  border-top: 1px solid var(--accent-color);
  margin-bottom: 20px;
  padding-top: 20px;
}

.smart-card-request__header {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--accent-color);
  font-size: 16px;
}

.smart-card-request__header-icon {
  flex-shrink: 0;
  margin-right: 23px;
}

.smart-card-request__header-content {
  flex-grow: 1;
  min-width: 1px;
}

.smart-card-request__header-arrow {
  flex-shrink: 0;
  margin-left: 10px;
}

.smart-card-request.is-open .smart-card-request__header-arrow {
  transform: rotate(180deg);
}

.smart-card-request__content {
  padding-top: 20px;
}

.smart-card-request:not(.is-open) .smart-card-request__content {
  display: none;
}