@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  outline: none;
  border: none;
  font-family: "Barlow", sans-serif;
}

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

body {
  background: #fffbf8;
}

.df {
  display: flex;
}

.dg {
  display: grid;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0 33px;
}

button,
a {
  cursor: pointer;
}

/*::-webkit-scrollbar {
    width: 0;
}*/
/*header */
.header {
  align-items: center;
  width: 100%;
}

.header__buy-now-wrap {
  grid-column: 11/13;
  display: flex;
  justify-content: end;
}

.header__buy-now {
  background: #ff7d1e;
  border-radius: 999px;
  padding: 13px 29px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
}

.header_list {
  grid-column: 3/11;
  display: flex;
  list-style: none;
}

.header_list li a {
  padding: 0 32px 0 0;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 147%;
  color: #212433;
}

.header-mob {
  width: 100%;
}

.header-container {
  width: 100%;
  display: grid;
  padding: 16px 0;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 0.3s;
}

.header--sticky {
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-me__bttn-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0 33px;
  margin: 26px 0 0 0;
}

.about-me__bttn {
  grid-column: 1/3;
  background: #ff7d1e;
  box-shadow: 0px 4px 17px rgba(255, 125, 30, 0.39);
  border-radius: 999px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150.5%;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  color: #ffffff;
}

.header-mob {
  display: none;
  grid-template-columns: repeat(2, fit-content(100%));
  justify-content: space-between;
  border-bottom: 1px solid #c60606;
}

.bar,
.bar:after,
.bar:before {
  width: 30px;
  height: 2px;
  border-radius: 2px;
}

.bar {
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  background: #c60606;
  transition: all 0ms 300ms;
  right: 10px;
}

.bar.animate {
  background: rgba(255, 255, 255, 0);
}

.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #c60606;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: #c60606;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.open__nav {
  transform: translateX(0%) !important;
  transition: all 0.3s;
}

.how-to-buy__video-wrap {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 285px;
  width: 512px;
}

@media (max-width: 1024px) {
  .header-mob {
    width: 100%;
    position: fixed;
    top: 0;
    height: 50px;
    background: #ffffff;
    display: flex;
    justify-content: flex-end;
    z-index: 60;
  }

  .header {
    width: 100%;
    min-height: 100vh;
  }

  .header-container {
    position: fixed;
    z-index: 9;
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 60px 0 0 0;
    transform: translateX(-100%);
  }

  .header {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
  }

  .header_list {
    display: block;
    grid-column: 1;
  }

  .header__buy-now-wrap {
    grid-column: 1;
    display: flex;
    justify-content: end;
    display: none;
  }

  .header_list li a {
    padding: 0 32px 0 0;
    font-style: normal;
    font-weight: normal;
    font-size: 25px;
    line-height: 147%;
    color: #2c2b2b;
    padding: 5px 0 0 10px;
  }
}
/*section*/
@media (min-width: 575.98px) {
  .container {
    margin: auto;
    padding: 0;
  }
}
@media (min-width: 768.98px) {
  .container {
    max-width: 1120px;
  }
}
@media (min-width: 991.98px) {
  .container {
    max-width: 1120px;
  }
}
@media (min-width: 1199.98px) {
  .container {
    max-width: 1120px;
  }
}
.header__buy-now,
.about-me__bttn,
.how-to-buy__buy-nowr,
.footer__contact-link {
  transition: all 0.3s;
}

.list-item-copy__bttn-copy {
  transition: all 0.3s;
}

.list-item-copy__bttn-copy:hover {
  transition: all 0.3s;
  background: #ff7d1e;
  color: white;
}

.header__buy-now:hover,
.about-me__bttn:hover,
.how-to-buy__buy-now:hover,
.footer__contact-link:hover,
.header_list li a {
  transition: all 0.3s;
  transform: translateY(-5px);
}

.about-me {
  padding: 100px 0 0 0;
}

.header_list li a:hover {
  color: #676767;
}

.root {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 0 100px 0;
}

.bottom-section__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.bottom-section__img {
  position: absolute;
  top: 200px;
  right: 50%;
  transform: translateX(50%);
}

.bottom-section {
  position: relative;
  overflow: hidden;
}

.top-section__background-layer {
  width: 100%;
  height: 100%;
}

.top-section {
  position: relative;
  overflow: hidden;
}

.middle-section {
  position: relative;
  overflow: hidden;
}

.bottom-middle-section {
  position: relative;
  overflow: hidden;
}

.bottom-section__layer {
  width: 100%;
  height: 100%;
}

.middle-section__layer {
  width: 100%;
  height: 100%;
}

.bottom-middle-section__layer {
  width: 100%;
  height: 100%;
}

.top-section__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.bottom-middle-section__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.middle-section__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.middle-section__img-1 {
  position: absolute;
  top: 50px;
  right: -180px;
  z-index: -1;
}

.middle-section__img-2 {
  transform: rotate(120deg);
  position: absolute;
  top: 50px;
  left: -150px;
  z-index: -1;
}

.middle-section__img-3 {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}

.top-section-img-right {
  position: absolute;
  top: 350px;
  right: -162px;
  z-index: -1;
}

.top-setion-circle-1 {
  position: absolute;
  background: #bd3232;
  border-radius: 100%;
  top: 96px;
  left: 40vw;
  width: 4px;
  height: 4px;
}

.top-setion-circle-2 {
  position: absolute;
  opacity: 0.5;
  border: 3px solid #ffc46c;
  border-radius: 100%;
  top: 193px;
  left: 65vw;
  width: 22px;
  height: 22px;
}

.top-section-img-left {
  position: absolute;
  top: -50px;
  left: -70px;
  z-index: -1;
}

.top-setion-circle-3 {
  position: absolute;
  background: #bd3232;
  border-radius: 100%;
  top: 196px;
  right: 20vw;
  width: 8px;
  height: 8px;
}

.top-setion-circle-4 {
  position: absolute;
  opacity: 0.5;
  border: 3px solid #e23b3b;
  border-radius: 100%;
  top: 380px;
  left: 49vw;
  width: 22px;
  height: 22px;
}

.top-setion-circle-5 {
  position: absolute;
  opacity: 0.5;
  border: 3px solid #ffc46c;
  border-radius: 100%;
  top: 490px;
  right: 20vw;
  width: 38px;
  height: 38px;
}

.top-section-img-long-wave {
  position: absolute;
  top: 656px;
  right: -10px;
  z-index: -1;
}

.bottom-middle-section__circle-1 {
  position: absolute;
  background: #bd3232;
  border-radius: 100%;
  top: 150px;
  left: 25vw;
  width: 8px;
  height: 8px;
}

.bottom-middle-section__circle-2 {
  position: absolute;
  opacity: 0.5;
  border: 3px solid #ffc46c;
  border-radius: 100%;
  top: 225px;
  left: 22vw;
  width: 22px;
  height: 22px;
}

.bottom-middle-section__elem-1 {
  position: absolute;
  opacity: 0.5;
  -webkit-clip-path: polygon(51% 20%, 0% 100%, 100% 100%);
          clip-path: polygon(51% 20%, 0% 100%, 100% 100%);
  top: 124px;
  right: 23vw;
  width: 33px;
  height: 33px;
  background: #ffc46c;
  transform: rotate(-14.57deg);
}

.bottom-middle-section__elem-2 {
  position: absolute;
  top: 740px;
  left: -10px;
  z-index: -1;
}

.bottom-middle-section__elem-3 {
  position: absolute;
  top: 40px;
  right: -10px;
  z-index: -1;
}

p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #343434;
}

h3 {
  font-family: Barlow;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #1b1b20;
  opacity: 0.6;
}

h1 {
  font-family: Barlow;
  font-style: normal;
  font-weight: 900;
  font-size: 53px;
  line-height: 64px;
  color: #1b1b20;
}

h2 {
  font-family: Barlow;
  font-style: normal;
  font-weight: 900;
  font-size: 38px;
  line-height: 46px;
  color: #1b1b20;
}

.about-me__right {
  grid-column: 1/7;
}
.about-me__left {
  grid-column: 7/13;
  align-self: center;
}

.about-me__sub-text {
  margin: 10px 0 0 0;
  max-width: 480px;
}

.greetings {
  padding: 61px 0 0 0;
}
.greetings__left {
  grid-column: 1/7;
  align-self: center;
}
.greetings__board {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 32px rgba(224, 224, 224, 0.39);
  border-radius: 12px;
  padding: 16px 23px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 36px 0 0 0;
}
.greetings__right {
  grid-column: 7/13;
  display: flex;
  justify-content: center;
}

.greetings__header {
  padding: 0 0 24px 0;
}

.greetings__subtext--top {
  padding: 0 0 16px 0;
}

.meet {
  padding: 72px 0 0 0;
}
.meet__header {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
}
.meet .meet__subtext {
  text-align: center;
  margin: 45px 0 0 0;
}
.meet__header-img {
  margin: 0 0 13px 0;
}
.meet__cards {
  margin: 76px 0 0 0;
}
.meet__item-card {
  display: grid;
  grid-template-columns: 53px 1fr;
  border-radius: 12px;
}
.meet__item-card--red {
  grid-column: 1/5;
  background: #d38d8d;
}
.meet__item-card--orange {
  grid-column: 5/9;
  background: #d3aa8d;
}
.meet__item-card--violet {
  grid-column: 9/13;
  background: #b2a7c1;
}

.item-card__img {
  grid-column: 1/3;
  justify-self: end;
  grid-row: 1/3;
  align-self: start;
  margin: 0 0 18px 0;
}

.item-card__description {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  background: #bd3232;
  border-radius: 12px 0px 0px 0px;
  padding: 30px;
}
.item-card__haeder {
  font-family: Barlow;
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.item-card__sub-header {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}

.goals {
  padding: 126px 0 0 0;
}
.goals__left {
  grid-column: 1/7;
  display: grid;
}
.goals__right {
  grid-column: 7/13;
}
.goals__header {
  margin: 0 0 24px 0;
}

.goals__img,
.goals__bg_img {
  grid-row: 1;
  grid-column: 1;
  place-self: center;
}

.check-header {
  grid-row: 1;
  grid-column: 1/9;
}

.check {
  padding: 157px 0 0 0;
}
.check__power-by-unity {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 1;
  grid-column: 9/13;
  background: #ffffff;
  box-shadow: 0px 4px 14px rgba(231, 231, 231, 0.66);
  border-radius: 12px;
  justify-self: end;
  padding: 17px;
  margin: 0 30px 0 0;
}
.check .title {
  font-size: 16px;
  line-height: 19px;
  margin: 0 24px 0 0;
}

.check__cards {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 22px 33px;
  margin: 33px 0 65px 0;
  min-height: 268px;
}

.check-item-card {
  background: #ffffff;
  box-shadow: 0px 4px 14px rgba(231, 231, 231, 0.66);
  border-radius: 12px;
  padding: 30px;
}
.check-item-card__img {
  margin: 0 0 18px 0;
}
.check-item-card__text {
  font-family: "Barlow", sans-serif;
}

.roadmap {
  padding: 90px 0 30px 0;
}
.roadmap__subheader {
  text-align: center;
  grid-column: 1/13;
}
.roadmap__header {
  text-align: center;
  grid-column: 1/13;
}
.roadmap__cards {
  display: grid;
  grid-template-columns: 1fr 78px 1fr;
  grid-column: 1/13;
  margin: 52px 0 0 0;
  position: relative;
}
.roadmap__cards::after {
  content: "";
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 237, 224, 0) 0%, #ff8f3d 49.65%, rgba(255, 237, 224, 0) 100%);
  z-index: -1;
  top: 0;
  width: 4px;
}
.roadmap__item-card {
  display: grid;
  grid-template-columns: repeat(2, fit-content(100%));
  background: #ffffff;
  box-shadow: 0px 4px 14px rgba(231, 231, 231, 0.25);
  border-radius: 8px;
  padding: 24px;
  position: relative;
}
.roadmap__item-card--left {
  grid-column: 1;
}
.roadmap__item-card--left:after {
  position: absolute;
  content: "";
  left: 100%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 46% 48%);
          clip-path: polygon(0 0, 0% 100%, 46% 48%);
  height: 30px;
  width: 20px;
  top: 30px;
  background: #fff;
  z-index: 1;
}
.roadmap__item-card--left:before {
  position: absolute;
  content: "";
  left: calc(100% + 27px);
  height: 24px;
  width: 24px;
  top: 30px;
  border-radius: 50%;
  background: #ff7d1e;
  border: 3px solid #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.25);
}
.roadmap__item-card--right:after {
  position: absolute;
  content: "";
  right: 100%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 46% 48%);
          clip-path: polygon(0 0, 0% 100%, 46% 48%);
  transform: rotate(180deg);
  height: 30px;
  width: 20px;
  top: 30px;
  background: #fff;
  z-index: 1;
}
.roadmap__item-card--right:before {
  position: absolute;
  content: "";
  right: calc(100% + 27px);
  height: 24px;
  width: 24px;
  top: 30px;
  border-radius: 50%;
  background: #ff7d1e;
  border: 3px solid #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.25);
}
.roadmap__item-card-header {
  grid-column: 1;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  color: #1b1b20;
  align-self: center;
}
.roadmap__item-card-date {
  grid-column: 2;
  justify-self: end;
  background: #fff3ec;
  border-radius: 42px;
  font-family: Barlow;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 8px 28px;
  color: #ff7d1e;
  align-self: center;
}
.roadmap__item-card-text {
  grid-column: 1/3;
  padding: 19px 0 0 0;
}
.roadmap__item-card--right {
  grid-column: 3;
}

.roadmap__empty-pace--left {
  grid-column: 3;
}

.roadmap__empty-pace--right {
  grid-column: 1;
}

.footer {
  background: url("img/bg_orange.svg");
  background-position: top center;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding: 64px 54px 20px 64px;
  align-items: center;
}
.footer__header {
  color: #fff;
}
.footer__subheader {
  color: #ffffff;
  opacity: 0.6;
}
.footer__contact {
  display: flex;
  justify-content: end;
}
.footer__contact-link {
  display: block;
  width: 64px;
  height: 64px;
  display: grid;
  justify-items: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin: 0 0 0 15px;
}
.wave-low-opacity {
  position: absolute;
  bottom: -10%;
  right: -15%;
}

.how-to-buy {
  border-radius: 24px;
  background: url("img/bg_orange.svg");
  background-size: cover;
  background-position: top center;
  padding: 0 0 40px 65px;
  position: relative;
}
.how-to-buy__subheader {
  grid-column: 1/6;
  margin: 45px 0 0 0;
}
.how-to-buy__header {
  grid-column: 1/6;
}
.how-to-buy__list {
  grid-column: 1/9;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin: 26px 0 0 0;
  grid-row: 3;
}

.list-item {
  display: grid;
  grid-template-columns: fit-content(100%) 1fr;
  align-items: center;
  grid-gap: 0 21px;
}
.list-item__img-wrap {
  width: 48px;
  height: 48px;
  background: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.list-item__text {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  max-width: 350px;
}

.made-by {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  color: #fff;
  grid-column: 2;
  justify-self: end;
}

.footer {
  position: relative;
}

.list-item-copy {
  display: grid;
  grid-template-columns: fit-content(100%) 1fr;
  grid-gap: 0 21px;
}
.list-item-copy__img-wrap {
  grid-row: 1/3;
  grid-column: 1;
  width: 48px;
  height: 48px;
  background: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.list-item-copy__text {
  grid-row: 1;
  grid-column: 2;
}
.list-item-copy__copy {
  grid-row: 2;
  grid-column: 2;
  margin: 15px 0 0 0;
  display: flex;
  max-width: 514px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
  border-radius: 12px;
}
.list-item-copy__copy-text {
  padding: 16px 51px 16px 20px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.list-item-copy__bttn-copy {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  margin: 6px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ff7d1e;
}

.how-to-buy__buy-now {
  justify-self: center;
  grid-column: 1/13;
  background: #e23b3b;
  box-shadow: 0px 4px 17px rgba(255, 125, 30, 0.39);
  border-radius: 999px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150.5%;
  color: #ffffff;
  padding: 16px 24px;
}

/*footer*/
/*tablet*/
@media (max-width: 1280px) {
  .about-me__right img,
.greetings__right img {
    width: 100%;
  }

  .goals__left img {
    width: 100%;
  }

  .item-card__img {
    width: 100%;
  }

  .how-to-buy__video-wrap {
    position: static;
    grid-column: 6/13;
    grid-row: 1/5;
    margin: 30px 0;
  }

  .bottom-section,
.bottom-middle-section,
.middle-section,
.greetings {
    padding: 0 15px;
  }

  .footer {
    margin: 0 15px;
  }

  .about-me {
    padding: 65px 15px 0 15px;
  }

  .top-section-img-long-wave {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .header-container {
    padding: 56px 0 0 0;
    transition: all 0.3s;
  }

  .root {
    padding: 0;
  }

  .about-me {
    padding: 70px 15px 15px 15px;
  }

  .list-item__text {
    max-width: 100%;
    font-size: 19px;
  }

  .greetings__left {
    grid-column: 1/9;
    align-self: center;
  }

  .greetings__right {
    grid-column: 9/13;
  }

  .item-card__description {
    grid-row: 1/3;
    grid-column: 1/3;
    padding: 15px;
    border-radius: 0;
  }

  .meet__item-card--orange img,
.meet__item-card--red img {
    align-self: center;
    margin: 0;
  }

  .how-to-buy__video-wrap {
    grid-column: 1/13;
    justify-self: center;
    grid-row: 4;
  }

  .wave-low-opacity {
    display: none;
  }

  .footer {
    margin: 0 auto;
    border-radius: 0;
  }

  .about-me__header {
    font-size: 50px;
  }

  .top-section-img-right {
    top: 464px;
  }

  .how-to-buy__list {
    grid-column: 1/13;
  }
}
@media (max-width: 780px) {
  .made-by {
    grid-column: 1;
    justify-self: center;
  }

  .about-me__left {
    grid-column: 1/13;
  }

  .about-me__right {
    grid-column: 3/11;
  }

  .about-me__right {
    max-width: 100%;
  }

  .greetings__left {
    grid-column: 1/13;
  }

  .greetings__right {
    grid-column: 3/11;
  }

  .meet__item-card--orange img,
.meet__item-card--red img {
    align-self: start;
    margin: 0;
  }

  .goals__right {
    grid-column: 1/13;
  }

  .goals__left {
    grid-column: 3/11;
  }

  .check__power-by-unity {
    grid-row: 2;
  }

  .check-header {
    grid-row: 1;
    grid-column: 1/13;
    margin: 0 0 15px 0;
  }

  .check-item-card {
    padding: 15px;
  }

  .roadmap__cards {
    display: grid;
    grid-template-columns: 48px 1fr 1px;
    grid-gap: 20px 0;
  }

  .roadmap__cards::after {
    content: "";
    position: absolute;
    height: 100%;
    left: 9px;
    z-index: -1;
    top: 0;
    width: 4px;
  }

  .roadmap__item-card {
    grid-column: 2;
  }

  .roadmap__item-card--left:before {
    position: absolute;
    left: auto;
    content: "";
    right: calc(100% + 27px);
    height: 24px;
    width: 25px;
    top: 30px;
    border-radius: 50%;
    background: #ff7d1e;
    border: 3px solid #ffffff;
    box-sizing: border-box;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.25);
  }

  .roadmap__item-card--left:after {
    position: absolute;
    content: "";
    left: auto;
    right: 100%;
    -webkit-clip-path: polygon(0 0, 0% 100%, 46% 48%);
    clip-path: polygon(0 0, 0% 100%, 46% 48%);
    transform: rotate(180deg);
    height: 30px;
    width: 25px;
    top: 30px;
    background: #fff;
    z-index: 1;
  }

  .footer {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 0;
  }

  .footer__contact {
    display: flex;
    justify-content: space-around;
  }

  .check__cards {
    grid-column: 1/13;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }

  .grid-12 {
    grid-gap: 0 15px;
  }

  .about-me__sub-text {
    max-width: 100%;
  }

  .top-section-img-right {
    top: 630px;
    right: -250px;
  }

  .how-to-buy {
    padding: 20px;
  }

  .top-section-img-long-wave {
    display: none;
  }

  .list-item-copy__copy-text {
    padding: 15px;
  }

  .greetings {
    grid-gap: 20px 0;
  }
}
@media (max-width: 660px) {
  .check {
    padding: 80px 0 0 0;
  }

  .how-to-buy__video-wrap {
    width: 100%;
    height: calc(100px + 25vw);
  }

  .check__cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .top-section-img-right {
    top: 767px;
  }

  .meet__item-card {
    grid-column: 3/11;
  }

  .meet__cards {
    grid-gap: 20px 0;
  }

  .how-to-buy__video-wrap img {
    width: 100%;
  }

  .list-item-copy__copy-text {
    font-size: 12px;
  }
}
@media (max-width: 536px) {
  .about-me__header {
    font-size: 41px;
    line-height: 48px;
  }

  h2 {
    font-size: 37px;
    line-height: 45px;
  }

  .footer {
    padding: 30px 30px 50px 30px;
  }

  .how-to-buy__header {
    grid-column: 1/13;
  }

  .list-item-copy__copy {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .list-item-copy__bttn-copy {
    width: auto;
    padding: 5px 0;
  }

  .list-item-copy__bttn-copy {
    padding: 15px 5px;
  }

  .list-item-copy__copy-text {
    padding: 15px 5px;
    text-align: center;
  }
}
@media (max-width: 435px) {
  .meet__item-card {
    grid-column: 1/13;
  }

  .about-me__right,
.greetings__right,
.goals__left {
    grid-column: 1/13;
  }

  .about-me__bttn {
    grid-column: 1/4;
  }

  .about-me__header {
    font-size: 38px;
    line-height: 45px;
  }

  .roadmap__item-card-text {
    font-size: 14px;
    line-height: 24px;
  }

  .roadmap__item-card-date {
    font-size: 14px;
  }

  .list-item__text {
    max-width: 100%;
    font-size: 17px;
    line-height: 21px;
  }

  .list-item {
    grid-gap: 15px;
  }

  .list-item-copy__copy {
    grid-row: 2;
    grid-column: 1/3;
  }

  .footer__contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    grid-gap: 15px;
  }

  .how-to-buy__video-wrap {
    width: 100%;
    height: calc(100px + 14vw);
  }
}
@media (max-width: 375px) {
  .list-item-copy__copy-text {
    font-size: 10px;
  }

  .list-item-copy {
    grid-gap: 15px;
  }

  p {
    font-size: 16px;
    line-height: 20px;
  }

  .about-me__header {
    font-size: 30px;
    line-height: 34px;
  }

  h3 {
    line-height: 20px;
    font-size: 16px;
  }

  .top-section-img-right {
    display: none;
  }

  .check {
    padding: 100px 0 0 0;
  }

  .check__power-by-unity {
    margin: 0;
  }

  .how-to-buy__list {
    grid-gap: 10px;
  }

  .list-item__text {
    max-width: 100%;
    font-size: 12px;
    line-height: 16px;
  }

  h2 {
    font-size: 35px;
    line-height: 38px;
  }

  .roadmap__item-card-date {
    font-size: 11px;
    padding: 8px 16px;
  }

  .roadmap__item-card--right:before {
    right: calc(100% + 13px);
    height: 24px;
    width: 24px;
    top: 30px;
  }

  .roadmap__cards {
    grid-template-columns: 34px 1fr 1px;
  }

  .roadmap__item-card--left:before {
    right: calc(100% + 11px);
    height: 24px;
    width: 25px;
    top: 30px;
  }

  .greetings__board {
    width: 100%;
    font-size: 12px;
    line-height: 19px;
  }
}
/*media*/
/*small_mob*/