:root {
  --themeLogoColor: #000;
  --themeBoxShadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  --themePopupBoxShadow: 0px 24px 24px rgba(0, 0, 0, 0.2), 0px 0px 24px rgba(0, 0, 0, 0.1);
  --themeRadius: 6px;
  --themeBtnRadius: 6px;
  --themeLanguagesRadius: 6px;
  --themeTextColor: rgba(0, 0, 0, 0.85);
  --themeTextColorSecond: rgba(0, 0, 0, 0.5);
  --themeAccentColor: #F6B973;
  --themeBtnColor: #82CF8F;
  --themeSuccessColor: #82CF8F;
  --themeLanguagesBackground: rgba(31, 44, 41, 0.95);
  --themeSelectBackground: rgba(31, 44, 41, 0.95);
  --themeLanguagesColorText: rgba(255, 255, 255, 0.8);
  --themeLanguagesSeparatorInList: rgba(255, 255, 255, 0.4);
  --themeLanguagesListMobHeight: 220px;
  --themeBodyBg: #F9F9F9;
  --themeTransition: .6s ease;
  --phoneIconHeight: 24px;
  --phoneIconWidth: 24px;
  --languageIconHeight: 24px;
  --languageIconWidth: 24px;
  --themeHoverOpacity: 0.7;
  --themeHoverBtnColor: #416847;
}

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

*:focus {
  outline: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  border: 1px solid #fff;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #FBE3CD;
}

::-webkit-scrollbar-thumb:hover {
  background: #FEB46E;
}



/* Main */
html {
  font-size: 62.5%;
}

body {
  font: 400 1.8rem/1.35 'Roboto', 'Arial', sans-serif;
  background-color: var(--themeBodyBg);
  color: var(--themeTextColor);
}

textarea,
input {
  font: 400 1.6rem/1.5 'Roboto', 'Arial', sans-serif;
}

.center {
  width: 100%;
  max-width: 1000px;
  padding: 0 2rem;
  margin: 0 auto;
}

.btn,
.actions_item__link {
  text-align: center;
  border-radius: var(--themeBtnRadius);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 1rem;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  min-width: 240px;
  background-color: var(--themeBtnColor);
  transition: all var(--themeTransition);
}

.btn:hover,
.actions_item__link:hover {
  background-color: var(--themeHoverBtnColor);
}

.title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.subtitle {
  color: var(--themeTextColorSecond);
}

/* static pages */
.header__static-page {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

.static-page {
  padding: 2rem 0 5rem;
}

.static-page h1,
.static-page h2 {
  margin: 0 0 2rem;
  font-size: 2.8rem;
  padding: 2rem 0;
}

.static-page p,
.static-page ul {
  margin-bottom: 1.2rem;
  color: var(--themeTextColorSecond);
}

.static-page ul {
  list-style-position: inside;
}

.static-page a {
  text-decoration: underline;
  color: var(--themeTextColorSecond);
}

.static-page a:hover {
  text-decoration: none;
}

.footer__static-page {
  box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

/* logo */
.logo-svg,
.logo-svg:active,
.logo-svg:hover,
.logo-svg:visited {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.logo-svg-wrapper,
.logo-svg-wrapper svg {
  height: 40px;
  width: 40px;
}

.logo-svg-wrapper svg .st0 {
  fill: var(--themeLogoColor);
}

.logo-svg-text {
  font-size: 1.8rem;
  padding-left: 1rem;
  color: var(--themeLogoColor);
}

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

/* icons */
.icon {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon__benefit-1:before {
  content: "\e900";
}

.icon__benefit-3:before {
  content: "\e901";
}

.icon__benefit-2:before {
  content: "\e902";
}

/* Header */
.header_wrap {
  padding: 2rem 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header_languages {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
}

/* custom languages style */
.languages_title .languages_text {
  color: var(--themeTextColor);
}

.header_languages .languages_wrap {
  padding-right: 25px;
}

.header_languages .languages_wrap::before {
  content: '';
  position: absolute;
  top: 45%;
  right: 10px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(45deg) translateY(-100%);
  transform: rotate(45deg) translateY(-100%);
  border-left: 0;
  border-top: 0;
  margin: 0;
}

.header_languages .languages_wrap.is-active::before {
  -webkit-transform: rotate(225deg) translateY(0);
  transform: rotate(225deg) translateY(0);
  right: 4px;
  top: 40%;
}

/* information block */
.information {
  padding: 0 0 2.5rem;
  position: relative;
}

.information_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.information_title {
  max-width: 400px;
  margin-bottom: 2.5rem;
  font-size: 4.2rem;
  font-weight: bold;
  position: relative;
  z-index: 3;
}

.center__title {
  position: relative;
}

.information_subtitle {
  max-width: 470px;
  margin-bottom: 10rem;
  position: relative;
  z-index: 3;
}

.information_item__support {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-bottom: 8rem;
}

.information_item-decor {
  position: absolute;
  right: 40px;
  top: -5.5rem;
  width: 430px;
  height: 300px;
  overflow: hidden;
  border-bottom-left-radius: 290px;
  border-bottom-right-radius: 145px;
  z-index: 2;
}

.information_item-decor-bg {
  width: 303px;
  height: 303px;
  background: linear-gradient(180deg, #CCEFE1 0%, #FDE7C4 100%);
  border-radius: 50%;
  z-index: 1;
}

.information_item-decor-bg,
.information_item-decor::before,
.information_item-decor::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

.information_item-decor::after,
.information_item-decor::before {
  width: 230px;
  height: 300px;
  background-size: contain;
}

.information_item-decor::after {
  right: 140px;
  background: url(../images/decor-information-box.svg) no-repeat center;
  -webkit-transform: translate(75px, 120px);
  transform: translate(75px, 120px);
  -webkit-animation: 5s linear 1s boxMove infinite;
  animation: 5s linear 1s boxMove infinite;
  z-index: 3;
}

.information_item-decor::before {
  right: 0;
  background: url(../images/decor-information-card.svg) no-repeat center;
  -webkit-transform: translate(100px, 100px);
  transform: translate(100px, 100px);
  -webkit-animation: 5s linear 1s cardMove infinite;
  animation: 5s linear 1s cardMove infinite;
  z-index: 4;
}

.information_item__actions {
  position: relative;
}

.information_item__actions:before {
  position: absolute;
  content: "";
  top: 25%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/decor-actions-line.svg) no-repeat center;
  background-size: cover;
  z-index: -1;
}

/* support */
.support_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.support_consultant {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  -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;
  background-color: var(--themeAccentColor);
  padding: 2rem 5.5rem 2rem 2rem;
  -ms-flex-positive: 2;
  flex-grow: 2;
  border-radius: var(--themeRadius);
  color: #fff;
  max-width: 400px;
}

.support_information:before {
  content: "";
  position: absolute;
  left: -7px;
  top: calc(50% - 2px);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--themeAccentColor);
  border-radius: 3px;
}

.support_text-wrap {
  display: inline;
  padding-right: 10px;
}

.support_link {
  color: #fff;
  position: relative;
  padding-right: 25px;
}

.support_link:after {
  content: '';
  position: absolute;
  top: 45%;
  right: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  border-left: 0;
  border-top: 0;
  margin: 0;
}

/* actions */
.actions_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.6rem;
  border-radius: 100px;
  background-color: #fff;
}

.actions_item {
  width: 30%;
}

.actions_item__link {
  border-radius: 100px;
  font-size: 16px;
  height: 100%;
}

/* actions select phone block */
.select-block {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.select-block_selected {
  z-index: 2;
}

.select-block_item-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  cursor: pointer;
  min-height: 50px;
  background: transparent;
}

.select-block_item {
  font-weight: 500;
}

.select-block_selected .select-block_item {
  background-color: var(--themeBtnColor);
  border-radius: 100px;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all var(--themeTransition);
  min-height: 50px;
}

.select-block_selected .select-block_item:hover {
  background-color: var(--themeHoverBtnColor);
}

.select-block_selected .select-block_item-text {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-top: 3px;
}

.select-block_selected .select-block_item-wrap {
  min-height: 0;
  padding-bottom: 5px;
}

.select-block_item-link {
  width: 100%;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 50px;
  margin: 0 50px 0 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.select-block_selected .select-block_item-number {
  text-align: center;
  width: 100%;
}

.select-block_list {
  position: absolute;
  border-radius: var(--themeRadius);
  box-shadow: var(--themePopupBoxShadow);
  top: calc(100% + 1.6rem);
  right: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--themeSelectBackground);
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  visibility: hidden;
  transition: .2s all ease-in-out;
  width: 100%;
  overflow: hidden;
  max-height: 600px;
  overflow: auto;
  z-index: 20;
}

.select-block_list.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.select-block_list .select-block_item {
  position: relative;
}

.select-block_list .select-block_item-link {
  margin: 0;
  padding: 20px 5px 15px 55px;
}

.select-block_list .select-block_item-text {
  position: absolute;
  left: 55px;
  top: 5px;
  font-size: 12px;
}

.select-block_list .select-block_item-wrap:hover {
  opacity: 0.7;
}

.select-block_selected .select-block_item-icon::before {
  display: none;
}

.select-block .select-block_item-icon::before {
  left: 15px;
}

.select-block_item-wrap::after {
  content: '';
  display: block;
  position: absolute;
  top: -4px;
  right: 2.7rem;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-left: 0;
  border-top: 0;
}

.select-block_selected.is-active .select-block_item-wrap::after {
  -webkit-transform: rotate(225deg) translateY(-50%);
  transform: rotate(225deg) translateY(-50%);
  right: 1.7rem;
  top: -9px;
}

.select-block_list .select-block_item-wrap::after {
  display: none;
}

/* bill */
/* big / open */
.bill_wrap {
  position: fixed;
  right: 20px;
  top: 100px;
  margin: 0;
  min-width: 410px;
  width: auto;
  max-width: 630px;
  padding: 4rem;
  height: auto;
  background-color: #fff;
  border-radius: var(--themeRadius);
  overflow: hidden;
  box-shadow: var(--themePopupBoxShadow);
  z-index: 10;
  color: var(--themeTextColorSecond);
  transition: margin var(--themeTransition);
  font-size: 18px;
}

.bill_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.bill_bookmark {
  display: none;
  position: fixed;
  top: 200px;
  right: 0;
  width: 50px;
  height: auto;
  min-height: 80px;
  padding: 0;
  border-radius: 0;
  background-color: #fff;
  border-top-left-radius: var(--themeBtnRadius);
  border-bottom-left-radius: var(--themeBtnRadius);
  overflow: hidden;
  box-shadow: var(--themePopupBoxShadow);
  cursor: pointer;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}

.bill_close {
  position: absolute;
  right: 23px;
  top: 23px;
  width: 13px;
  height: 13px;
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--themeTransition);
  z-index: 2;
}

.bill_close:hover {
  opacity: 1;
}

.bill_close:before,
.bill_close:after {
  position: absolute;
  left: 6px;
  content: ' ';
  height: 14px;
  width: 2px;
  background-color: #000;
}

.bill_close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bill_close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.bill_watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-27deg);
  transform: translate(-50%, -50%) rotate(-27deg);
  width: 160%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1;
}

.bill_watermark-item {
  width: 47%;
  color: transparent;
  -webkit-text-stroke: 2px rgba(246, 185, 115, 0.2);
  text-shadow: 1px 0 rgba(246, 185, 115, 0.08);
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.bill_watermark-item:nth-of-type(3n) {
  width: 100%;
}

.bill_name {
  height: 0;
  opacity: 0;
}

.bill_title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--themeTextColor);
}

.bill_date {
  text-align: right;
  margin-bottom: 2rem;
  color: var(--themeTextColor);
}

.bill_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 5px;
}

.bill_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #EBEBEB;
  padding: 2rem 0;
  color: var(--themeTextColor);
}

.bill_item__main {
  position: relative;
  z-index: 2;
}

.bill_item-site {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  -ms-flex-negative: 2;
  flex-shrink: 2;
  padding-right: 10px;
}

.bill_site-name__dating {
  word-break: break-all;
  min-width: 140px;
}

.bill_site-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

.bill_site-icon__dating {
  background: url(../images/bill-logo_dating.svg) no-repeat center / contain;
}

.bill_site-icon__coffee {
  background: url(../images/bill-logo_starbucks.svg) no-repeat center / contain;
}

.bill_site-icon__books {
  background: url(../images/bill-logo_amazon.svg) no-repeat center / contain;
}

.bill_item-sum {
  min-width: 20%;
  text-align: right;
  -ms-flex-negative: 2;
  flex-shrink: 2;
  width: auto;
}

.bill_item-theme {
  min-width: 20%;
  padding-right: 10px;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: auto;
  text-transform: capitalize;
}

.bill_item-site .bill_site-name {
  opacity: 0.5;
}

.bill_item__main .bill_item-site .bill_site-name,
.bill_item__main .bill_item-sum,
.bill_item__main .bill_item-theme {
  color: var(--themeBtnColor);
  font-weight: 500;
  opacity: 1;
}

.bill_cards {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.bill_cards-icon {
  width: 100px;
  height: 20px;
  background-image: url('../images/bill-logo-cards.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.bill_action {
  width: 100%;
  z-index: 2;
}

.bill_btn {
  text-decoration: none;
}

/* small / is-hide */
.bill_wrap.is-hide {
  margin-right: -100%;
  transition: margin 1.5s ease;
}

.bill_wrap.is-hide .bill_name {
  color: var(--themeSuccessColor);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  padding: 10px;
  height: auto;
  opacity: 1;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.bill_wrap.is-hide .bill_bookmark {
  display: -ms-flexbox;
  display: flex;
}

/* benefits */
.benefits {
  padding: 5rem 0;
  text-align: center;
}

.benefits_title {
  color: var(--themeAccentColor);
  position: relative;
}

.benefits_title::after,
.benefits_items::before,
.benefits_item::before,
.benefits_item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.benefits_title::after {
  left: 50%;
  bottom: -25px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FBE3CD;
}

.benefits_items::before {
  left: 50%;
  top: 75px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: #FBE3CD;
}

.benefits_item::after {
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: 10px solid #FBE3CD;
}

.benefits_item__1::before,
.benefits_item__3::before {
  width: 60%;
  height: 60px;
  border-radius: 20px;
  border-top: 2px solid #FBE3CD;
  background: transparent;
  top: -3px;
}

.benefits_item__1::before {
  border-left: 2px solid #FBE3CD;
  left: 50%;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  -webkit-transform: translate(-1px, -100%);
  transform: translate(-1px, -100%);
}

.benefits_item__2::before {
  width: 2px;
  height: 130px;
  right: 50%;
  top: -3px;
  background-color: #FBE3CD;
  -webkit-transform: translate(1px, -100%);
  transform: translate(1px, -100%);
}

.benefits_item__3::before {
  border-right: 2px solid #FBE3CD;
  right: 50%;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  -webkit-transform: translate(1px, -100%);
  transform: translate(1px, -100%);
}

.benefits_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 140px;
  position: relative;
}

.benefits_item {
  padding: 3rem 2rem;
  position: relative;
  width: 32%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.benefits_item-title {
  margin-bottom: 10px;
}

.benefits_item-icon {
  width: 52px;
  height: 52px;
  background-color: var(--themeAccentColor);
  border-radius: 50%;
  margin-bottom: 42px;
  position: relative;
}

.benefits_item-icon:before {
  font-size: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
}

.benefits_item-icon:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 95px;
  background: url(../images/decor-benefits-item.svg) no-repeat center;
  -webkit-transform: translate(-48%, -20%) rotate(0deg);
  transform: translate(-48%, -20%) rotate(0deg);
  background-size: cover;
}

.benefits_item:hover .benefits_item-icon:after {
  -webkit-animation: .7s linear moveArrow;
  animation: .7s linear moveArrow;
}

.benefits_item-title-text {
  font-size: 24px;
  text-transform: capitalize;
}

.benefits_item-subtitle-text {
  color: var(--themeTextColorSecond);
  font-size: 16px;
}

/* Contact us */
.contact-us {
  padding: 5rem 0;
}

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

.contact-us_subtitle {
  text-align: center;
  margin: 0 auto 4rem;
}

.contact-us_form-container {
  padding: 2rem;
  background: url(../images/bg-contact-us.png) no-repeat center, #fff;
  background-size: cover;
  box-shadow: var(--themeBoxShadow);
  border-radius: var(--themeRadius);
}

.contact-us_form-wrap {
  padding: 2rem;
  border-radius: var(--themeRadius);
  background: #fff;
}

.contact-us_phone-block {
  margin-bottom: 2rem;
}

.phone-block_title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.phone-block_numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.phone-block_numbers-item {
  width: 31%;
  margin: 0 1rem 1rem 0;
}

.phone-block_item-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.phone-block_item-link:hover {
  opacity: var(--themeHoverOpacity);
}

.phone-block_item-icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.phone-block_item-icon::before {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 40%;
}

.phone-block_item-number {
  color: var(--themeTextColor);
}

.contact-us_form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-us_item-wrapper {
  width: 100%;
  min-width: 100px;
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.contact-us_item-wrapper__big {
  margin-bottom: 2rem;
}

.contact-us_item-wrapper__half {
  width: 48%;
}

.contact-us_item-wrapper__third {
  width: 42%;
}

.contact-us_item-wrapper__guarter {
  width: 25%;
}

.contact-us_item {
  background-color: transparent;
  font-size: 1.6rem;
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
}

.contact-us_item:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 40px #fff !important;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.85);
}

.contact-us_item__required {
  position: relative;
  padding-right: 10px;
}

.contact-us_item__required:before {
  content: '\2217';
  position: absolute;
  top: 5px;
  right: 0;
  width: 10px;
  height: 10px;
  color: #d41800;
  font-size: 10px;
}

.contact-us_item-label {
  opacity: 0;
  margin-top: 5px;
  transition: all var(--themeTransition);
  position: absolute;
  top: -17px;
  left: 0;
  font-size: 12px;
}

.contact-us_item:focus+.contact-us_item-label {
  opacity: 1;
  margin-top: 0;
}

.contact-us_item::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all var(--themeTransition);
  transition: all var(--themeTransition);
  color: var(--themeTextColorSecond);
}

.contact-us_item::-moz-placeholder {
  opacity: 1;
  -moz-transition: all var(--themeTransition);
  transition: all var(--themeTransition);
  color: var(--themeTextColorSecond);
}

.contact-us_item:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: all var(--themeTransition);
  transition: all var(--themeTransition);
  color: var(--themeTextColorSecond);
}

.contact-us_item::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: all var(--themeTransition);
  transition: all var(--themeTransition);
  color: var(--themeTextColorSecond);
}

.contact-us_item::placeholder {
  opacity: 1;
  transition: all var(--themeTransition);
  color: var(--themeTextColorSecond);
}

.contact-us_item:focus::-webkit-input-placeholder {
  opacity: 0;
}

.contact-us_item:focus::-moz-placeholder {
  opacity: 0;
}

.contact-us_item:focus:-ms-input-placeholder {
  opacity: 0;
}

.contact-us_item:focus::-ms-input-placeholder {
  opacity: 0;
}

.contact-us_item:focus::placeholder {
  opacity: 0;
}

.contact-us_item-wrapper__big {
  height: auto;
  padding-right: 0;
}

.contact-us_item-wrapper__big .contact-us_item-label {
  top: -20px;
}

.contact-us_item-message {
  resize: none;
  display: block;
  height: 45px;
  padding: 17px 10px 0 0;
  transition: all var(--themeTransition);
}

.contact-us_item-message:focus {
  height: 195px;
  padding-top: 0;
}

.contact-us_card-block {
  min-width: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-us_card-block-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.contact-us_card-block-name {
  display: inline-block;
  margin-bottom: 2rem;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
}

.contact-us_card-block .contact-us_item-wrapper {
  width: auto;
  min-width: auto;
  margin-right: 10px;
  margin-bottom: 0;
  border: none;
}

.contact-us_card-block .contact-us_item-wrapper:nth-of-type(2) {
  margin-right: 0;
}

.contact-us_item-number {
  cursor: pointer;
}

.contact-us_item-number__3,
.contact-us_item-number__4 {
  cursor: auto;
  background-color: transparent;
}

.contact-us_item-number__1 {
  width: 87px;
  padding-left: 50px;
}

.contact-us_item-number__2 {
  width: 20px;
}

.contact-us_item-number__3 {
  width: 22px;
}

.contact-us_item-number__4 {
  width: 40px;
}

.contact-us_item-number__5 {
  width: 87px;
  padding-right: 50px;
}

.contact-us_form-confirm {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 2.4rem;
}

.contact-us_form-checkbox {
  opacity: 0;
  z-index: 2;
}

.contact-us_form-checkbox,
.contact-us_form-checkbox-text::before {
  cursor: pointer;
  position: absolute;
  left: 1px;
  top: -2px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

.contact-us_form-checkbox-icon {
  display: none;
  position: absolute;
  left: 4px;
  top: 1px;
  width: 14px;
  height: 14px;
}

.contact-us_form-checkbox-text {
  position: relative;
  padding-left: 40px;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  color: var(--themeTextColorSecond);
}

.contact-us_form-checkbox-text::before {
  content: '';
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}

input[type="checkbox"].contact-us_form-checkbox:checked+.contact-us_form-checkbox-icon {
  display: block;
}

.contact-us_form-submit-wrap {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-us .responseMsg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 6rem;
  -webkit-animation: fadeOut var(--themeTransition);
  animation: fadeOut var(--themeTransition);
}

.contact-us .responseMsg_title {
  font-size: 36px;
  margin-bottom: 2.4rem;
  color: var(--themeSuccessColor);
  max-width: 80%;
}

.contact-us .responseMsg_text {
  margin-bottom: 2rem;
  color: var(--themeTextColorSecond);
}

.contact-us .responseMsg_btn {
  margin-bottom: 2rem;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--themeSuccessColor);
}

.contact-us .responseMsg_link {
  font-size: 18px;
  transition: all var(--themeTransition);
  color: var(--themeAccentColor);
}

.contact-us .responseMsg_link:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 14px;
}

.footer_links {
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer_links-item {
  color: var(--themeTextColorSecond);
  transition: all var(--themeTransition);
  text-decoration: none;
}

.footer_links-item:not(:last-of-type) {
  margin-right: 4rem;
}

.footer_links-item:hover {
  text-decoration: underline;
}

.footer_copyright p {
  margin-bottom: 1rem;
}

@-webkit-keyframes boxMove {
  0% {
    -webkit-transform: translate(75px, 120px);
    transform: translate(75px, 120px);
  }

  50% {
    -webkit-transform: translate(30px, 50px);
    transform: translate(30px, 50px);
  }

  100% {
    -webkit-transform: translate(75px, 120px);
    transform: translate(75px, 120px);
  }
}

@keyframes boxMove {
  0% {
    -webkit-transform: translate(75px, 120px);
    transform: translate(75px, 120px);
  }

  50% {
    -webkit-transform: translate(30px, 50px);
    transform: translate(30px, 50px);
  }

  100% {
    -webkit-transform: translate(75px, 120px);
    transform: translate(75px, 120px);
  }
}

@-webkit-keyframes cardMove {
  0% {
    -webkit-transform: translate(100px, 100px);
    transform: translate(100px, 100px);
  }

  13% {
    -webkit-transform: translate(90px, 75px);
    transform: translate(90px, 75px);
  }

  25% {
    -webkit-transform: translate(75px, 50px);
    transform: translate(75px, 50px);
  }

  37% {
    -webkit-transform: translate(50px, 25px);
    transform: translate(50px, 25px);
  }

  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }

  62% {
    -webkit-transform: translate(25px, 35px);
    transform: translate(25px, 35px);
  }

  75% {
    -webkit-transform: translate(50px, 80px);
    transform: translate(50px, 80px);
  }

  87% {
    -webkit-transform: translate(75px, 90px);
    transform: translate(75px, 90px);
  }

  100% {
    -webkit-transform: translate(100px, 100px);
    transform: translate(100px, 100px);
  }
}

@keyframes cardMove {
  0% {
    -webkit-transform: translate(100px, 100px);
    transform: translate(100px, 100px);
  }

  13% {
    -webkit-transform: translate(90px, 75px);
    transform: translate(90px, 75px);
  }

  25% {
    -webkit-transform: translate(75px, 50px);
    transform: translate(75px, 50px);
  }

  37% {
    -webkit-transform: translate(50px, 25px);
    transform: translate(50px, 25px);
  }

  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }

  62% {
    -webkit-transform: translate(25px, 35px);
    transform: translate(25px, 35px);
  }

  75% {
    -webkit-transform: translate(50px, 80px);
    transform: translate(50px, 80px);
  }

  87% {
    -webkit-transform: translate(75px, 90px);
    transform: translate(75px, 90px);
  }

  100% {
    -webkit-transform: translate(100px, 100px);
    transform: translate(100px, 100px);
  }
}

@-webkit-keyframes moveArrow {
  from {
    -webkit-transform: translate(-48%, -20%) rotate(0deg);
    transform: translate(-48%, -20%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-48%, -20%) rotate(-360deg);
    transform: translate(-48%, -20%) rotate(-360deg);
  }
}

@keyframes moveArrow {
  from {
    -webkit-transform: translate(-48%, -20%) rotate(0deg);
    transform: translate(-48%, -20%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-48%, -20%) rotate(-360deg);
    transform: translate(-48%, -20%) rotate(-360deg);
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(.8);
    transform: scale(.8)
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes fadeOut {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(.8);
    transform: scale(.8)
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@media screen and (max-width: 1000px) {
  .information_item__actions:before {
    display: none;
  }

  .actions_wrap {
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 60%;
    margin: 0 auto;
    border-radius: 35px;
    margin-bottom: 4rem;
  }

  .actions_item {
    width: 100%;
  }

  .actions_item:not(:last-of-type) {
    margin-bottom: 2rem;
  }

  .bill_wrap {
    position: relative;
    right: 0;
    top: 0;
    margin: 0 auto;
    width: 60%;
    padding: 0;
    min-height: 60px;
  }

  .bill_wrap .bill_content {
    padding: 5rem 2rem;
    background: #fff;
    height: auto;
  }

  .bill_wrap .bill_bookmark {
    position: absolute;
    width: auto;
    height: 60px;
    min-height: 60px;
    top: 0;
    left: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: var(--themeRadius);
    z-index: -1;
  }

  .bill_bookmark:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    opacity: 0.5;
    -webkit-transform: rotate(45deg) translateY(-100%);
    transform: rotate(45deg) translateY(-100%);
    border-left: 0;
    border-top: 0;
  }

  .bill_wrap .bill_bookmark .bill_name {
    color: var(--themeTextColor);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    height: auto;
    opacity: 1;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    padding: 10px 20px;
    font-size: 18px;
  }

  .bill_title {
    font-size: 3rem;
  }

  .benefits {
    padding-bottom: 0;
  }

  .phone-block_numbers-item {
    width: 47%;
  }
}

@media screen and (max-width: 680px) {
  html {
    font-size: 50%;
  }

  .information_item-decor,
  .benefits,
  .contact-us_phone-block,
  .support_information:before {
    display: none;
  }

  .information_item__support {
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }

  .information_item__title {
    -ms-flex-order: 2;
    order: 2;
  }

  .information_item__actions {
    -ms-flex-order: 3;
    order: 3;
  }

  .information_item__bill {
    -ms-flex-order: 4;
    order: 4;
    margin-bottom: 20px;
  }

  .information_item__subtitle {
    -ms-flex-order: 5;
    order: 5;
  }

  .support {
    background-color: var(--themeAccentColor);
    padding: 10px;
    border-radius: var(--themeRadius);
  }

  .support_information {
    padding: 0;
  }

  .support_text-wrap {
    display: inline-block;
  }

  .title {
    text-align: center;
  }

  .information_title {
    font-size: 26px;
  }

  .actions_wrap {
    max-width: 100%;
    padding: 0;
    background: transparent;
  }

  .bill_wrap {
    width: 100%;
    min-width: 100%;
    box-shadow: var(--themeBoxShadow);
  }

  .bill_item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .bill_item-site {
    -ms-flex-order: 1;
    order: 1;
    width: 70%;
  }

  .bill_item-sum {
    -ms-flex-order: 2;
    order: 2;
  }

  .bill_item-theme {
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    margin-left: 30px;
  }

  .information_subtitle {
    text-align: center;
    margin-bottom: 0;
  }

  .contact-us {
    padding: 0 0 20px;
  }

  .contact-us_item-wrapper__half,
  .contact-us_item-wrapper__third,
  .contact-us_item-wrapper__guarter {
    width: 100%;
  }

  .contact-us_item-label {
    top: -12px;
  }

  .contact-us_item-wrapper {
    margin-bottom: 20px;
  }

  .contact-us_card-block-container {
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .contact-us_item-number {
    font-size: 16px;
  }

  .contact-us_item-number__1 {
    width: 70px;
    padding-left: 30px;
  }

  .contact-us_item-number__5 {
    width: 70px;
    padding-right: 30px;
  }

  .contact-us_card-block .contact-us_item-wrapper:last-of-type {
    margin-right: 0;
  }

  .contact-us .responseMsg {
    padding: 0;
  }

  .contact-us .responseMsg_title {
    font-size: 18px;
  }
}

@media screen and (max-width: 345px) {
  .contact-us_item-number__1 {
    width: 50px;
    padding-left: 10px;
  }

  .contact-us_item-number__5 {
    width: 50px;
    padding-right: 10px;
  }
}