@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}
@media screen and (max-width: 814px) {
  ::-webkit-scrollbar {
    overflow-y: scroll;
    width: 0;
  }
}

::-webkit-scrollbar-thumb {
  background-color: #5433ff;
}

html, body {
  font-family: "Inter", sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
  user-select: none;
  overflow-x: hidden;
  color: white;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background: #1F2029;
  overflow: hidden;
  height: 100vh;
  width: 110%;
  z-index: 99;
}
.preloader__item p {
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem;
}

.loaded .preloader {
  display: none;
  overflow-y: scroll;
}
.loaded__hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.wrapper, .wrapper__content {
  height: 100%;
  width: 100%;
}
.wrapper__content {
  margin-top: 4rem;
}

.buy {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9;
}
.buy__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  background-color: white;
  margin: 1rem;
  padding: 2rem;
  width: 30rem;
  color: black;
}
.buy__items hr {
  border-color: rgba(0, 0, 0, 0.1882352941);
  width: calc(100% - 2rem);
  margin-bottom: 1rem;
}
@media screen and (max-width: 500px) {
  .buy__items hr {
    width: 100%;
  }
}
.buy__items form {
  display: flex;
  flex-direction: column;
}
.buy__items form input, .buy__items form textarea {
  background-color: rgba(136, 136, 136, 0.1254901961);
  margin: 0.5rem 1rem;
  padding: 0.8rem 1rem;
  outline: none;
  border: none;
  border-radius: 5px;
  resize: none;
}
.buy__items form input[type=submit] {
  background-color: #111111;
  font-weight: 400;
  cursor: pointer;
  color: white;
}
@media screen and (max-width: 500px) {
  .buy__items form {
    width: calc(100% + 2rem);
  }
}
@media screen and (max-width: 500px) {
  .buy__items {
    border-radius: 0;
    height: 100vh;
    width: 100%;
    margin: 0;
  }
}
.buy__title {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
}
.buy__title p {
  font-size: 1.375rem;
  font-weight: 500;
  margin: 1rem 0;
}
@media screen and (max-width: 500px) {
  .buy__title {
    padding: 0;
  }
}
.buy__close {
  font-size: 2.5rem;
  user-select: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

@media screen and (max-width: 400px) {
  h1, h2, h3 {
    text-align: center;
  }
}

h1, h2 {
  color: white;
}

h1 {
  font-weight: 400;
  font-size: 2.5rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 350;
}

h3 {
  background: linear-gradient(to right, #5433ff, #20bdff, #a5fecb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 1rem 0 !important;
}
h3:nth-child(2) {
  margin-top: 3rem !important;
}
@media screen and (max-width: 875px) {
  h3:nth-child(2) {
    margin: 0 !important;
  }
}

.parallax {
  background: url("images/backgrounds/bg2.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 441px) {
  .parallax {
    height: 50%;
  }
}

.parallax2 {
  background: url("images/backgrounds/bg3.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 441px) {
  .parallax2 {
    height: 50%;
  }
}

.parallax3 {
  background: url("images/backgrounds/bg4.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 441px) {
  .parallax3 {
    height: 50%;
  }
}

.line {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav {
  justify-content: space-between;
  background-color: #1F2029;
  position: fixed;
  display: flex;
  height: 4rem;
  width: 100%;
  z-index: 1;
  top: 0;
}
.nav__content {
  display: flex;
  align-items: center;
  z-index: 1;
}
.nav__content:first-child {
  margin: 0 2.5rem;
}
@media screen and (max-width: 920px) {
  .nav__content:first-child {
    margin: 0 1rem;
  }
}
.nav__content:nth-child(3) {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50px !important;
  font-size: 1.5rem;
  margin: 0.4rem;
  height: 50px;
  width: 50px;
}
.nav__content:nth-child(3):hover {
  background-color: rgba(255, 255, 255, 0.0823529412);
  animation-duration: 0.5s;
  border-radius: 4px;
  color: #5433ff;
}
@media screen and (max-width: 992px) {
  .nav__content:nth-child(3) {
    display: flex;
  }
}
.nav__content ul {
  display: flex;
}
.nav__content ul a, .nav__content ul a li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  height: 4rem;
  width: 8rem;
}
.nav__content ul a:hover {
  background-color: rgba(255, 255, 255, 0.0823529412);
  animation-duration: 0.5s;
  border-radius: 4px;
  color: #5433ff;
}
@media screen and (max-width: 992px) {
  .nav__content ul {
    display: none;
  }
}
.nav__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
}
.nav__icon {
  margin: 0.5rem;
}
.nav__icon, .nav__icon img {
  height: 3rem;
}
.nav__name {
  font-size: 1.25rem;
  font-weight: 600;
}

.container {
  background: url("images/backgrounds/bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 4rem;
}
.container__item {
  display: flex;
  width: 100%;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1F2029;
}
.container__btn {
  display: flex;
  justify-content: center;
  font-size: 1.1rem;
  width: 300px;
  margin: 1rem;
}
.container__btn button {
  background: linear-gradient(250deg, #5433ff, #20bdff, #a5fecb);
  border: solid 2px white;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  color: white;
  font-weight: 400;
  transition: all 150ms ease-in-out;
  width: 300px;
  padding: 1rem;
}
.container__btn button:hover {
  background: linear-gradient(to right, #5433ff, #20bdff, #a5fecb);
  border-color: #1F2029;
  color: #1F2029;
}
@media screen and (max-width: 320px) {
  .container__btn button {
    width: 90%;
  }
}
.container h1 {
  margin: 1rem 0;
}
.container h2 {
  margin: 0.5rem 1rem;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: #1F2029;
  z-index: 2;
  flex-direction: column;
  top: 0;
}
.menu p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  padding: 2.5rem;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  z-index: 3;
}
.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80%;
  position: absolute;
  top: 0;
  list-style: none;
  font-size: 1.1rem;
  width: 100%;
  flex-direction: column;
}
.menu ul li {
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  margin: 0 1rem;
  width: calc(75vw - 2rem);
}
.menu ul li:hover {
  background-color: rgba(255, 255, 255, 0.0823529412);
  animation-duration: 0.5s;
  border-radius: 4px;
  color: #5433ff;
  color: white;
}
@media screen and (max-width: 400px) {
  .menu ul li {
    width: calc(100vw - 2rem);
  }
}
.menu svg {
  position: absolute;
  bottom: 0;
  height: 20%;
}

.main {
  background: white;
  border-radius: 100%/75px;
  margin-top: -3rem;
  color: black;
}
.main__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 875px) {
  .main__items {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 650px) {
  .main__items {
    flex-direction: column;
  }
}
.main__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
}
@media screen and (max-width: 875px) {
  .main__container:first-child, .main__container:nth-child(2) {
    flex-direction: column;
    width: 100% !important;
  }
}
@media screen and (max-width: 875px) {
  .main__container:first-child .main__section, .main__container:nth-child(2) .main__section {
    width: 100%;
    margin: 1rem 0;
  }
  .main__container:first-child .main__section img, .main__container:nth-child(2) .main__section img {
    align-self: center;
  }
}
.main__container:first-child {
  margin-top: 4rem;
}
.main__container:first-child .main__section {
  width: 50%;
}
@media screen and (max-width: 875px) {
  .main__container:first-child .main__section {
    width: 100%;
  }
}
.main__container:first-child p {
  font-size: 1.3rem;
  font-weight: 400;
}
.main__container:first-child img {
  width: 75%;
}
@media screen and (max-width: 415px) {
  .main__container:first-child img {
    width: 90%;
  }
}
@media screen and (max-width: 1216px) {
  .main__container:first-child {
    margin: 4rem 1rem 2rem;
  }
}
@media screen and (max-width: 650px) {
  .main__container:first-child {
    margin: 4rem 1rem 0;
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 650px) {
  .main__container:first-child {
    padding: 0 1rem;
  }
}
.main__container:nth-child(2) {
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}
.main__container:nth-child(2) .main__section {
  display: flex;
  flex-direction: column;
  width: calc(45% - 2rem);
  margin: 0 1rem;
}
.main__container:nth-child(2) .main__section img {
  width: 75%;
  margin: 1rem 0;
}
@media screen and (max-width: 875px) {
  .main__container:nth-child(2) .main__section img {
    width: 60%;
  }
}
@media screen and (max-width: 415px) {
  .main__container:nth-child(2) .main__section img {
    width: 75%;
  }
}
.main__container:nth-child(2) .main__section p {
  font-weight: 400;
  font-size: 1.4rem;
}
.main__container:nth-child(2) .main__section span {
  color: #999999;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 2rem 0;
  line-height: 1.75;
}
@media screen and (max-width: 920px) {
  .main__container:nth-child(2) .main__section span {
    margin: 1rem 0;
    line-height: 1.5;
  }
}
@media screen and (max-width: 875px) {
  .main__container:nth-child(2) .main__section {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .main__container:nth-child(2) .main__section {
    margin: 0;
  }
}
@media screen and (max-width: 650px) {
  .main__container:nth-child(2) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 650px) {
  .main__container:nth-child(2) {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 920px) {
  .main__container p {
    font-weight: 300 !important;
    font-size: 1.2rem !important;
  }
}
.main__section {
  display: flex;
  flex-direction: column;
}

.advantages {
  display: flex;
  flex-direction: row !important;
  justify-content: space-around;
  margin-top: 2rem !important;
}
.advantages .main__sections {
  display: flex;
  width: 50%;
}
.advantages .main__sections .main__section {
  align-items: center;
  text-align: center;
}
.advantages .main__sections .main__section img {
  width: 5rem !important;
  margin: 1rem 0;
  filter: brightness(1.1);
}
.advantages .main__sections .main__section p {
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 1rem;
}
.advantages .main__sections .main__section span {
  color: #999999;
  font-size: 0.95rem;
}
@media screen and (max-width: 650px) {
  .advantages .main__sections .main__section {
    flex-direction: column !important;
    align-items: center;
  }
}
@media screen and (max-width: 415px) {
  .advantages .main__sections .main__section {
    width: calc(100% - 1rem) !important;
  }
}
@media screen and (max-width: 650px) {
  .advantages .main__sections {
    justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 415px) {
  .advantages .main__sections {
    flex-direction: column;
  }
}
@media screen and (max-width: 875px) {
  .advantages {
    margin: 1rem !important;
  }
}

.lvl {
  display: flex;
  justify-content: center;
  width: 100%;
}
.lvl__content {
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .lvl__content {
    margin: auto 1rem;
  }
}
.lvl__items {
  flex-wrap: wrap;
  align-items: center !important;
}
.lvl__items p {
  width: 10%;
}
@media screen and (max-width: 875px) {
  .lvl__items p {
    width: 100%;
  }
}
@media screen and (max-width: 875px) {
  .lvl__items p:first-child {
    align-self: flex-start;
    color: #5433ff;
  }
}
.lvl__langs {
  width: 90%;
}
.lvl__langs div {
  width: 25%;
}
@media screen and (max-width: 875px) {
  .lvl__langs div {
    width: 20%;
  }
}
@media screen and (max-width: 550px) {
  .lvl__langs div {
    margin: 0 0.5rem;
  }
}
@media screen and (max-width: 875px) {
  .lvl__langs {
    width: 100%;
  }
}
.lvl__lang {
  align-items: center !important;
  flex-wrap: wrap;
  width: 22.5%;
}
.lvl__lang img {
  border: solid 1px #5433ff;
  border-radius: 50px !important;
  object-fit: contain;
  padding: 0 0.75rem;
  margin: 1rem;
  height: 6rem;
  width: 6rem;
}
@media screen and (max-width: 500px) {
  .lvl__lang img {
    height: 5rem;
    width: 5rem;
  }
}
@media screen and (max-width: 415px) {
  .lvl__lang img {
    height: 4rem;
    width: 4rem;
  }
}
@media screen and (max-width: 320px) {
  .lvl__lang img {
    height: 3.5rem;
    width: 3.5rem;
  }
}
@media screen and (max-width: 320px) {
  .lvl__lang img {
    margin: 0 0.5rem;
    height: 3.25rem;
    width: 3.25rem;
  }
}
.lvl__lang p {
  text-align: center;
  font-size: 1.2rem;
  width: auto;
}
@media screen and (max-width: 415px) {
  .lvl__lang p {
    font-size: 0.9rem !important;
  }
}
@media screen and (max-width: 350px) {
  .lvl__lang p {
    font-size: 0.8rem !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 1216px) {
  .lvl__lang {
    flex-direction: column;
  }
}
@media screen and (max-width: 350px) {
  .lvl__lang {
    margin: 0 1rem;
  }
}
@media screen and (max-width: 320px) {
  .lvl__lang {
    margin: 0;
  }
}
.lvl .column div p {
  flex-direction: column;
}
.lvl__section {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
.lvl__section p {
  display: flex;
  color: black;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.lvl__section p a {
  color: #20bdff !important;
}
.lvl__section p a:hover {
  text-decoration: underline;
}
.lvl__section img {
  border-radius: 4px;
  margin-top: 1rem;
}
.lvl__section .text-fixed {
  display: inline !important;
}
.lvl__section .linkbutton {
  display: flex;
  justify-content: center;
}
.lvl__section .linkbutton button {
  background: transparent;
  border: solid 2px #1F2029;
  border-radius: 15px;
  padding: 1rem 5rem;
  font-size: 1.1rem;
  outline: none;
  width: 20rem;
  margin: 1rem;
  cursor: pointer;
}
.lvl__section .linkbutton button:hover {
  background-color: #1F2029;
  animation-duration: 0.5s;
  color: white;
}
.lvl__section:first-child {
  padding: 0;
}
.lvl__section table {
  border-spacing: 0;
  color: black;
}
.lvl__section table caption .caption {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
}
.lvl__section table caption .caption:hover {
  transition: all 150ms ease-in-out;
}
.lvl__section table caption .caption:hover img {
  display: block;
}
.lvl__section table caption .caption img {
  filter: invert(1);
  margin: 0 0.35rem;
  display: none;
}
@media screen and (max-width: 400px) {
  .lvl__section table caption .caption {
    justify-content: center;
  }
}
.lvl__section table, .lvl__section table th, .lvl__section table td {
  border: solid 1px #1F2029;
}
.lvl__section table th, .lvl__section table td {
  padding: 0 0.75rem;
}
.lvl__section table th {
  font-weight: 400;
  padding: 0.75rem 0;
}
@media screen and (max-width: 441px) {
  .lvl__section table th:nth-child(2) {
    display: none;
  }
}
.lvl__section table td:nth-child(2) {
  font-style: italic;
}
@media screen and (max-width: 441px) {
  .lvl__section table td:nth-child(2) {
    display: none;
  }
}
.lvl__section table .show {
  display: block !important;
}
.lvl__section table .td td {
  padding: 0.75rem;
}
.lvl__section .details summary {
  display: flex;
}
.lvl__section .details summary p {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 441px) {
  .lvl__section .details summary p span {
    margin: 0.5rem 0;
  }
}
@media screen and (max-width: 441px) {
  .lvl__section .details summary p {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    color: #5433ff;
  }
}
.lvl__section .details p:nth-child(2) {
  margin: 0 0 0 5.125rem;
}
@media screen and (max-width: 441px) {
  .lvl__section .details p:nth-child(2) {
    margin: 0;
  }
}
.lvl__section:first-child span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1F2029;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  margin: 0 1rem;
  color: white;
}
@media screen and (max-width: 814px) {
  .lvl__section:nth-child(2) p {
    display: inline;
  }
}
@media screen and (max-width: 814px) {
  .lvl__section:nth-child(2) p {
    font-size: 1rem;
  }
}
.lvl__section:nth-child(2) span {
  color: #5433ff;
}
.lvl__section div {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 415px) {
  .lvl .fix_h3 {
    margin: 1rem !important;
  }
}
.lvl__row {
  display: flex;
  align-items: baseline;
}
.lvl__row .lvl__section {
  margin: 0 0.5rem;
}
.lvl__row .lvl__section p {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 814px) {
  .lvl__row .lvl__section p {
    line-height: 2;
  }
}
@media screen and (max-width: 550px) {
  .lvl__row .lvl__section p {
    line-height: 1.5;
    margin: 0.5rem 0;
  }
}
@media screen and (max-width: 814px) {
  .lvl__row .lvl__section img {
    width: 65%;
  }
}
@media screen and (max-width: 550px) {
  .lvl__row .lvl__section img {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .lvl__row .lvl__section img {
    width: 75%;
  }
}
@media screen and (max-width: 415px) {
  .lvl__row .lvl__section img {
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .lvl__row .lvl__section img {
    width: 85%;
  }
}
@media screen and (max-width: 350px) {
  .lvl__row .lvl__section img {
    width: 90%;
  }
}
@media screen and (max-width: 320px) {
  .lvl__row .lvl__section img {
    width: 95%;
  }
}
@media screen and (max-width: 300px) {
  .lvl__row .lvl__section img {
    width: 100%;
  }
}
@media screen and (max-width: 814px) {
  .lvl__row .lvl__section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 814px) {
  .lvl__row {
    flex-direction: column;
  }
}
.lvl__line {
  font-size: 1.5rem;
  margin: 0 1rem;
  color: #5433ff;
}
@media screen and (max-width: 441px) {
  .lvl__line {
    display: none;
  }
}
.lvl__text {
  font-size: 1.1rem;
  color: #5433ff;
}
@media screen and (max-width: 441px) {
  .lvl__text {
    font-size: 1.2rem;
  }
}

.footer {
  background: url("images/backgrounds/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  bottom: 0;
}
.footer__content {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
@media screen and (max-width: 814px) {
  .footer__content {
    flex-direction: column;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  width: 128px;
}
@media screen and (max-width: 814px) {
  .footer__logo {
    margin: 1rem;
  }
}
@media screen and (max-width: 650px) {
  .footer__items {
    flex-direction: column;
  }
  .footer__items .footer__containers div {
    display: block;
    margin: 1rem 1.5rem 0;
  }
  .footer__items .footer__container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer__items, .footer__containers {
  display: flex;
}
@media screen and (max-width: 814px) {
  .footer__items, .footer__containers {
    justify-content: center;
  }
}
.footer__container {
  margin: 0 1rem;
}
.footer__container p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1F2029;
  line-height: 1.25;
}
@media screen and (max-width: 300px) {
  .footer__container p {
    font-size: 1rem;
  }
}
.footer__container ul {
  list-style: none;
}
.footer__container ul a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 300px) {
  .footer__container ul {
    font-size: 0.9rem;
  }
}
.footer__container button {
  border: solid 2px #1F2029;
  background-color: white;
  outline: none;
  margin: 0.5rem;
}
.footer__container button:nth-last-child(2) {
  font-size: 1.2rem;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  align-self: center;
}
.footer__container button:hover {
  background-color: #1F2029;
  color: white;
  /*&::before {
    content: attr(data-title);
    background: #616161;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    padding: 6px 8px;
    text-transform: none;
    width: 100%;
  }*/
}
.footer__container .order {
  border-radius: 15px;
  height: 50px;
  width: calc(100% - 50px - 2rem);
  padding: 0 2rem;
}
@media screen and (max-width: 500px) {
  .footer__container {
    flex-direction: column;
    margin: 1rem 0.5rem 0 !important;
  }
}
.footer__contacts {
  display: flex;
}
.footer__contacts button {
  border-radius: 50px;
  height: 50px;
  width: 50px;
  margin: 0.5rem;
}
.footer__contacts button img {
  padding: 0.5rem;
  height: 50px;
  width: 50px;
  filter: invert(1);
}
.footer__contacts button:hover img {
  filter: invert(0);
}
@media screen and (max-width: 650px) {
  .footer__contacts {
    flex-direction: row-reverse;
    justify-content: center;
  }
}

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