@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-V.ttf);
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: Inter;
    color: black;
    background: #F7F7FD;
    min-width: 296px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1920px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter;
}

input, button {
    outline: none;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.words-container {
    display: inline-block;
    position: relative;
    width: 127px;
}

.word {
  position: absolute;
  top: 0;
  width: 127px;
  opacity: 0;
  margin-top: -25px;
}

.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes show {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Шапка */

header {
    width: 100%;
    height: 93px;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    flex: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95.5%;
    max-width: 1305px;
    height: 49px;
}

.logo-and-title-company {
    width: 140px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 36px;
}

.title-company {
    font-weight: 600;
    font-size: 16px;
}

.navigation {
    width: 73.18%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 332px;
    height: 24px;
    list-style-type: none;
}

.navigation-btns button, .navigation-btns a {
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    font-family: Inter;
    transition: color .2s ease;
}

.navigation-btns button:hover, .navigation-btns a:hover {
    color: #605dec;
}

.acc-and-create-shop-btns {
    display: flex;
    width: 415px;
    justify-content: space-between;
}

.acc-btn {
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 192px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    transition: filter .2s ease;
}

.acc-btn .btn-icon {
    width: 14px;
    height: 16.8px;
    margin-right: 8px;
}

.create-shop-btn {
    width: 192px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #605dec;
    font-weight: 500;
    font-size: 16px;
    color: white;
    transition: background .2s ease;
}

.create-shop-btn .btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.acc-btn:hover {
    filter: invert(20%);
}

.create-shop-btn:hover {
    background: #706eeb;
}

.mobile-navigation-btn {
    font-size: 38px;
    display: none;
    color: black;
}

.company-info {
    width: 100%;
    height: 762px;
    background: url('../img/images/minecraftHuman.png');
    background-repeat: no-repeat;
    background-color: #605dec;
    background-position: 75.1% 58px;
    background-size: 944px 1210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 200px;
}

.contacts-block {
    width: 100%;
    height: 762px;
    background-repeat: no-repeat;
    background-color: #605dec;
    background-position: 75.1% 58px;
    background-size: 944px 1210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 200px;
}

.company-info-container {
    max-width: 1305px;
    width: 95.5%;
    display: flex;
    margin-top: 140px;
    animation: show .5s ease;
}

.company-info-content {
    height: 433px;
    width: 555px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-slogan {
    font-weight: 700;
    font-size: 48px;
    line-height: 106%;
    color: #fff;
}

.company-description {
    font-weight: 400;
    font-size: 22px;
    line-height: 155%;
    color: #fff;
}

.company-btns, .document-btns {
    display: flex;
    justify-content: space-between;
    width: 404px;
}

.company-create-shop-btn {
    border-radius: 10px;
    width: 192px;
    height: 54px;
    background: #fff;
    font-weight: 500;
    font-size: 16px;
    color: #605dec;
    transition: background .2s ease;
}

.company-create-shop-btn:hover {
    background: #ededff;
}

.company-more-btn {
    border: 1px solid #fff;
    border-radius: 10px;
    width: 192px;
    height: 54px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: border .2s ease, color .2s ease;
}

.company-more-btn:hover {
    color: #ededff;
    border: 1px solid #ededff;
}

.document-btn {
    border: 1px solid #fff;
    border-radius: 10px;
    width: 192px;
    height: 100px;
    font-weight: 500;
    padding: 5px;
    margin: 5px;
    font-size: 16px;
    color: #fff;
    transition: border .2s ease, color .2s ease;
}

.document-btn:hover {
    color: #ededff;
    border: 1px solid #ededff;
}



.list-statistics {
    max-width: 1305px;
    width: 95.5%;
    height: 223px;
    margin-top: 77px;
    display: flex;
    justify-content: space-between;
    animation: show .5s ease;
}

.item-statistic {
    width: 32.49%;
    border: 0.95px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    height: 223px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-count {
    margin-top: 73px;
    font-weight: 600;
    font-size: 65px;
    color: #605dec;
}

.item-name {
    font-weight: 500;
    font-size: 22px;
    color: #595860;
}

/* Слайдер */

.work-us {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.title-work-us {
    font-weight: 600;
    font-size: 40px;
    color: #202020;
    text-align: center;
    animation: show .5s ease;
}

.container-slider-work-us {
    width: 100%;
    margin-top: 66px;
    height: 223px;
    overflow: hidden;
    animation: show .5s ease;
}

.slider-work-us {
    height: 223px;
    display: flex;
    transition: transform 70s linear;
}

.elem-slider {
    height: 223px;
    width: 424px;
    min-width: 424px;
    border: 0.95px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding-top: 34px;
    padding-left: 42px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 16px;
}

.top-elem-slider {
    display: flex;
}

.logo-server {
    width: 87px;
    height: 87px;
    margin-right: 32px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 13px;
}

.description-server {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 102px;
}

.title-server {
    font-weight: 600;
    font-size: 24px;
    color: #42526d;
}

.count-sales, .date-create {
    font-weight: 400;
    font-size: 20px;
    color: #888593;
}

.bottom-elem-slider {
    font-weight: 500;
    font-size: 20px;
    color: #42526d;
}

/* Подвал */

footer {
    width: 100%;
    height: 297px;
    display: flex;
    justify-content: center;
    background: #f2f2f7;
    margin-top: 62px;
}

.footer {
    max-width: 1305px;
    width: 95.5%;
    margin-top: 45px;
    display: flex;
    flex-direction: column;
}

.footer-top {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-networks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 114px;
}

.discord {
    width: 43px;
    height: 33px;
    transition: filter .2s ease;
}

.vk {
    width: 43px;
    height: 27px;
    transition: filter .2s ease;
}

.discord:hover, .vk:hover {
    filter: brightness(120%);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
    margin-top: 58px;
}

.footer-navigation {
    display: flex;
    width: 490px;
    height: 100px;
    justify-content: space-between;
}

.footer-navigation-btns, .footer-legal-references {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
    padding: 0;
    margin: 0;
}

.footer-navigation-btns *, .footer-legal-references * {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    transition: color .2s ease;
}

.footer-navigation button:hover, .footer-navigation a:hover {
    color: #605dec;
}

.individual-enterprise {
    font-weight: 500;
    font-size: 16px;
    color: #888593;
    text-align: right;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media(max-width: 1280px) {
.navigation {
    width: 83%;
}

.navigation-btns {
    width: 312px;
}
}

@media(max-width: 1024px) {
.mobile-navigation-btn {
    display: block;
    z-index: 10;
}
header {
    height: 72px;
    padding: 0 22px;
}
.header {
    width: 100%;
}
.navigation {
    position: absolute;
    right: 0;
    top: 0;
    flex-direction: column;
    align-items: center;
    width: 210px;
    background: #ffffff;
    padding-bottom: 25px;
    padding-top: 48px;
    margin-top: -286px;
}

.mobile-navigation {
    transition: margin-top .3s ease;
}

.navigation-btns {
    flex-direction: column;
    align-items: center;
    width: 200px;
    padding: 0;
    height: 90px;
}
.acc-and-create-shop-btns {
    flex-direction: column;
    align-items: center;
    width: 200px;
}
.acc-btn {
    border-radius: 8px;
    width: 153.6px;
    height: 39.2px;
    font-size: 12.8px;
}

.acc-btn .btn-icon {
    width: 11.2px;
    height: 13.44px;
    margin-right: 6.4px;
}

.create-shop-btn {
    border-radius: 8px;
    width: 153.6px;
    height: 39.2px;
    font-size: 12.8px;
    margin-top: 12px;
}

.create-shop-btn .btn-icon {
    width: 15.2px;
    height: 15.2px;
    margin-right: 4px;
}

.company-info {
    height: 682px;
    background-position: 97% 270px;
    background-size: 546.12px 700px;
    margin-bottom: 150px;
    padding: 0 22px;
}

.contacts-block {
    height: 682px;
    background-position: 97% 270px;
    background-size: 546.12px 700px;
    margin-bottom: 150px;
    padding: 0 22px;
}

.company-info-container {
    width: 100%;
    margin-top: 90px;
}

.list-statistics {
    width: 100%;
    height: 165px;
    margin-top: 74px;
}

.item-statistic {
    border-radius: 12.5px;
    height: 165px;
}

.item-count {
    margin-top: 40px;
    font-size: 48px;
}

.item-name {
    font-size: 18px;
}

footer {
    padding: 0 22px;
    height: 260px;
}

.footer {
    width: 100%;
    margin-top: 38px;
}

.footer-bottom {
    margin-top: 45px;
}

.footer-navigation {
    width: 380px;
    height: 90px;
}

.footer-navigation-btns, .footer-legal-references {
    height: 90px;
}

.footer-navigation-btns *, .footer-legal-references * {
    font-size: 14px;
}

.individual-enterprise {
    font-size: 13.5px;
}
}

@media(max-width: 768px) {
.company-info {
    height: 540px;
    background-position: 97% 170px;
    background-size: 468.1px 600px;
    margin-bottom: 100px;
}

.contacts-block {
    height: 540px;
    background-position: 97% 170px;
    background-size: 468.1px 600px;
    margin-bottom: 100px;
}

.company-info-container {
    margin-top: 68px;
}

.list-statistics {
    height: 130px;
    margin-top: 55px;
}

.item-statistic {
    border-radius: 11px;
    height: 130px;
}

.item-count {
    margin-top: 30px;
    font-size: 35px;
}

.item-name {
    font-size: 13px;
}

.company-info-content {
    height: 350px;
    width: 430px;
}

.company-slogan {
    font-size: 38.4px;
    width: 350px;
}

.company-description {
    font-size: 17.6px;
}

.company-btns, .document-btns {
    width: 323.2px;
}

.company-create-shop-btn {
    border-radius: 8px;
    width: 153.6px;
    height: 43.2px;
    font-size: 12.8px;
}

.company-more-btn {
    border-radius: 8px;
    width: 153.6px;
    height: 43.2px;
    font-size: 12.8px;
}

.word {
  width: 112px;
  margin-top: -20px;
}

footer {
    height: 330px;
}

.footer {
    margin-top: 30px;
}

.footer-bottom {
    margin-top: 40px;
    height: 190px;
    flex-direction: column;
    align-items: flex-start;
}

.footer-navigation {
    width: 380px;
    height: 90px;
}

.footer-navigation-btns, .footer-legal-references {
    height: 90px;
}

.footer-navigation-btns *, .footer-legal-references * {
    font-size: 14px;
}

.individual-enterprise {
    text-align: start;
    height: 75px;
}
}

@media (max-width: 576px) {
.company-info {
    height: 550px;
    background-position: center 310px;
    background-size: 312.07px 400px;
    margin-bottom: 170px;
}

.company-info-container {
    margin-top: 40px;
}

.list-statistics {
    height: 260px;
    min-height: 260px;
    margin-top: 112px;
    flex-direction: column;
}

.item-statistic {
    border-radius: 9px;
    height: 80px;
    width: 100%;
}

.item-count {
    margin-top: 14px;
    font-size: 31px;
}

.item-name {
    font-size: 12px;
}

.company-info-content {
    height: 265px;
    width: 100%;
}

.company-slogan {
    font-size: 32px;
    width: 100%;
}

.company-description {
    font-size: 14px;
}

.company-btns, .document-btns {
    width: 100%;
}

.company-create-shop-btn {
    border-radius: 7px;
    width: 48%;
    height: 40px;
    font-size: 11.5px;
}

.company-more-btn {
    border-radius: 7px;
    width: 48%;
    height: 40px;
    font-size: 11.5px;
}

.word {
  width: 90px;
  margin-top: -16px;
}

footer {
    height: 265px;
    margin-top: 45px;
}

.footer {
    margin-top: 20px;
}

.social-networks {
    width: 85px;
}

.discord {
    width: 35px;
    height: 26.86px;
}

.vk {
    width: 35px;
    height: 21.98px;
}

.footer-bottom {
    margin-top: 25px;
    height: 157px;
}

.footer-navigation {
    width: 100%;
    height: 75px;
}

.footer-navigation-btns, .footer-legal-references {
    height: 75px;
}

.footer-legal-references {
    align-items: flex-end;
}

.footer-navigation-btns *, .footer-legal-references * {
    font-size: 11.2px;
}

.individual-enterprise {
    width: 100%;
    font-size: 11.2px;
    text-align: center;
    height: 60px;
}

.title-work-us {
    font-size: 30px;
}

.container-slider-work-us {
    margin-top: 40px;
}
}