@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes reverse-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(0.9, 0.9, 0.9);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-name: tada;
}

.pulse {
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 2s;
  animation-name: pulse;
}

.bounceIn {
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: bounceIn;
  animation-duration: 4s;
}

.rotate,
.reverse-rotate {
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 14s;
}

.rotate {
  animation-name: rotate;
}

.reverse-rotate {
  animation-name: reverse-rotate;
}

.two-factor {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 40px 0 0;
  width: 100%;
}
.two-factor > p {
  white-space: nowrap;
}
.two-factor .block-btn {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0 0 0 19px;
}
.two-factor .block-btn .btn {
  margin: 0 0 0 13px;
  width: 102px;
  background: rgb(243, 245, 249);
  border-color: rgb(223, 223, 223);
  box-shadow: inset 3px 3px 10px 1px rgba(0, 0, 0, 0);
}
.two-factor .block-btn .btn:hover {
  box-shadow: inset 3px 3px 10px 1px rgba(0, 0, 0, 0.25);
}
.two-factor .block-btn .btn.active {
  pointer-events: none;
  color: #fff;
  background: linear-gradient(96.2deg, #70C9BB 9.99%, #39B2A9 107.77%);
}

.popup {
  color: #000;
  position: fixed;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  z-index: 12;
}
.popup__content {
  position: relative;
  border-radius: 15px;
  background: #fff;
}
.popup .bg-input {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 23px 18px 24px 26px;
  width: calc(50% - 11px);
  max-width: 454px;
  height: 60px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(223, 223, 223);
}
.popup .bg-input label {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
}
.popup .bg-input label > span {
  position: absolute;
  left: -19px;
  bottom: calc(100% + 39px);
  width: 100%;
}
.popup .bg-input > .label {
  position: absolute;
  left: 0;
  bottom: calc(100% + 17px);
  width: 100%;
}
.popup .bg-input input {
  flex-grow: 1;
  width: 100%;
}
.popup .bg-input > p {
  flex-shrink: 0;
}
.popup .bg-input:not(:first-of-type) {
  margin: 0 0 0 auto;
}
.popup .bg-input.small {
  max-width: 262px;
}
.popup .bg-input.address {
  max-width: unset;
  width: auto;
  min-width: 316px;
  padding-right: 26px;
}
.popup .bg-input.address span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.popup__description.invest {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  display: block;
  padding: 37px 32px 52px 32px;
  max-width: unset;
  min-width: 315px;
  width: 1100px;
  border-radius: 15px;
  border: 1px solid #38C69B;
  border-top: 4px solid #38C69B;
}
.popup__description.invest .container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  display: none;
  max-width: 698px;
  width: 100%;
  line-height: 1.2;
}
.popup__description.invest .container.disabled {
  max-width: unset;
}
.popup__description.invest .container.disabled .bg-input {
  max-width: unset;
}
.popup__description.invest .container.disabled .block-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.popup__description.invest .general.header-gradient {
  display: none;
  margin: -37px -32px 0;
  width: calc(100% + 64px);
  border-radius: 27px 27px 0 0;
}
.popup__description.invest .general.header-gradient .general__header {
  padding: 40px 30px 10px;
}
.popup__description.invest .general.header-gradient .general__header h1 {
  text-align: center;
  color: #38C69B;
  font-size: 32px;
}
.popup__description.invest .general.header-gradient > p {
  padding: 30px 0;
  width: 100%;
  font-size: 20px;
  text-align: center;
}
.popup__description.invest .general.header-gradient .block-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.popup__description.invest .popup__description--header {
  padding: 0 0 30px;
  width: 100%;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
}
.popup__description.invest .popup__description--qr {
  position: absolute;
  top: 127px;
  left: calc(100% + 13px);
}
.popup__description.invest .popup__description--item {
  margin: 0 0 25px;
  width: 100%;
}
.popup__description.invest .popup__description--item p {
  width: 100%;
}
.popup__description.invest .popup__description--item p:not(.step, .step-info) {
  padding: 0 0 14px;
  line-height: 1.5;
}
.popup__description.invest .popup__description--item p:not(.step, .step-info) a {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  transition: 0.3s all;
}
.popup__description.invest .popup__description--item p:not(.step, .step-info):last-of-type {
  padding: 0;
}
.popup__description.invest .popup__description--item p.step {
  margin: 0 0 5px;
  font-weight: 600;
}
.popup__description.invest .popup__description--item p.step-info {
  font-size: 12px;
  line-height: 1;
}
.popup__description.invest .popup__description--item p.step-info span {
  display: inline-block;
  padding: 7px 0 0;
  width: 100%;
}
.popup__description.invest .popup__description--item .bg-input,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy {
  padding: 15px 18px 15px 23px;
  margin: 21px 0 0;
  max-width: 652px;
  width: 100%;
}
.popup__description.invest .popup__description--item .bg-input > p,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy > p {
  flex-shrink: 1;
}
.popup__description.invest .popup__description--item .bg-input .btn-copy,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy .btn-copy {
  position: relative;
  cursor: pointer;
  box-shadow: unset !important;
}
.popup__description.invest .popup__description--item .bg-input .btn-copy path,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy .btn-copy path {
  fill: #38C69B;
  transition: 0.3s all;
}
.popup__description.invest .popup__description--item .bg-input .btn-copy:after,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy .btn-copy:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/icons/success.html) center center no-repeat;
  transition: 0.3s all;
  opacity: 0;
}
.popup__description.invest .popup__description--item .bg-input .btn-copy.copy-success,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy .btn-copy.copy-success {
  pointer-events: none;
}
.popup__description.invest .popup__description--item .bg-input .btn-copy.copy-success path,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy .btn-copy.copy-success path {
  fill-opacity: 0;
}
.popup__description.invest .popup__description--item .bg-input .btn-copy.copy-success:after,
.popup__description.invest .popup__description--item .bg-input.create-deposit__line--copy .btn-copy.copy-success:after {
  opacity: 1;
}
.popup__description.invest .block-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}
.popup__description.invest .block-btn .btn {
  max-width: unset;
  width: 259px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: #38C69B;
  border: 1px solid #024933;
  box-shadow: inset 3px 3px 10px 1px rgba(0, 0, 0, 0);
}
.popup__description.invest .block-btn .btn:hover {
  box-shadow: inset 3px 3px 10px 1px rgba(0, 0, 0, 0.25);
}
.popup__description.invest .block-btn .btn.border {
  margin: 0 0 0 21px;
}

.popup__content .popup__close svg path {
  fill: rgba(0, 0, 0, 0);
  stroke: #024933;
  stroke-width: 2px;
}

.popup__close {
  cursor: pointer;
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  top: 19px;
  right: 17px;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  border: 1px;
  transition: 0.3s all;
  z-index: 5;
}
.popup__close img, .popup__close svg {
  width: 16px;
  height: auto;
  transform: rotate(45deg);
  transition: 0.3s all;
}
.popup__close:hover img, .popup__close:hover svg {
  transform: rotate(405deg);
}

.popup {
  display: none;
}

.dep_l {
  width: 100%;
}

.form-calculate {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px 0 0;
  width: 100%;
  color: rgba(14, 32, 38, 0.6);
  font-family: "Manrope", sans-serif !important;
}
.form-calculate > *, .form-calculate * {
  font-family: "Manrope", sans-serif !important;
}
.form-calculate__line {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin: 0 0 20px;
  width: 100%;
}
.form-calculate__line label {
  pointer-events: none;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 0 50px;
  max-width: 180px;
  width: 50%;
}
.form-calculate__line label > * {
  pointer-events: all;
}
.form-calculate__line label .form-calculate__title {
  padding: 0 0 5px;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  font-style: normal;
  letter-spacing: 0.15px;
}
.form-calculate__line label span {
  position: absolute;
  bottom: 5px;
  right: 0;
  color: #0e2026;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.24px;
  letter-spacing: 0.15px;
}
.form-calculate__line label input {
  width: calc(100% - 40px);
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  font: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #0e2026;
  font-size: 40px;
  font-weight: 600;
  line-height: 45.6px;
  letter-spacing: 0.15px;
}
.form-calculate__line label input::-webkit-input-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgb(14, 32, 38);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label input::-moz-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgb(14, 32, 38);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label input:-moz-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgb(14, 32, 38);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label input:-ms-input-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgb(14, 32, 38);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label input:focus::-webkit-input-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgba(0, 0, 0, 0);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label input:focus::-moz-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgba(0, 0, 0, 0);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label input:focus:-moz-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgba(0, 0, 0, 0);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label input:focus:-ms-input-placeholder {
  font-family: "Manrope", sans-serif !important;
  color: rgba(0, 0, 0, 0);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-calculate__line label .bg-input {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.form-calculate__line label:after {
  content: "";
  left: 0;
  bottom: -7px;
  width: 100%;
  position: absolute;
  height: 6px;
  border-radius: 10px;
  background: #1bb6c1;
}
.form-calculate__line .percent-profit {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 0 0 auto;
  padding: 0 0 0 20px;
}
.form-calculate__line .percent-profit > * {
  width: 100%;
}
.form-calculate__line .percent-profit p {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0.15px;
}
.form-calculate__line .percent-profit span {
  padding: 6px 0 0;
  color: #5eb66d;
  font-size: 40px;
  font-weight: 500;
  line-height: 45.6px;
  letter-spacing: 0.15px;
}
.form-calculate__line > p,
.form-calculate__line .gradient-number__img p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
}
.form-calculate__line .gradient-number__img {
  margin: 0 0 0 auto;
}
.form-calculate__line .gradient-number__img span {
  padding: 0 0 0 2px;
}
.form-calculate__line:last-child {
  margin: 0 0 40px;
}
.form-calculate__line:last-child > p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(14, 32, 38);
}

.item-notice.success > * {
  z-index: 4;
}
.item-notice.success + .btn_orange.show {
  text-align: center;
  z-index: 2;
}
.item-notice.success:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #11ac7c;
  box-shadow: 0 9px 16px rgba(0, 0, 0, 0.08);
  border-left: 3px solid;
  border-radius: 3px 8px 8px 3px;
  background: #fff;
  z-index: 3;
}
.item-notice.success:after {
  z-index: 4;
}
.item-notice.success + .btn_orange.show + .btn_orange {
  pointer-events: none;
  display: none;
  opacity: 0;
}

.privacy-policy h2 {
  padding: 20px 0;
  font-size: 32px;
  line-height: 1.2;
}
.privacy-policy article p {
  margin: 0 0 20px;
  word-break: break-word;
}

@media (max-width: 1279px) {
  .popup__description.invest {
    padding: 35px 20px;
    width: 990px;
    border-radius: 15px;
  }
  .popup__description.invest .popup__description--header {
    padding: 0 0 20px;
  }
  .popup__description.invest .popup__description--item {
    margin: 0 0 25px;
  }
  .popup__description.invest .popup__description--qr {
    left: calc(100% + 5px);
  }
  .popup__description.invest .general.header-gradient {
    margin: -37px -20px 0;
    width: calc(100% + 40px);
    border-radius: 15px 15px 0 0;
  }
  .popup__description.invest .container {
    max-width: 660px;
  }
}
@media (max-width: 1023px) {
  .contents_text_block_left {
    max-width: 100%;
  }
  .contents_text_block_right {
    display: none;
  }
  .popup__description.invest {
    width: 740px;
  }
  .popup__description.invest .popup__description--header {
    font-size: 24px;
  }
  .popup__description.invest .popup__description--qr {
    position: relative;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .popup__description.invest .popup__description--qr img, .popup__description.invest .popup__description--qr svg {
    max-width: 144px;
    height: auto;
  }
}
@media (max-width: 900px) {
  .dep {
    min-width: 80vw;
  }
  .news_block {
    margin-right: 0;
    flex-direction: column;
  }
  .values_list .first_item {
    position: relative;
    background-position: center bottom !important;
    overflow: hidden;
  }
  .values_list .first_item > * {
    position: relative;
    z-index: 4;
  }
  .values_list .first_item:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #38b2a9 8.99%, #7ccebd 100%);
  }
  .values_list .first_item:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/img/val-bg-1.png") no-repeat;
    background-position: center bottom !important;
    background-size: contain !important;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .popup__content {
    margin: 0 20px;
  }
  .popup__description.invest {
    width: 100%;
  }
  .popup__description.invest .block-btn {
    justify-content: space-between;
  }
  .popup__description.invest .block-btn .btn {
    padding: 15px;
    width: calc(50% - 6px);
    font-size: 14px;
    text-align: center;
  }
  .popup__description.invest .block-btn .btn.border {
    margin: 0;
  }
  .popup__description.invest .general.header-gradient .general__header {
    padding: 20px;
  }
  .popup__description.invest .general.header-gradient > p {
    padding: 30px 20px;
  }
  .popup__description.invest .container.disabled .block-btn {
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .faq_cat_list {
    overflow: unset;
  }
  .faq_cat_list .faq_cat {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .faq_cat_list .faq_cat a {
    margin: 10px 0;
    width: calc(50% - 10px);
  }
  .values_list .first_item {
    position: relative;
    padding-bottom: 200px !important;
    background-position: center bottom !important;
  }
  .calc_right .dep {
    min-width: unset;
  }
  .footer {
    padding: 20px 3% 20px;
  }
  .footer_nav {
    flex-wrap: wrap;
    margin: 10px 0 20px;
    justify-content: space-around;
  }
  .footer_nav a {
    margin: 10px 15px;
  }
  .footer_top {
    max-width: unset;
  }
  .footer_top > a:first-child {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    pointer-events: none;
    margin: 0 !important;
    width: 100%;
  }
  .footer_top > a:first-child > * {
    pointer-events: all;
  }
  .footer_top > a:nth-child(2n) {
    margin-right: 0 !important;
  }
  .footer_top > a:last-child {
    margin-left: auto !important;
  }
  .footer .copy p {
    margin: 0 20px 0 0;
  }
  .we_accept {
    padding-bottom: 0;
  }
  .about .top-section.ui-section .title-container > img, .about .top-section.ui-section .title-container > svg {
    display: none;
  }
  .about .history-section .history-line > img, .about .history-section .history-line > svg {
    display: none;
  }
  .about .history-section .btn-container {
    margin: 20px 0 0;
  }
  .about .history-section .btn-container .risk-warning {
    margin: 20px 0 0;
  }
  .hero_left .btn {
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  .popup .block-btn {
    justify-content: center;
    flex-direction: column;
  }
  .popup .block-btn .btn {
    white-space: nowrap;
  }
  .popup .block-btn .btn:first-child {
    margin: 0 0 30px;
  }
  .popup__description.invest .block-btn .btn {
    width: calc(100% - 40px);
  }
  .two-factor {
    flex-direction: column;
  }
  .two-factor > p {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 500;
  }
  .two-factor .block-btn {
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
  .two-factor .block-btn .btn {
    margin: 0;
    max-width: calc(100% - 40px);
    width: 100%;
  }
  .two-factor .block-btn .btn:first-child {
    margin: 0 0 30px;
  }
  section {
    padding-bottom: 60px;
  }
  .privacy-policy {
    padding-top: 130px;
  }
  .privacy-policy h1 {
    color: #0e2026;
  }
  .aff_list {
    flex-wrap: wrap;
    margin: 0 0 30px;
    width: 100%;
  }
  .aff_list .aff_item {
    margin: 0 0 20px;
    width: 100%;
  }
  .aff_right .btn_orange {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 19px 20px;
    width: 100%;
  }
  .faq_item h4 {
    font-size: 20px;
    line-height: 1.2;
  }
  .news {
    padding-top: 60px;
  }
  .news_block {
    flex-direction: column;
  }
  #news {
    padding-bottom: 20px;
  }
}/*# sourceMappingURL=new_css.css.map */