:root {
  --common--background-color: #B6C6FE;
  --common--gray-background-color: #E5EAF8;
  --common--gray-light-color: #eef1f9;
  --common--gray-light2-color: rgba(120, 120, 128, 0.16);
  --common--basic-color: #0B2D87;
  --common--basic-color-50: rgba(11, 45, 135, 0.50);
  --common--basic-color-06: rgba(11, 45, 135, 0.06);
  --common--basic-white: #ffffff;
  --common--basic-white2: #F9FAFE;
  --common--blue: #0036E9;
  --common--green: #1fd694;
  --common--dark-green: #008000;
  --common--danger: #FF0404;
  --common--warning: #ffc107;
  --common--blue-gradient: linear-gradient(180deg, #3963EF 0%, var(--common--blue) 100%);
}

.ug_page__header-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  padding: 24px 60px 25px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_page__header-row {
    max-width: 962px;
    padding: 32px 32px 12px 32px;
  }
}
@media screen and (max-width: 768px) {
  .ug_page__header-row {
    max-width: 768px;
    padding: 24px 16px 24px 16px;
  }
}
.ug_page__footer-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  padding: 0px 60px 32px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_page__footer-row {
    max-width: 962px;
    padding: 0px 32px 32px 32px;
  }
}
@media screen and (max-width: 768px) {
  .ug_page__footer-row {
    max-width: 768px;
    padding: 32px 16px 58px 16px;
  }
}
.ug_page__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  padding: 0px 60px 64px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_page__row {
    max-width: 962px;
    padding: 0px 32px 32px 32px;
  }
}
@media screen and (max-width: 768px) {
  .ug_page__row {
    max-width: 768px;
    padding: 0px 16px 32px 16px;
  }
}
.ug_page__blog {
  flex-direction: row;
}

.ug_landing__row {
  position: relative;
  max-width: 1220px;
  padding: 80px 40px 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_landing__row {
    max-width: 1000px;
    padding: 60px 30px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .ug_landing__row {
    max-width: 1000px;
    padding: 40px 15px 40px 15px;
  }
}

@media screen and (max-width: 768px) {
  .ug_max-width-tiny {
    margin: 0 auto;
    max-width: 360px;
  }
}

.ug_font-family--atyp {
  font-family: "Atyp Text", serif;
}

.ug_shadow {
  box-shadow: 0 0 12px 0 rgba(81, 94, 139, 0.25);
}

.ug_shadow_2 {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
}

.ug_clear--both {
  clear: both;
}

.ug_text-align--left {
  text-align: left;
}
.ug_text-align--right {
  text-align: right;
}
.ug_text-align--center {
  text-align: center;
}

.ug_pad--no {
  padding: 0;
}
.ug_pad--no-vert {
  padding-top: 0;
  padding-bottom: 0;
}
.ug_pad--no-hor {
  padding-left: 0;
  padding-right: 0;
}

.ug_mar--no {
  margin: 0;
}
.ug_mar--no-vert {
  margin-top: 0;
  margin-bottom: 0;
}
.ug_mar--no-hor {
  margin-left: 0;
  margin-right: 0;
}
.ug_mar--auto-hor {
  margin-left: auto;
  margin-right: auto;
}

.ug_btn, .ui-dialog-buttonset .ui-button, .ui-dialog-buttonset .ui-button {
  border-radius: 12px;
}

.ug_btn, .ui-dialog-buttonset .ui-button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--common--blue) var(--common--blue-gradient);
  color: var(--common--basic-white);
  font-family: "Montserrat", serif;
  font-size: 18px;
  line-height: 22px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: normal;
  white-space: nowrap;
  text-align: center;
  text-transform: none;
  text-decoration: none;
}

.ug_btn, .ui-dialog-buttonset .ui-button {
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
}
.ug_btn:hover, .ui-dialog-buttonset .ui-button:hover {
  background: var(--common--basic-color) none;
}
.ug_btn--pd-tiny {
  padding: 16px 24px;
}
.ug_btn--small {
  font-size: 18px;
  line-height: 22px;
  padding: 3px 14px;
  border-radius: 8px;
}
.ug_btn--disabled, .ug_btn--disabled:hover {
  cursor: default;
  pointer-events: none;
  background: #ddd;
  color: #888;
  border-color: #ddd;
}
.ug_btn.ug_btn-o, .ui-dialog-buttonset .ug_btn-o.ui-button {
  background: none;
  border: 1px solid var(--common--basic-color);
  color: var(--common--basic-color) !important;
}
.ug_btn.ug_btn-o:hover, .ui-dialog-buttonset .ug_btn-o.ui-button:hover {
  background: none;
}

.panel-footer-1 .feedback-fields-row [type=text],
.panel-footer-1 .feedback-fields-row [type=email], .panel-header__user, .panel {
  border-radius: 24px;
  border: none;
}

.panel {
  background-color: var(--common--basic-white);
  padding: 42px 60px;
}
@media screen and (max-width: 962px) {
  .panel {
    padding: 32px 32px;
  }
}
@media screen and (max-width: 768px) {
  .panel {
    padding: 0px 0px;
    border-radius: unset;
  }
}
.panel-title {
  margin-bottom: 32px;
  text-align: center;
  font-family: Montserrat, serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 962px) {
  .panel-title {
    margin-bottom: 16px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .panel-title {
    text-align: left;
  }
}
.panel-text {
  margin-bottom: 48px;
  text-align: center;
  font-family: Montserrat, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 962px) {
  .panel-text {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .panel-text {
    margin-bottom: 16px;
    text-align: left;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--common--background-color);
  color: var(--common--basic-color);
  font-family: Montserrat, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  body {
    background-color: var(--common--basic-white);
  }
}

body > .header,
body > .footer {
  flex-shrink: 0;
}

body > .main {
  flex-grow: 1;
}

.container {
  margin: 0 auto;
}

table {
  border-spacing: 0;
}

a {
  position: relative;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/wp-content/themes/api/assets/images/preloader/5.gif");
  background-repeat: no-repeat;
  background-size: 128px;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999999;
}

.ugen-has-not-email-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 16px;
  z-index: 100;
  background-color: var(--common--dark-green);
  color: var(--common--basic-white);
}

.ugen-notice {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 16px;
  z-index: 1000;
}

.ugen-notice-success {
  background-color: var(--common--dark-green);
  color: var(--common--basic-white);
}

.ugen-notice-error {
  background-color: var(--common--danger);
  color: var(--common--basic-white);
}

.ui-dialog {
  border-radius: 12px;
}

.ui-dialog-buttonset .ui-button {
  padding: 0 40px;
}
.ui-dialog-buttonset .ui-button:hover {
  color: var(--common--basic-white);
}
.ui-dialog-buttonset .ui-button:focus {
  background: var(--common--blue) var(--common--blue-gradient);
  color: var(--common--basic-white);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-not-valid {
  outline: 1px solid #dc3232 !important;
}

.wpcf7-not-valid-tip {
  display: none;
}

body > header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: inherit;
}
@media screen and (max-height: 500px) and (min-width: 768px) {
  body > header {
    position: static;
  }
}
body > header .container > div {
  position: relative;
}

body > header + .main {
  padding-top: 116px;
}
@media screen and (max-width: 962px) {
  body > header + .main {
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  body > header + .main {
    padding-top: 100px;
  }
}
@media screen and (max-height: 500px) and (min-width: 768px) {
  body > header + .main {
    padding-top: 0;
  }
}

.panel-header {
  background-color: var(--common--gray-background-color);
  padding-top: 14px;
  padding-bottom: 14px;
  width: 100%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .panel-header {
    border-radius: 24px;
    padding: 10px 18px;
    box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.25), 0 -4px 4px 0 rgba(255, 255, 255, 0.25);
    background-color: var(--common--basic-white);
  }
}
@media screen and (max-height: 500px) and (min-width: 768px) {
  .panel-header {
    position: static;
  }
}
.panel-header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .panel-header .top .panel-header__menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-header .top .panel-header__user {
    display: none;
  }
}
.panel-header .bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-expanded .panel-header .bottom > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 42px;
    padding: 35px 34px 38px;
  }
}
.panel-header .bottom .socials-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-header .bottom .socials-buttons .gray-button {
  width: 48px;
  height: 48px;
  background-color: var(--common--gray-background-color);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 12px;
  flex-shrink: 0;
}
.panel-header .bottom .socials-buttons .gray-button.button-telegram {
  background-image: url(/wp-content/themes/api/assets/images/telegram-icon-mobile.svg);
}
.panel-header .bottom .socials-buttons .gray-button.button-whatsapp {
  background-image: url(/wp-content/themes/api/assets/images/whatsapp-icon-mobile.svg);
}
.panel-header .bottom .socials-buttons .gray-button.button-max {
  background-size: 25px;
  background-image: url(/wp-content/themes/api/assets/images/max-icon-mobile.svg);
}
.panel-header .bottom .socials-buttons .gray-button.button-email {
  background-image: url(/wp-content/themes/api/assets/images/email-icon-mobile.svg);
}
.panel-header__logo img {
  display: block;
}
@media screen and (max-width: 768px) {
  .panel-header__logo img {
    width: 140px;
    height: auto;
  }
}
.panel-header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
  list-style: none;
}
@media screen and (max-width: 1440px) {
  .panel-header__menu {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .panel-header__menu {
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
  }
}
.panel-header__menu.empty {
  display: none;
}
.panel-header__menu a {
  position: relative;
  display: block;
  margin: 0 10px;
  color: var(--common--basic-color-50);
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .panel-header__menu a {
    color: var(--common--basic-color);
  }
  .header-expanded .panel-header__menu a {
    margin: 0;
  }
}
.panel-header__menu .active a {
  color: var(--common--basic-color);
}
.panel-header__menu .active a:after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--common--basic-color);
  content: "";
}
.header-expanded .panel-header__menu .active a:after {
  display: none;
}
.panel-header__mobile-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .panel-header__mobile-button {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url("/wp-content/themes/api/assets/images/mobile-menu-button-left.svg") 50% 50% no-repeat;
  }
}
.panel-header__user {
  display: flex;
  background-color: var(--common--basic-white);
  border: 1px solid var(--common--background-color);
  border-radius: 12px;
  height: 48px;
  padding: 0 12px;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 962px) {
  .panel-header__user {
    height: 48px;
  }
}
.panel-header__user--logged-out {
  display: flex;
  align-items: center;
  gap: 24px;
}
.panel-header__user .label {
  color: var(--common--basic-color);
  line-height: normal;
}
.panel-header__user .icon {
  width: 18px;
  height: 20px;
  background: url("/wp-content/themes/api/assets/images/user.svg") 50% 50% no-repeat;
  background-size: 18px 20px;
}

@media screen and (max-width: 768px) {
  .panel-footer-1 {
    border-radius: 24px;
    border: none;
    background: var(--common--gray-background-color);
    padding: 32px 16px;
  }
}
.panel-footer-1 .footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-content {
    gap: 32px;
  }
}
.panel-footer-1 .footer-top {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top {
    gap: 32px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.panel-footer-1 .footer-top__block-1 {
  display: flex;
  align-items: center;
}
.panel-footer-1 .footer-top__block-1 .logo img {
  display: block;
}
.panel-footer-1 .footer-top__block-2 {
  display: flex;
  flex-grow: 1;
}
.panel-footer-1 .footer-top__block-2 .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1440px) {
  .panel-footer-1 .footer-top__block-2 .footer-menu {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-2 .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.panel-footer-1 .footer-top__block-2 .footer-menu.empty {
  display: none;
}
.panel-footer-1 .footer-top__block-2 .footer-menu a {
  display: block;
  padding: 0 10px;
  color: var(--common--basic-color-50);
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-2 .footer-menu a {
    color: var(--common--basic-color);
  }
}
.panel-footer-1 .footer-top__block-2 .footer-menu .active a {
  color: var(--common--basic-color);
}
.panel-footer-1 .footer-top__block-3 .socials {
  display: flex;
  gap: 12px;
  flex-shrink: 1;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials {
    flex-direction: column;
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item {
  width: 48px;
  height: 48px;
  background-color: var(--common--gray-background-color);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 12px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item {
    background-color: var(--common--basic-white);
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item.telegram {
  background-image: url(/wp-content/themes/api/assets/images/telegram-icon.svg);
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item.telegram {
    background-image: url(/wp-content/themes/api/assets/images/telegram-icon-mobile.svg);
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item.max {
  background-image: url(/wp-content/themes/api/assets/images/max-icon.svg);
  background-size: 25px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item.max {
    background-image: url(/wp-content/themes/api/assets/images/max-icon-mobile.svg);
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item.email {
  background-image: url(/wp-content/themes/api/assets/images/email-icon.svg);
  font-size: 0;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item.email {
    background-image: url(/wp-content/themes/api/assets/images/email-icon-mobile.svg);
  }
}
.panel-footer-1 .feedback {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.panel-footer-1 .feedback-title {
  text-align: left;
  margin-bottom: 12px;
}
@media screen and (max-width: 1260px) {
  .panel-footer-1 .feedback-title {
    font-size: 32px;
    margin-bottom: 0;
  }
}
.panel-footer-1 .feedback-text {
  text-align: left;
  margin-bottom: 0;
}
.panel-footer-1 .feedback-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-footer-1 .feedback-fields-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback-fields-row > * {
    width: 100%;
  }
}
@media screen and (max-width: 428px) {
  .panel-footer-1 .feedback-fields-row p {
    width: 100%;
  }
}
.panel-footer-1 .feedback-fields-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.panel-footer-1 .feedback-fields-row [type=text],
.panel-footer-1 .feedback-fields-row [type=email] {
  background: var(--common--gray-background-color);
  width: 100%;
  border-radius: 12px;
  border: none;
  outline: none;
  padding: 13px 35px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback-fields-row [type=text],
  .panel-footer-1 .feedback-fields-row [type=email] {
    background: var(--common--basic-white);
    padding: 12px 18px;
  }
}
.panel-footer-1 .feedback-fields-row [type=submit] {
  border: 0;
  margin-top: 4px;
}
@media screen and (max-width: 428px) {
  .panel-footer-1 .feedback-fields-row [type=submit] {
    width: 100%;
  }
}
.panel-footer-1 .feedback-fields-row [name=feedback-offer] {
  position: relative;
  top: 5px;
  left: 5px;
  cursor: pointer;
}
.panel-footer-1 .feedback-fields-row [name=feedback-offer]:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 24px;
  height: 24px;
  background: #EEF1F9;
  background: var(--common--basic-white);
  border: 1px solid var(--common--basic-color-50);
  border-radius: 5px;
}
.panel-footer-1 .feedback-fields-row [name=feedback-offer]:checked:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: -5px;
  left: -5px;
  background-image: url(/wp-content/themes/api/assets/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.panel-footer-1 .feedback-fields-row .feedback-offer-text {
  color: var(--common--basic-color-50);
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  margin: 2px 0 0 17px;
}
.panel-footer-1 .feedback-fields-row .feedback-offer-text a {
  color: var(--common--basic-color-50);
  font-size: 10px;
  line-height: 120%;
}
.panel-footer-1 .feedback-fields-row .wpcf7-list-item {
  margin: 0;
}
.panel-footer-1 .feedback-fields-label {
  display: none;
}
.panel-footer-1 .feedback > :nth-child(1) {
  margin-left: 72px;
  min-width: 45%;
}
@media screen and (max-width: 1440px) {
  .panel-footer-1 .feedback > :nth-child(1) {
    margin: 0;
  }
}
.panel-footer-1 .feedback > :nth-child(1) .image {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback > :nth-child(1) .image {
    display: none;
  }
}
.panel-footer-1 .feedback > :nth-child(1) .image img {
  display: inline-block;
  margin-top: 25px;
}
@media screen and (max-width: 1260px) {
  .panel-footer-1 .feedback > :nth-child(1) .image img {
    margin-top: 18px;
    width: 300px;
    max-width: 100%;
  }
}
.panel-footer-1 .feedback > :nth-child(2) {
  max-width: 584px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback > :nth-child(2) {
    max-width: unset;
  }
}

.panel-footer-2 {
  background: var(--common--gray-background-color);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .panel-footer-2 {
    background: none;
    padding: 0 16px;
  }
}
.panel-footer-2 a {
  color: inherit;
}
.panel-footer-2__top {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .panel-footer-2__top {
    flex-direction: column;
  }
}
.panel-footer-2__bottom {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  text-align: center;
}
.panel-footer-2 .footer-left {
  min-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .panel-footer-2 .footer-left {
    color: var(--common--basic-color-50);
  }
}
@media screen and (max-width: 428px) {
  .panel-footer-2 .footer-left {
    font-size: 12px;
    line-height: normal;
  }
}
.panel-footer-2 .footer-right {
  max-width: 584px;
  flex-grow: 1;
}
@media screen and (max-width: 1440px) {
  .panel-footer-2 .footer-right {
    margin: 0;
  }
}
@media screen and (max-width: 1240px) {
  .panel-footer-2 .footer-right {
    max-width: unset;
    justify-content: flex-end;
  }
}
.panel-footer-2 .footer-right .supported_by__items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1240px) {
  .panel-footer-2 .footer-right .supported_by__items {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .panel-footer-2 .footer-right .supported_by__items {
    justify-content: flex-start;
  }
}
.panel-footer-2 .footer-right .supported_by__items.count-2 .supported_by__item {
  width: 50%;
}
.panel-footer-2 .footer-right .supported_by__item {
  display: flex;
}
.panel-footer-2 .footer-right .supported_by__item-left {
  width: 120px;
}
.panel-footer-2 .footer-right .supported_by__item-left img {
  width: 100%;
  border-radius: 25px;
}
.panel-footer-2 .footer-right .supported_by__item-right {
  padding-left: 15px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.panel-footer-2 .footer-right .supported_by__item-label {
  font-size: 10px;
  line-height: 14px;
  color: var(--common--basic-color);
}
.panel-footer-2 .footer-right .supported_by__item-title {
  font-weight: 600;
  line-height: 22px;
  color: var(--common--basic-color);
}

.wpcf7-response-output {
  border-radius: 12px;
}

/* page-template-default */
.page-template-default article {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-template-default h2 {
  padding-top: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
}

.page-template-default h2:first-child {
  padding-top: 0;
}

.page-template-default ul:not(.home ul) {
  padding-left: 32px;
  padding-bottom: 8px;
}

/* ### page-template-default */

/*# sourceMappingURL=default.css.map */
