@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

a, a:active, a:hover {
  text-decoration: none;
  color: inherit;
}

ol, ul, li {
  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;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}

.calculator__container {
  margin: 0 auto;
  max-width: 641px;
  width: 100%;
}

.calculator__wrapper {
  display: flex;
  gap: 44px;
}

.calculator__item {
  max-width: 300px;
}

.calculator__wrapper button {
  height: 32px;
  align-self: end;
  margin-bottom: 55px;
}

.calculator-form__title {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
  color: white;
}

.calculator-form__select {
  margin-bottom: 20px;
  width: 100%;
  min-height: 50px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  font-size: 20px;
  text-align: center;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.7);
}
.calculator-form__select option {
  font-size: 20px;
}

.calculator-form__wrapper {
  min-height: 110px;
  padding: 20px;
  border: 1px solid #e1e1e1;
  background: white;
  border-radius: 15px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.7);
}

.calculator-form__wrapper input {
  display: block;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font-size: 36px;
  line-height: 42px;
  padding: 0 5px;
  text-align: center;
}

.calculator-form__wrapper input:focus {
  outline: none;
}

/*
.calculator-form__wrapper input:placeholder-shown {
  font-size: 18px;
}
*/

.calculator-form__wrapper span {
  display: flex;
  align-items: center;
  min-height: 28px;
  font-size: 12px;
  line-height: 14px;
  color: #c6c6c6;
}

.btn-reset {
  background: rgba(148, 40, 40, 0);
}

@media screen and (max-width: 991px) {
  .calculator__wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 375px) {
  .calculator__wrapper {
    flex-direction: column;
  }
  .calculator__wrapper button {
    align-self: center;
    margin-bottom: 0;
    transform: rotate(90deg);
  }
  .calculator__item {
    margin: auto;
  }
}
#buttontothetop {
  display: inline-block;
  background-color: #FF2400;
  width: 55px;
  height: 55px;
  text-align: center;
  align-items: center;
  border-radius: 10px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0px 4px 14px rgba(255, 174, 0, 0.15);
}

#buttontothetop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#buttontothetop:hover {
  cursor: pointer;
  background-color: #ffb700;
}

#buttontothetop:active {
  background-color: #ffe600;
}

#buttontothetop.show {
  opacity: 1;
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.container {
  max-width: 1040px;
  margin: auto;
}

.header {
  background: #ffe600;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.7);
}
.header__body {
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
}
.header__logo {
  padding: 10px 0;
}
.header__logo img {
  width: 70%;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__list {
  display: flex;
  flex-direction: row;
  gap: 55px;
}
.header__list a:hover {
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: inherit;
}
.header__list a:visited, .header__list a:active, .header__list a:hover {
  color: inherit;
}
.header__menu {
  font-weight: 500;
  text-transform: uppercase;
}

.wrap_bg {
  background: url("../img/wrap-bg-fl-min.png") no-repeat center;
  background-size: cover;
}

.wrap_bg2 {
  background: url("../img/wrap-bg-min.png") no-repeat center;
  background-size: cover;
}

.imgorn {
  height: 50px;
  background: url("/img/ornament-red.png") repeat center;
  background-size: auto 100%;
  overflow: hidden;
  transform: rotate(180deg);
}

.calc {
  min-height: 100vh;
  max-height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/billie-dollar-money-background-min.jpg") no-repeat top center;
  background-size: cover;
}
.calc__body {
  max-width: 1170px;
  margin: auto;
  padding-top: 10%;
}
.calc__title {
  font-size: 38px;
  line-height: 48px;
  letter-spacing: 0.7px;
  font-weight: 500;
  padding: 0 0 75px 0;
  text-align: center;
  text-transform: uppercase;
  color: white;
}
.calc__exchange {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: flex-end;
}
.calc__exchange-frame {
  max-width: 370px;
  width: 100%;
}
.calc__exchange-top {
  margin: 0 0 10px 15px;
}
.calc__exchange-arrow {
  width: 60px;
}
.calc__exchange-arrow img {
  width: 100%;
  align-items: center;
  text-align: center;
}
.calc__exchange-button {
  display: flex;
  justify-content: center;
  width: 220px;
  height: 65px;
  background: #ffe600;
  border: 1px solid #efefef;
  border-radius: 11px;
  align-items: center;
  font-size: 22px;
}

.exchange-item {
  display: flex;
  background: white;
  height: 65px;
  border-radius: 11px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid #efefef;
  border-radius: 11px;
}

.items-center {
  display: flex;
}

.current {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
}
.current img {
  max-width: 40px;
  padding: 0 5px 0 0;
}

.input-amount {
  height: 60%;
  width: 100%;
  border-left: rgba(0, 0, 0, 0.2) 2px solid;
  padding: 0 0 0 20px;
  margin: 0 20px 0 0;
  font-size: 22px;
}

.currency-image {
  height: 30%;
}
.currency-image img {
  width: 100%;
}

.title {
  font-size: 38px;
  line-height: 55px;
  letter-spacing: 0.7px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 60px 0 60px 120px;
}

.icons {
  color: #F5F5F5;
}
.icons__row {
  display: flex;
  justify-content: space-around;
  padding: 80px 0 30px 0;
  text-transform: uppercase;
}
.icons__column {
  display: flex;
  align-items: center;
  background: #FF2400;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  width: 30%;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 25px;
  font-weight: 400;
}
.icons__column div {
  padding-left: 15px;
}
.icons__column img {
  max-height: 50px;
  height: 100%;
}

.kurs__content {
  padding: 0 0 150px 0;
}
.kurs__menu {
  background: #FFE600;
  padding: 20px 0;
  margin-bottom: 15px;
  border-radius: 10px;
  text-transform: uppercase;
}
.kurs__menu_list {
  display: flex;
  text-align: center;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
}
.kurs__menu_item {
  width: 25%;
}
.kurs__string {
  display: flex;
  background: #F5F5F5;
  padding: 40px 0;
  margin: 15px 0;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
}
.kurs__string_currency {
  align-items: center;
  display: flex;
  padding-left: 8%;
  font-size: 22px;
}
.kurs__string_currency img {
  max-width: 40px;
  padding-right: 10px;
}
.string-item {
  width: 25%;
  text-align: center;
  margin: auto;
}

.telegram {
  background: url("/img/ornament-red.png") no-repeat bottom;
  background-size: auto 50px;
}
.telegram__body {
  margin-top: -20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.telegram__body img {
  max-width: 100%;
  height: auto;
}
.telegram__button {
  height: 60px;
  max-width: 300px;
  min-width: 270px;
  width: 100%;
  background: #FF2400;
  border-radius: 15px;
  display: flex;
  align-items: center;
  color: white;
  margin: 0 0 170px 100px;
}
.telegram__button a {
  width: 100%;
}
.telegram__button DIV {
  padding: 0 15px;
  display: flex;
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
}
.telegram__button DIV p {
  margin: auto;
}
.telegram__button DIV img {
  height: 40px;
  padding: 0 20px 0 0;
}

.adress__body {
  padding: 0 0 50px 0;
}
.adress__item {
  margin: 15px 0;
  padding: 0 0 0 40px;
  height: 90px;
  background: #FFE600;
  border-radius: 15px;
  display: flex;
  align-items: center;
}
.adress__item img {
  padding: 0 10px 0 0;
}

.description {
  background: linear-gradient(to top, rgba(255, 230, 0, 0.5), rgba(255, 230, 0, 0.5)), url("../img/diagram-yr.png") no-repeat center;
  background-size: cover;
}
.description__body {
  padding: 0 0 110px 0;
  margin: 0 10px;
}
.description__text {
  font-size: 18px;
  line-height: 35px;
}
.description__text p {
  padding: 5px 0;
}
.description__text span {
  text-transform: uppercase;
  color: #0d9bd3;
  font-weight: 700;
}

.footer {
  background: #FFD700;
}
.footer__row {
  display: flex;
  padding: 80px 20px 50px 20px;
}
.footer__column {
  width: 33.3%;
  padding: 0 15px;
}
.footer__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 30px;
}
.footer__menu {
  line-height: 30px;
}
.footer__menu_item a:hover {
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: inherit;
}
.footer__menu_item a:visited, .footer__menu_item a:active, .footer__menu_item a:hover {
  color: inherit;
}
.footer__btntext {
  margin-top: 20px;
}
.footer__button {
  height: 33px;
  max-width: 170px;
  width: 100%;
  background: #40B3E0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  color: white;
  margin-top: 10px;
}
.footer__button DIV {
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
}
.footer__button DIV img {
  height: 20px;
  padding: 0 10px 0 0;
}

.button-tg {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
}
.button-tg a:hover {
  -webkit-text-stroke-width: 0.9px;
  -webkit-text-stroke-color: inherit;
}
.button-tg a:visited, .button-tg a:active, .button-tg a:hover {
  color: inherit;
}

.header__inner {
  display: none;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .header__inner {
    display: flex;
  }
}

.menu-btn {
  z-index: 10;
}
.menu-btn__item {
  position: relative;
  display: block;
  background-color: #FF2400;
  width: 45px;
  height: 6px;
  margin-bottom: 5px;
  transition: all 0.5s;
  cursor: pointer;
}
.menu-btn__item.active:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}
.menu-btn__item.active:nth-child(2) {
  opacity: 0;
}
.menu-btn__item.active:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}
.menu-btn__item:last-child {
  margin-bottom: 0;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #ffe600;
  opacity: 0;
  z-index: 5;
}
.nav__list {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav__item {
  margin-bottom: 20px;
}
.nav.show {
  opacity: 1;
  width: 100%;
  height: 30%;
}

@media screen and (max-width: 991px) {
  .container {
    margin: 0 10px;
  }
  .header__body {
    padding: 5px;
    padding-bottom: 10px;
    margin: 0;
  }
  .header__logo img {
    width: 98%;
  }
  .header__nav {
    display: none;
    padding-top: 10px;
    padding-left: 15px;
    line-height: inherit;
  }
  .title {
    font-size: 30px;
    line-height: 35px;
    padding: 50px 0;
    text-align: center;
  }
  .calc {
    min-height: 100%;
    max-height: 100%;
  }
  .calc__body {
    padding: 50px 0 90px 0;
    margin: 0 10px;
  }
  .calc__title {
    font-size: 30px;
    padding: 0 0 50px 0;
  }
  .icons__column {
    align-items: center;
  }
  .kurs__content {
    padding: 0 0 70px 0;
  }
  .kurs__menu {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
    font-size: 16px;
  }
  .kurs__string {
    width: inherit;
    justify-content: space-between;
  }
  .kurs__string_currency {
    padding-left: 10px;
  }
  .kurs__string_currency img {
    padding-right: 5px;
  }
  .string-item {
    width: 20%;
  }
  .description__body {
    padding: 0 0 70px 0;
  }
  .adress__body {
    padding: 0 0 70px 0;
  }
}
@media screen and (min-width: 650px) and (max-width: 991px) {
  .telegram__body {
    margin: 0;
  }
  .telegram__body img {
    zoom: 0.7;
  }
  .telegram__button {
    margin: 0 0 150px 50px;
  }
  .footer__row {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 20px 30px 20px;
  }
  .footer__row :nth-child(3) {
    width: 100%;
  }
  .footer__body {
    display: flex;
  }
  .footer__btntext {
    margin-top: 0;
    line-height: 30px;
    padding: 0 0 0 50px;
  }
  .footer__column {
    margin-top: 30px;
    padding: 0;
    min-width: 50%;
  }
}
@media screen and (max-width: 649px) {
  .tg-bg-img {
    padding-top: 60px;
  }
  .icons__row {
    flex-direction: column;
    padding: 40px 0 20px 0;
  }
  .icons__column {
    align-items: center;
    width: 100%;
    margin: 5px 0;
  }
  .telegram__body {
    position: relative;
    margin: 0;
    display: block;
  }
  .telegram__body img {
    margin: 0;
  }
  .telegram__button {
    margin: 0;
    z-index: 100;
    position: absolute;
    left: 70%;
    transform: translate(-70%, -20%);
  }
  .footer__row {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 50px 20px;
  }
  .footer__btntext {
    margin-top: 0;
    line-height: 30px;
  }
  .footer__column {
    margin-top: 30px;
    padding: 0;
    min-width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .kurs {
    font-size: 15px;
  }
  .kurs__menu {
    font-size: inherit;
  }
}
@media screen and (max-width: 375px) {
  .title {
    font-size: 25px;
  }
  .header__logo img {
    width: 70%;
  }
  .calc__title {
    font-size: 25px;
  }
  .icons__column {
    font-size: 13px;
  }
  .kurs__string_currency {
    font-size: 15px;
  }
  .description__text {
    font-size: 15px;
  }
  .adress__body {
    padding: 0 0 20px 0;
  }
  .adress__item {
    padding: 0 0 0 15px;
    font-size: 15px;
  }
}
@media screen and (max-width: 300px) {
  body {
    zoom: 0.7;
  }
  .telegram__button {
    zoom: 0.8;
  }
}/*# sourceMappingURL=style.css.map */

.calc-input::placeholder {
  font-size: 15px;
}

.calc-input:disabled {
  background-color: inherit;
}