@import "_reset.css";

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("./fonts/MuseoSansCyrl300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("./fonts/MuseoSansCyrl500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("./fonts/MuseoSansCyrl700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: 'MuseoSansCyrl', sans-serif;
  font-weight: 300;
  font-style: normal;
  overflow-x: hidden;
  background: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blockScroll {
  overflow-y: hidden;
}

.wrapper {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

header {
  position: relative;
  z-index: 200;
}

.header {
  margin: 56px 0 70px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__login {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__login:hover svg path {
  stroke: #FF9704;
}

.header__list li:last-child {
  display: none;
}

.header__burger {
  display: none;
}

.header__list {
  display: flex;
  gap: 24px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 124px;
}

/* Common */
.card {
  border-radius: 45px;
  border: 1px solid #161514;
  box-shadow: 0 5px 0 0 #000;
  padding: 56px 60px;
}

.title {
  font-size: 48px;
  font-weight: 400;
  line-height: 117%;
}

.subTitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 125%;
}

.text {
  font-size: 24px;
  font-weight: 300;
  line-height: 117%;
}

.text2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 125%;
}

.text-bold {
  font-weight: 600;
}

.link {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  color: #161514;
}

.link:hover {
  color: #FF9704;
}

/* section 1 */

.topBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.topBlock__left {
  width: 50%;
}

.topBlock__left h2 {
  color: #161514;
  font-size: 56px;
  font-weight: 400;
  line-height: 125%;
}

.topBlock__right {
  padding: 24px 0;
  width: 50%;
}

/* section 2 */

.block2 {
  padding: 60px;
  border-radius: 45px;
  background: #161514;
  box-shadow: 0 5px 0 0 #000;
  color: #FFF;
  display: flex;
  align-items: center;
}

.block2__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 55%;
}

.block2__right {
  width: 45%;
  position: relative;
}

.block2__right img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 410px;
}

.section-2-5 {

}

.universal-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.block-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
}

.block-text__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.block-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.block-image img {
  width: 80%;
}

/* section 3 */

.block3 {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.block3__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block3__head p {
  font-weight: 400;
}

.block3__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.block3__title {
  display: flex;
  align-items: center;
}

.block3__item {
  display: flex;
  justify-content: space-between;
}

.block3__img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 210px;
  flex: 1;

}

.blc3-item1 {
  background: #FF9704;
  color: #161514;
}

.blc3-item2 {
  background: #000;
  color: #FFF;
}

.blc3-item3 {
  background: #D1D1D0;
  color: #161514;
}

.blc3-item4 {
  background: #F5F5F5;
  color: #161514;
}

/* section 4 */

.block4 {
  background: #F5F5F5;
  color: #161514;
  display: flex;
  gap: 32px;
}

.block4__left {
  display: flex;
  align-items: center;
  flex: 1;
}

.block4__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.blc4-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* section 5 */

.block5 {
  background: #000;
  color: #FFF;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 50px;
}

.blc5-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.blc5-item-last {
  grid-column: span 2;
}

.blc5-divider {
  width: 1px;
  height: 100%;
  background: #FF9704;
}

/* section 6 */
/* section 7 */
.block7 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block7__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block7__top p {
  font-weight: 400;
}

.block7__bottom {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.blc7-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  border: 1px solid #161514;
}

.blc7-1 {
  background: #000;
  color: #FFF;
  border-color: #000;
}

.blc7-2 {
  background: #FFF;
  color: #161514;
  border-color: #161514;
}

.blc7-3 {
  background: #FF9704;
  color: #FFF;
  border-color: #FF9704;
}

.blc7-4 {
  background: #FFF;
  color: #161514;
  border-color: #FF9704;
}

/* section 8 */
.blc8-head {
  grid-column: span 2;
}

/* section 9 */
.block9 {
  background: #F5F5F5;
  color: #161514;
}

.footer {
  margin-top: 124px;
  border-radius: 45px 45px 0 0;
  background: #000;
  padding: 55px 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.70);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.white-text {
  color: rgba(255, 255, 255, 0.96);
}

.footer__col2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.70);
  transition: color .4s;
}

.footer__link:hover {
  color: #FF9704;
}

.footer__divider {
  height: 1px;
  width: 100%;
  background: #FFF;
}

.footer__bottom {
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}




@media (max-width: 1400px) {
  .header__burger {
    z-index: 3000;
    display: block;
    position: relative;
    height: 24px;
    width: 24px;
    background: url("/images/Menu.svg") center center no-repeat;
    cursor: pointer;
  }

  .toggleBurger {
    background: url("/images/CloseMenu.svg") center center no-repeat;
  }

  .header__menu {
    display: none;
    position: absolute;
    z-index: 550;
    flex-direction: column;
    justify-content: space-between;
    max-width: 320px;
    min-width: 250px;
    top: 50px;
    right: 0;

    border-radius: 24px 24px 24px 24px;
    box-shadow: 0 5px 0 0 #000;
    border: 1px solid #161514;
    padding: 32px 24px;
    background: #ffffff;
    align-items: center;
  }

  .menu-item p {
    display: none;
  }

  .header__list {
    flex-direction: column;
    gap: 24px;
  }

  .header__link {
    font-size: 16px;
  }

  .show {
    display: flex;
  }
}

@media (max-width: 1300px) {
  .block5 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 40px;
  }

  .blc5-item-last {
    grid-column: initial;
  }
}

@media (max-width: 1200px) {
  .topBlock__left h2 {
    font-size: 46px;
  }
}

@media (max-width: 1080px) {
  .universal-block {
    flex-direction: column;
    gap: 24px;
  }
  .block-text, .block-image {
    width: 100%;
  }
  .block-image img {
    width: 50%;
  }
  .block-text {
    order: 1;
    gap: 16px;
  }


  .card {
    padding: 40px;
  }

  .title {
    font-size: 40px;
    line-height: 125%;
  }

  .topBlock__left h2 {
    font-size: 40px;
  }

  .block2 {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .block2__left {
    order: 1;
    width: 100%;
  }

  .block2__right {
    order: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .block2__right img {
    position: static;
    transform: none;
    width: 70%;
  }

  .block3__img img {
    width: 120px;
  }

  .block5 {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    grid-gap: 32px;
  }

  .blc5-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .blc5-divider {
    width: 20%;
    min-width: 56px;
    height: 1px;
    background: #FF9704;
  }

  .blc8-head {
    grid-column: initial;
  }
}


@media (max-width: 768px) {
  .header {
    margin: 24px 0 40px 0;
  }

  .header img {
    height: 24px;
  }

  .header__right .header__login {
    display: none;
  }

  .header__list li:last-child {
    display: flex;
  }

  main {
    gap: 40px;
  }

  .card {
    padding: 24px;
    border-radius: 24px;
  }

  .title {
    font-size: 32px;
    line-height: 125%;
  }

  .subTitle {
    font-size: 24px;
    line-height: 117%;
  }

  .text {
    font-size: 18px;
    line-height: 150%;
  }

  .text2 {
    font-size: 24px;
    line-height: 117%;
  }

  .block-image img {
    width: 70%;
  }

  .topBlock {
    flex-direction: column;
    gap: 24px;
  }

  .topBlock__left, .topBlock__right {
    width: 100%;
  }

  .topBlock__right {
    padding: 0;
  }

  .block2__left {
    gap: 16px;
  }

  .block3 {
    gap: 24px;
  }

  .block3__container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-gap: 24px;
  }

  .block4 {
    flex-direction: column;
    gap: 24px;
  }

  .blc4-item img {
    max-width: 36px;
  }

  .block7 {
    gap: 24px;
  }

  .block7__top {
    gap: 8px;
  }

  .block7__bottom {
    gap: 16px;
  }

  .blc7-item {
    padding: 8px 16px;
  }

  .blc7-item img, svg {
    max-width: 20px;
  }

  .footer {
    margin-top: 40px;
    padding: 40px 20px 32px 20px;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
  }

  .footer__col, .footer__col2 {
    align-items: center;
    text-align: center;
  }

  .footer__bottom {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .topBlock__left h2 {
    font-size: 36px;
    line-height: 110%;
  }

  .block2__right img {
    width: 100%;
  }
}

@media (max-width: 500px) {

}
