@font-face {
	font-family: 'Bebas Neue';
	src: url('../fonts/BebasNeueCyrillic.woff2') format('woff2'), url('../fonts/BebasNeueCyrillic.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

/**Reset**/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
}

input,
textarea {
  outline: none;
}

textarea {
  resize: none;
}

:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
}
/**Reset**/

/**basic**/
* {
    box-sizing: border-box;
}

body {
  min-width: 320px;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 24px;
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
}



.main {
    margin-bottom: auto;
    padding-top: 100px;
    width: 100%;
}

.box-content__wrap {
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    max-width: 1552px;
}

.header .box-content__wrap,
.footer .box-content__wrap {
    display: flex;
    align-items: center;
    position: relative;
}

.header .box-content__wrap {
    height: 100%;
    justify-content: space-between;
}

.footer .box-content__wrap {
    padding: 32px 16px;
    flex-direction: column;
    gap: 24px;
}

.btn {
    padding: 0;
    width: 86px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", serif;
    line-height: 27px;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    background-color: #63C9D7;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 300ms;
}

a {
    text-decoration: none;
    transition: opacity 300ms;
}

a:hover {
    opacity: 0.5;
}

img {
    display: block;
}
/**basic**/


/**Header**/
.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #fff;
    border-bottom: 1px solid #D1D1D1;
}

.header-box {
    display: flex;
    align-items: center;
    gap: 16px;
}


.menu {
    padding: 60px 16px 16px;
    width: 100%;
    height: calc(100vh - 100px);
    position: fixed;
    top: 100px;
    left: 100%;
    font-family: "Inter", serif;
    line-height: 22px;
    font-size: 18px;
    font-weight: 700;
    background-color: #fff;
    transform: translateX(0);
    transition: transform 500ms;
}

.menu.open {
    transform: translateX(-100%);
}

.menu ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.menu ul a {
    color: #000;
}

.tools {
    margin-right: 68px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/**mob menu button**/
.btn-menu {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #63C9D7;
    border-radius: 8px;
}

.btn-menu__wrap {
    width: 20px;
    height: 15px;
    position: relative;
}

.btn-menu span {
    display: block;
    position: absolute;
    width: 50%;
    height: 1px;
    background: #1A1A1A;
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 250ms ease-in-out;
    -o-transition: 250ms ease-in-out;
    transition: 250ms ease-in-out;
}

.btn-menu span:first-child {
    top: 0;
    left: 0;
}

.btn-menu span:nth-child(2) {
    top: 0;
    left: 50%;
}

.btn-menu span:nth-child(3) {
    top: 7px;
    left: 0;
}

.btn-menu span:nth-child(4) {
    top: 7px;
    left: 50%;
}

.btn-menu span:nth-child(5) {
    bottom: 0;
    left: 0;
}

.btn-menu span:nth-child(6) {
    bottom: 0;
    left: 50%;
}

.btn-menu--open span:first-child,
.btn-menu--open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-menu--open span:nth-child(2),
.btn-menu--open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn-menu--open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

.btn-menu--open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

.btn-menu--open span:first-child,
.btn-menu--open span:nth-child(2) {
    top: 3px;
}

.btn-menu--open span:first-child {
    left: 2px;
}
.btn-menu--open span:nth-child(2) {
    left: calc(50% - 1px);
}

.btn-menu--open span:nth-child(5),
.btn-menu--open span:nth-child(6) {
    bottom: 4px;
}

.btn-menu--open span:nth-child(5) {
    left: 2px;
}

.btn-menu--open span:nth-child(6) {
    left: calc(50% - 1px);
}
/**mob menu button**/
/**Header**/


.box-content {
    padding-top: 94px;
    width: 100%;
    position: relative;
}

.box-content__bg {
    width: 1262px;
    height: 1262px;
    position: absolute;
    top: 50%;
    left: 19%;
    transform: translateY(-35%);
}

.box-content__bg img {
    width: 100%;
    height: auto;
}

.desc,
.box-content h1 {
    padding: 0 15px;
    position: relative;
}

.box-content h1 {
    margin: 0 auto;
    max-width: 324px;
    line-height: 48px;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    word-break: break-all;
    z-index: 1;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 800ms 300ms, opacity 800ms 300ms;
}

.box-content h1.animation {
    transform: translateX(0);
    opacity: 1;
}

.box-content h1 span {
    color: rgba(26, 26, 26, 0.7);
    word-break: normal;
}

.desc {
    margin-top: 20px;
    font-family: "Inter", serif;
    line-height: 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 800ms 300ms, opacity 800ms 300ms;
}

.desc.animation {
    transform: translateX(0);
    opacity: 1;
}

.box-content__media {
    width: 100%;
    height: 116.667vw;
    max-height: 460px;
    position: relative;
}

.box-content__media-car {
    width: 100%;
    height: 83.333vw;
    max-height: 410px;
    position: absolute;
    top: 19.444vw;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 1200ms 600ms;
}

.box-content__media.animation .box-content__media-car {
    opacity: 1;
    transform: scale(1);
}

.box-content__media-bg {
    width: 100%;
    height: 488px;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 2800ms;
}

.box-content__media.animation .box-content__media-bg {
    opacity: 1;
}

.box-content__media-car img {
    width: auto;
    height: 100%;
    transform: translateX(-8.333vw);
}

.box-content__media-bg img {
    width: auto;
    height: 100%;
}

.box-content__list {
    margin: 0 auto;
    padding: 32px 16px;
    width: 100%;
    max-width: 1552px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    background-color: rgba(99, 201, 215, 0.1);
}

.box-content__list-bg {
    width: 602px;
    height: 602px;
    position: absolute;
    left: -250px;
    bottom: -120px;
}

.box-content__list-bg img {
    width: 100%;
    height: auto;
}

.box-content__list-item {
    width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 800ms;
}

.box-content__list-item.animation {
    opacity: 1;
}

.box-content__list-icn {
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(99, 201, 215, 0.3);
    border-radius: 50%;
}

.box-content__list-icn img {
    width: 32px;
    height: 32px;
}

.box-content__list-title {
    margin-bottom: 12px;
    line-height: 32px;
    font-size: 32px;
}

.box-content__list p {
    font-family: 'Roboto', sans-serif;
}

.box-work {
    margin: 120px 0 93px;
    position: relative;
}

.box-work__bg {
    width: 1056px;
    height: 1056px;
    position: absolute;
    bottom: -148%;
    left: 60%;
}

.box-work__bg img {
    width: 100%;
    height: auto;
}

.box-work .box-content__wrap {
    display: flex;
    flex-direction: column;
}

.box-work h3 {
    padding-bottom: 16px;
    line-height: 48px;
    font-size: 48px;
    border-bottom: 1px solid #F1F1F1;
    opacity: 0;
    transition: opacity 1200ms;
}

.box-work h3.animation {
    opacity: 1;
}

.box-work__list {
    margin: 24px 0 0 auto;
    width: 100%;
    max-width: 857px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.box-work__list-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 800ms;
}

.box-work__list-item:nth-child(odd) {
    transform: translateX(100%);
}

.box-work__list-item.animation {
    transform: translateX(0);
    opacity: 1;
}

.box-work__list-title {
    margin-bottom: 12px;
    line-height: 32px;
    font-size: 32px;
}

.box-work__list-item p {
    font-family: 'Roboto', sans-serif;
}

.box-work__list-item span {
    line-height: 48px;
    font-size: 48px;
    color: rgba(26, 26, 26, 0.5);
}



/**footer**/
.footer {
    width: 100%;
    position: relative;
    background-color: #1A1A1A;
}

.footer-nav {
    width: 100%;
    font-family: "Inter", serif;
    line-height: 22px;
    font-size: 18px;
    font-weight: 700;
}

.footer-nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-nav ul a {
    color: #fff;
}
/**footer**/




/**media**/
@media (min-width: 410px) {
    .box-content h1 {
        max-width: 100%;
        word-break: normal;
    }
}


@media (min-width: 500px) {
    .box-content__media-car {
        top: 3vw;
    }

    .box-content__media-car img {
        transform: translateX(0);
    }
}


@media (min-width: 640px) {
    .btn-menu {
        right: 32px;
    }

    .box-content__wrap {
        padding: 0 32px;
    }

    .desc, .box-content h1 {
        padding: 0 32px;
    }

    .desc {
        line-height: 30px;
        font-size: 24px;
    }

    .box-content__media {
        height: 71.875vw;
        max-height: 554px;
    }

    .box-content__media-car {
        height: 64.063vw;
        max-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-content__list {
        padding: 32px;
    }

    .footer .box-content__wrap {
        padding: 32px;
    }
}


@media (min-width: 680px) {
    .header-box {
        gap: 48px;
    }

    .tools {
        margin: 0;
    }

    .btn-menu {
        display: none;
    }

    .menu {
        padding: 0;
        height: auto;
        position: static;
        transition: none;
    }

    .menu ul {
        flex-direction: row;
        gap: 16px;
    }

    .box-content__media-bg {
        bottom: auto;
        top: -30px;
    }
}



@media (min-width: 768px) {
    .menu ul {
        gap: 48px;
    }

    .box-content__list {
        flex-direction: row;
        gap: 0;
    }

    .box-content__list-bg {
        left: -306px;
        bottom: -610px;
    }

    .box-content__list-item {
        padding: 0 12px;
        border-left: 1px solid #D1D1D1;
    }

    .box-content__list-item:nth-child(2) {
        transition-delay: 400ms;
    }

    .box-content__list-item:nth-child(3) {
        transition-delay: 800ms;
    }

    .box-content__list-item:nth-child(4) {
        transition-delay: 1200ms;
    }

    .box-content__list-item:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .box-content__list-item:last-child {
        padding-right: 0;
    }

    .box-work {
        margin: 120px 0 220px;
    }

    .footer .box-content__wrap {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-nav {
        margin-left: auto;
        width: auto;
    }

    .footer-nav ul {
        flex-direction: row;
    }
}



@media (min-width: 1024px) {
    .box-content__media {
        max-height: 525px;
    }

    .box-content__media-bg {
        top: 0;
    }

    .box-content__media-car {
        height: 48.828vw;
        max-height: 652px;
    }
}



@media (min-width: 1185px) {
    .box-content__media-car {
        top: -30px;
    }
}



@media (min-width: 1600px) {
    .box-content__media-bg img {
        width: 100%;
        height: auto;
    }

    .box-work__bg {
        left: 70%;
    }
}
/**media**/