* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background: linear-gradient(to right, #13111c 60%, #2d1128);
  color: #fff;
}

a {
  display: inline-block;
  text-decoration: none;
}

li {
  display: inline-block;
}

ul {
  list-style: none;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 10px;
}

.header {
  margin-top: 20px;
}
.header-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
}
.header-rail {
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.header-item {
  padding: 0 14px;
}
.header-link {
  color: rgba(151, 144, 144, 0.918);
  font-weight: 900;
  outline: none;
  transition: color 0.1s linear;
}
.header-link:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .header-heading {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .header {
    margin-top: 10px;
  }
  .header-heading {
    position: relative;
    padding: 0;
  }
  .header-hambuger {
    font-size: 22px;
  }
  .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }
  .header-list {
    position: relative;
    top: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px 0;
  }
  .header-item {
    font-size: 24px;
  }
  .header-link {
    color: #fff;
  }
}
section {
  position: relative;
  overflow: hidden;
}
section .hero {
  margin-top: 116px;
  margin-bottom: 130px;
  display: flex;
  justify-content: space-between;
}
section .hero-heading {
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
}
section .hero-content {
  width: 54%;
  margin-top: 60px;
}
section .hero-text {
  padding: 45px 0 50px;
}
section .hero-btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  padding: 20px 24px;
  border-radius: 10px;
  background-color: #853bce;
  cursor: pointer;
  transition: background-color 0.1s linear;
}
section .hero-btn:hover {
  background-color: #a667e4;
}
section .hero-image {
  display: flex;
}
section .hero-image :first-child {
  position: absolute;
  top: 50%;
  left: 28%;
  max-width: 489px;
  height: 303px;
}
section .hero-image :last-child {
  position: absolute;
  right: -3.33%;
  max-width: 691px;
  height: 568px;
}

@media (max-width: 1023px) {
  section .hero {
    padding-left: 30px;
  }
  section .hero-image {
    display: none;
  }
  section .hero-heading {
    font-size: 46px;
  }
  section .hero-content {
    width: 70%;
  }
  section .hero-btn {
    padding: 14px 24px;
    border-radius: 6px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  section .hero-content {
    position: relative;
    z-index: 3;
  }
  section .hero-text {
    text-shadow: 1px 1px 1px dimgrey;
  }
}
@media (max-width: 1023px) {
  section .hero {
    padding-left: 0;
    margin-top: 100px;
  }
  section .hero-content {
    width: 90%;
    position: relative;
    z-index: 3;
  }
  section .hero-heading {
    font-size: 34px;
    line-height: 50px;
  }
  section .hero-text {
    text-shadow: 1px 1px 1px dimgrey;
  }
}
.feature-main {
  max-width: 970px;
  margin: 0 auto;
}
.feature-tinker {
  text-align: center;
  position: relative;
}
.feature-number {
  border-radius: 50%;
  display: inline-block;
  width: 76px;
  height: 76px;
  font-size: 36px;
  line-height: 70px;
}
.feature-title {
  position: relative;
  margin-bottom: 50px;
}
.feature-title h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  padding: 60px 0 12px;
}
.feature-title h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}
.feature-title ::after {
  content: "";
  display: block;
  position: absolute;
  width: 162px;
  height: 1px;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.feature-text {
  font-size: 18px;
  line-height: 27px;
  padding: 0 60px;
}
.feature-menu {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(2, 200px);
}
.feature-menu .item1 {
  grid-column: 1/4;
}
.feature-menu .item2 {
  grid-row: 2;
  grid-column: 1/4;
}
.feature-menu .item3 {
  grid-column: 4/5;
  grid-row: 1/3;
  align-self: center;
  justify-self: center;
}
.feature-menu .item4 {
  grid-column: 5/8;
  grid-row: 1;
}
.feature-menu .item5 {
  grid-column: 5/8;
  grid-row: 2;
}
.feature-item {
  border-radius: 10px;
  padding: 34px 0 54px 33px;
  max-width: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.feature-content {
  max-width: 190px;
}
.feature-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}
.feature .text {
  font-size: 14px;
  line-height: 20px;
  color: #a1a0ab;
}
.feature-logo {
  position: relative;
  right: -45px;
  bottom: -100px;
}
.feature-logo :first-child {
  bottom: 14px;
}
.feature-logo :nth-child(2) {
  bottom: 82px;
}
.feature-logo :nth-child(3) {
  bottom: 82px;
  right: -120px;
}
.feature-logo :nth-child(4) {
  width: 95px;
  height: 96px;
  border-radius: 50%;
  right: -114px;
  top: -20px;
  z-index: 1;
  font-size: 34px;
}
.feature-logo :nth-child(4) i {
  line-height: 88px;
  margin-left: 28px;
}
.feature .logos {
  display: inline-block;
  position: absolute;
}
.feature .square-item {
  border-radius: 6px;
  width: 40px;
  height: 55px;
}
.feature-train {
  width: 24px;
  height: 620px;
  position: relative;
  left: -3px;
}
.feature-train .train {
  margin-top: 250px;
}
.feature--primary {
  padding-top: 50px;
  padding-bottom: 180px;
  background-color: #13111c;
}
.feature--second {
  padding-bottom: 180px;
  background-color: #1a1a25;
}
.feature--second::before {
  background-color: #13111c;
  width: 99%;
  transform: rotate(-2deg);
}
.feature--third {
  background-color: #13111c;
}
.feature--third::before {
  transform: rotate(2deg);
  width: 100%;
  background: #1a1a25;
}
.feature--second, .feature--third {
  position: relative;
  overflow-x: hidden;
}
.feature--second::before, .feature--third::before {
  content: "";
  position: absolute;
  height: 70px;
  top: -34px;
  left: 0;
  right: 0;
}
.feature--main3 {
  max-width: 1172px;
  margin: 0 auto;
}
.feature-listTrain {
  width: 120px;
  display: flex;
  gap: 0 32px;
}
.feature-itemTrain {
  width: 18px;
}
.feature-itemTrain .train2 {
  margin-top: 290px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .feature .menu--third {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 0 110px;
  }
  .feature .menu--third .item1, .feature .menu--third .item3, .feature .menu--third .item5 {
    grid-column: 1/2;
  }
  .feature .menu--third .item2, .feature .menu--third .item4, .feature .menu--third .item6 {
    grid-column: 2/3;
  }
  .feature .menu--third .item1, .feature .menu--third .item2 {
    grid-row: 1/2;
  }
  .feature .menu--third .item3, .feature .menu--third .item4 {
    grid-row: 2/3;
  }
  .feature .menu--third .item5, .feature .menu--third .item6 {
    grid-row: 3/4;
  }
  .feature-logo :nth-child(4) {
    top: 10px;
    right: -110px;
  }
}
@media (max-width: 1023px) {
  .feature--primary {
    padding-top: 20px;
  }
  .feature--second {
    padding-bottom: 130px;
  }
  .feature-menu {
    padding: 0 10px;
  }
  .feature .menu--primary {
    grid-gap: 60px 80px;
  }
  .feature .menu--secondary {
    grid-gap: 60px 40px;
  }
  .feature .menu--third {
    grid-gap: 50px 180px;
    padding: 0 20px;
  }
  .feature-title h3 {
    font-size: 22px;
    padding: 40px 0 12px;
  }
  .feature-title h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .feature-heading {
    margin-bottom: 0;
  }
  .feature-text {
    padding: 0 20px;
  }
  .feature-item {
    height: 220px;
    padding: 32px 0 54px 30px;
  }
  .feature-logo {
    right: 45px;
    bottom: -100px;
  }
  .feature .text {
    padding: 14px 30px 0 0;
  }
}
@media (max-width: 767px) {
  .feature-menu {
    display: flex;
    flex-direction: column;
  }
  .feature-item {
    height: 200px;
    margin: 18px 0;
  }
  .feature-logo {
    right: -20px;
  }
  .feature-logo :nth-child(4) {
    top: -10px;
    right: -110px;
  }
  .feature-text {
    padding: 0 10px;
  }
  .feature .menu--primary {
    grid-gap: 36px 0;
  }
  .feature .menu--secondary {
    grid-gap: 0;
    gap: 0;
  }
  .feature .menu--third {
    grid-gap: 0;
    padding: 0 10px;
  }
  .feature .text {
    padding: 14px 1px 0 0;
  }
  .feature-listTrain {
    display: none;
  }

  .train--primary {
    display: none;
  }
}
.number--primary {
  border: 3px solid #306ee8;
  background-color: #0f1b33;
  color: #306ee8;
}

.number--secondary {
  border: 3px solid #46946e;
  background-color: #15231d;
  color: #46946e;
}

.number--third {
  border: 3px solid #853bce;
  background-color: #291839;
  color: #853bce;
}

.title--colPrimary {
  color: #306ee8;
}

.title--colSecondary {
  color: #46946e;
}

.title--colThird {
  color: #853bce;
}

.title--primary ::after {
  background-color: #306ee8;
}

.title--secondary ::after {
  background-color: #46946e;
}

.title--third ::after {
  background-color: #853bce;
}

.heading--primary {
  color: #8caef2;
}

.heading--secondary {
  color: #95d0b4;
}

.heading--third {
  color: #bf93ec;
}

.item--primary {
  border: 1px solid #183367;
  background-color: #13111c;
  box-shadow: 0px 0px 6px 4px #0f1b33;
}

.item--secondary {
  border: 1px solid #181622;
  background-color: #181622;
  box-shadow: 0px 0px 6px 4px #1c362a;
}

.item--third {
  border: 1px solid #3d2259;
  background-color: #13111c;
  box-shadow: 0px 0px 6px 4px #200f32;
}

.logo--primary :nth-child(4) {
  border: 1px solid #306ee8;
  background-color: #13111c;
}

.logo--secondary :nth-child(4) {
  border: 1px solid #224036;
  background-color: #181622;
}

.logo--third :nth-child(4) {
  border: 1px solid #502877;
  background-color: #13111c;
}

.square--primary {
  border: 2px solid #0f1b33;
}

.square--secondary {
  border: 2px solid #15231d;
}

.square--third {
  border: 2px solid #291839;
}

.menu--primary {
  grid-gap: 50px 80px;
}

.menu--secondary {
  grid-gap: 50px 55px;
}

.menu--third {
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 50px 40px;
}
.menu--third .item1 {
  grid-row: 1;
  grid-column: 1/3;
}
.menu--third .item2 {
  grid-row: 2;
  grid-column: 1/3;
}
.menu--third .item3 {
  grid-row: 1;
  grid-column: 3/5;
  align-self: auto;
  justify-self: auto;
}
.menu--third .item4 {
  grid-row: 2;
  grid-column: 3/5;
}
.menu--third .item5 {
  grid-row: 1;
  grid-column: 5/7;
}
.menu--third .item6 {
  grid-row: 2;
  grid-column: 5/7;
}

.train--primary {
  position: relative;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(24, 51, 103, 0.5) 15%, rgba(24, 51, 103, 0.5) 85%, rgba(255, 255, 255, 0) 100%);
  width: 18px;
}

.feature-itemTrain {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(13, 53, 33, 0.5) 15%, rgba(13, 53, 33, 0.5) 85%, rgba(255, 255, 255, 0) 100%);
}

.heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

.heading-lg {
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
}

.heading-md {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
}

.heading-small {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.text {
  color: #878593;
  font-size: 20px;
  line-height: 30px;
  padding: 14px 0 0;
}

.text-small {
  font-size: 14px;
  line-height: 21px;
}

.text-smallest {
  font-size: 13px;
  line-height: 18px;
}

.text-md16 {
  line-height: 30px;
  font-size: initial;
}

.text-md18 {
  color: #878593;
  line-height: 30px;
  font-size: 18px;
}

.text--primary {
  color: #a1a0ab;
}

.text-white {
  color: #fff;
}

.drive {
  margin: 65px 0;
  border: 1px solid #33323e;
}

.btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  border: 1px solid transparent;
  box-shadow: 0 0 12px 4px #291839;
  border-radius: 50px;
  padding: 8px 15px;
  cursor: pointer;
  transition: box-shadow 0.1s ease-in;
}
.btn--primary:hover {
  box-shadow: 0 0 4px 8px #291839;
}

@media (min-width: 768px) {
  .header-hambuger {
    display: none;
  }

  .active-comment {
    display: none;
  }

  .btn--view {
    display: none;
  }
}
.idea {
  background-color: #13111c;
}
.idea-list {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.idea-item {
  flex: 395px;
  height: 237px;
  padding: 69px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.idea-heading {
  font-size: 18px;
  font-weight: 700;
  padding: 12px 0;
}
.idea-text {
  font-size: 14px;
  line-height: 21px;
  padding: 0 20px;
}
.idea-item1 {
  padding-left: 1px;
}
.idea-item1, .idea-item8 {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  background-color: #181622;
  text-align: left;
}
.idea-item2 {
  background-color: #e06254;
}
.idea-item3 {
  background: linear-gradient(245.33deg, #6a98be 0%, #385aa4 20.83%, #354b6b 45.58%, #473024 69.18%, #2a1d14 92.17%);
}
.idea-item4 {
  background-color: #2f2d39;
}
.idea-item5 {
  background-color: #535260;
}
.idea-item6 {
  background-color: #19253f;
}
.idea-item7 {
  background-color: #292e4c;
}

@media (max-width: 1023px) {
  .idea-item1 {
    padding-left: 48px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .idea-item {
    height: 200px;
  }
}
.dash {
  background-color: #13111c;
  padding-top: 100px;
  padding-bottom: 210px;
}
.dash .container {
  max-width: 1160px;
}
.dash-head {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.dash-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
  margin-top: 65px;
}
.dash-info {
  max-width: 360px;
}
.dash-img {
  max-width: 760px;
  height: 564px;
  border: 1px solid #211f2d;
  border-radius: 4px;
  overflow: hidden;
  background-color: #15111c;
}
.dash-mac {
  width: 100%;
  height: 20px;
  background-color: #211f2d;
  position: relative;
}
.dash-mac::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 14px;
  border-radius: 3px;
  background-color: #33323e;
}
.dash .drive--primary {
  border: 1px solid #853bce;
  max-width: 60px;
  margin: 20px 0;
}
.dash-nav {
  margin-top: 40px;
  display: flex;
  gap: 0 30px;
  align-items: center;
}
.dash-play {
  font-size: 18px;
  padding-top: 6px;
  line-height: 18px;
}
.dash-right {
  font-size: 14px;
}
.dash-play, .dash-right {
  color: #853bce;
}
.dash-link {
  color: #bf93ec;
  opacity: 0.8;
  font-size: 16px;
}
.dash-link:hover {
  text-decoration: underline;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 70px;
}
.dash-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-basis: 50%;
  min-height: 500px;
}
.dash-im {
  max-width: 100%;
  height: auto;
  flex: 1;
}
.dash-text {
  padding: 10px 100px 10px 0;
}

@media (max-width: 1023px) {
  .dash-main {
    padding: 0 10px;
  }
  .dash-text {
    padding: 10px 0 0 0;
  }
  .dash-img {
    height: auto;
    margin-bottom: 200px;
    max-width: 472px;
  }
  .dash-nav {
    font-size: 16px;
    gap: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .dash-im {
    flex: 0;
  }
  .dash-col {
    min-height: 400px;
  }

  .heading {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-md {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .dash {
    padding-bottom: 140px;
  }
  .dash-decs {
    padding: 24px 10px;
  }
  .dash-item {
    flex-direction: column;
    gap: 20px 0;
  }
  .dash-img {
    margin-bottom: 0;
  }
  .dash-text {
    line-height: 30px;
    padding-top: 0;
  }
  .dash-row {
    flex-direction: column;
    gap: 30px 0;
  }

  .drive {
    margin: 40px 0;
  }
}
.tool {
  background-color: #13111c;
  padding-bottom: 100px;
}
.tool-main {
  width: 100%;
}
.tool-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 40px;
}
.tool .item1, .tool .item2, .tool .item3 {
  grid-column: 1/2;
}
.tool .item6, .tool .item7, .tool .item8 {
  grid-column: 4/5;
}
.tool .item6 {
  grid-row: 1;
}
.tool .item7 {
  grid-row: 2;
}
.tool .item4 {
  grid-column: 2/3;
  grid-row: 3/4;
}
.tool .item5 {
  grid-column: 3/4;
  grid-row: 3/4;
}
.tool-content {
  grid-column: 2/4;
  grid-row: 1/3;
  background-color: #36096d;
  background-image: linear-gradient(315deg, #36096d 0%, #37d5d6 74%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 100px 0 40px;
  border-radius: 14px;
}
.tool-item {
  border: 1px solid transparent;
  max-width: 270px;
  height: 222px;
  background-color: #211f2d;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 8px;
}
.tool-img {
  width: 36px;
  height: 36px;
}
.tool-heading {
  padding: 14px 0;
}
.tool-text {
  min-height: 40px;
}
.tool-textMain {
  padding: 24px 0;
}
.tool-link {
  color: white;
  border: 1px solid #4f2876;
  padding: 8px 90px;
  border-radius: 6px;
  margin-top: 20px;
  transition: background-color 0.3s ease-in;
}
.tool-link:hover {
  background-color: #4f2876;
}
.tool-linkMain {
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #fff;
}
.tool-icon {
  font-size: 14px;
  margin-right: 8px;
}
@media (max-width: 1023px) {
  .tool-main {
    width: 98%;
    margin: 0 auto;
  }
  .tool-content {
    padding-right: 80px;
  }
  .tool-list {
    grid-gap: 36px;
  }
  .tool-item {
    max-width: 158px;
    height: 262px;
    padding: 10px;
  }
  .tool-heading {
    padding: 4px 0;
  }
  .tool-link {
    margin-top: 0;
    padding: 8px 40px;
  }
  .tool-linkMain {
    padding: 8px 0;
  }
}

@media (max-width: 767px) {
  .tool .item1,
.tool .item2,
.tool .item3,
.tool .item4,
.tool .item5,
.tool .item6,
.tool .item7,
.tool .item8 {
    display: none;
  }
  .tool-content {
    padding: 30px 30px 40px;
  }
  .tool-textMain {
    padding: 20px 0 30px;
  }
  .tool-list {
    display: flex;
  }
}
.team {
  background: linear-gradient(to left bottom, #13111c 80%, #2d1128);
  padding-top: 60px;
  padding-bottom: 100px;
}
.team-header {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.team-text {
  padding-top: 10px;
}
.team-link {
  transition: color 0.1s ease-in-out;
  text-decoration: underline;
}
.team-link:hover {
  color: #853bce;
}
.team-content {
  margin-top: 100px;
}
.team-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 30px;
}
.team-col {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  align-items: center;
  justify-content: center;
}
.team-item {
  max-width: 366px;
  height: auto;
  border: 1px solid #211f2d;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  border-radius: 6px;
}
.team-avatar {
  display: flex;
  gap: 0 10px;
}
.team-img {
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .team-list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .team .active-comment {
    display: none;
  }
  .team .btn--view {
    position: relative;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 160px;
    text-transform: capitalize;
    font-size: 18px;
  }
}

.product {
  background: linear-gradient(to right bottom, #2d1128 1%, #131a41, #13111c);
  padding-top: 60px;
  padding-bottom: 100px;
}
.product-main {
  border: 1px solid #343b55;
  border-radius: 8px;
  padding: 70px 360px;
  text-align: center;
}
.product-text {
  padding: 30px 0;
}
.product-btn {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  background-color: #853bce;
  cursor: pointer;
  transition: background-color 0.1s linear;
}
.product-btn:hover {
  background-color: #a667e4;
}
@media (max-width: 1023px) {
  .product {
    padding-top: 0;
    padding-bottom: 0;
    height: 300px;
  }
  .product-main {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .product {
    height: auto;
  }
}

.footer {
  background: linear-gradient(to right bottom, #2d1128 20%, #131a41, #13111c);
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0 80px;
}
.footer-icon {
  margin-bottom: 30px;
}
.footer .item1 {
  justify-self: flex-start;
  grid-column: 1/3;
}
.footer-text {
  padding-top: 100px;
  padding-right: 120px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
}
.footer-link {
  transition: color 0.1s ease;
}
.footer-link:hover {
  color: #fff;
}
@media (max-width: 1023px) {
  .footer-list {
    grid-gap: 0;
    padding: 0 20px;
  }
  .footer-text {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .footer-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 50px;
  }
  .footer .item1 {
    grid-row: 3;
  }
  .footer-logo {
    align-self: center;
  }
  .footer-col {
    text-align: center;
  }
  .footer-text {
    padding-top: 20px;
    font-size: 14px;
    padding-right: 0;
  }
}

/*# sourceMappingURL=style.css.map */
