.myprofile-inner {
  display: flex;
  align-items: center;
  gap: 10%;
}
.myprofile-inner__caption p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 600px;
  margin-top: 32px;
}
.myprofile-inner img {
  border: solid 2px #333;
  max-width: 380px;
  width: 100%;
}

@media (max-width: 768px) {
  .myprofile-inner {
    flex-direction: column-reverse;
  }
  .myprofile-inner__caption {
    margin-top: 40px;
  }
  .myprofile-inner__caption p {
    font-size: 14px;
    margin-top: 24px;
  }
  .myprofile-inner img {
    width: 70%;
  }
}
.skills__container {
  margin-bottom: 56px;
}

.swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.swiper-slide {
  display: grid;
  grid-template-rows: subgrid;
}

.skills__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: solid 2px #333;
  padding: 40px 32px;
}

.skills__description {
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 32px;
}

.skills__card--image-design {
  max-width: 100px;
  height: auto;
  margin-bottom: 24px;
}
.skills__card--image-coding {
  max-width: 150px;
  height: auto;
  margin-bottom: 24px;
}

.skills__card img {
  width: 100%;
}
.skills__card h4 {
  position: relative;
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.skills__card h4::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: #333;
  left: -15px;
  bottom: 0;
  transform: rotate(-25deg);
}
.skills__card h4::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: #333;
  right: -15px;
  bottom: 0;
  transform: rotate(25deg);
}
.skills__card p {
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .swiper .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .swiper .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .swiper {
    width: 75%;
    height: 353px;
  }
  .swiper-wrapper {
    display: flex;
  }
  .skills__description {
    font-size: 14px;
  }
  .skills__card p {
    font-size: 14px;
  }
}
.strength__container {
  margin-bottom: 56px;
}
.strength__container p {
  margin-bottom: 16px;
}

.strength__content {
  display: flex;
  gap: 56px;
}
.strength__content--h3-01 {
  margin-right: 72px;
}
.strength__content p {
  max-width: 700px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .strength__container {
    margin-bottom: 40px;
  }
  .strength__container p {
    margin-bottom: 8px;
  }
  .strength__content {
    display: block;
  }
  .strength__content p {
    font-size: 14px;
    margin-top: 24px;
  }
}/*# sourceMappingURL=profile.css.map */