@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  min-width: 320px;
  overflow-x: hidden;
}

body {
  line-height: 1;
  font-family: "NotoSansJP", sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "NotoSansJP", sans-serif;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
  height: 100%;
}

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

/*--------------------*/
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  background-color: #ecebe9;
}

.container {
  min-width: 320px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.main {
  width: 100wv;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main__img {
  height: 300px;
  min-width: 365px;
}
.main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main__langs {
  display: flex;
  gap: 8px;
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  transform: translateX(-50%);
}
.main__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 72px;
  height: 35px;
  border-radius: 35px;
  border: 1px solid #cccbc7;
  font-size: 12px;
  font-weight: 400;
  line-height: 0;
  text-transform: uppercase;
  color: #101010;
}
.main__lang svg {
  width: 20px;
  height: 20px;
}