/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Sen:wght@400..800&display=swap");

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

* {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.none {
  display: none;
}

.container {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.heading-1 {
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.333;
  letter-spacing: -0.04em;
}

.heading-2 {
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.333;
  letter-spacing: -0.06em;
}

.heading-3 {
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.42857;
  letter-spacing: -0.04em;
}

.heading-4 {
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33333;
}

section {
  padding-top: 128px;
}

.header {
  background: #000;
}

.header__top-menu {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

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

.header__logo:hover {
  cursor: pointer;
}

.finsweet {
  width: 140px;
  height: 29px;
  transition: all 0.2s ease-in;
  fill: #fff;
}

.finsweet:hover {
  fill: #ffd050;
}

.header__menu {
  display: flex;
}

.header__menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e5e5e5;
}

.header__menu-list a {
  transition: all 0.2s ease-in;
}

.header__menu-list a:hover {
  color: #ffd050;
}

.header__menu-list-item {
  align-items: center;
  line-height: 1.75;
}

.header__menu-list-item:not(:last-child) {
  margin-right: 24px;
}

.header__menu-list-item:last-child {
  margin-left: 8px;
}

.header__subscribe {
  padding: 16px 48px;
  width: 179px;
  height: 56px;
  background-color: #e5e5e5;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33333;
  color: #232536;
  transition: all 0.2s ease-in;
}

.header__subscribe:hover {
  background-color: #ffd050;
}

.header__banner {
  position: relative;
  padding-top: 128px;
  height: 720px;
  background-image: url("../img/header-banner.jpg");
  background-position: center;
  background-size: cover;
}

.header__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../img/Overlay.png");
  background-position: center;
  background-size: cover;
}

.header__banner-post {
  position: absolute;
  z-index: 3;
  width: 804px;
  height: 400px;
}

.header__post-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #e5e5e5;
}

.header__post-subtitle span {
  font-weight: 900;
}

.header__post-title {
  margin-top: 24px;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.14286;
  letter-spacing: -0.04em;
  color: #e5e5e5;
}

.header__post-attr {
  margin-top: 24px;
  line-height: 1.75;
  color: #e5e5e5;
}

.header__post-attr span {
  color: #ffd050;
}

.header__post-desc {
  margin-top: 16px;
  line-height: 1.75;
  color: #e5e5e5;
}

.header__post-read-more {
  margin-top: 48px;
  padding: 16px 46px;
  width: 204px;
  background-color: #ffd050;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33333;
  color: #000;
  transition: all 0.2s ease-in;
}

.header__post-read-more:hover {
  background-color: #e5e5e5;
}

.featured__post {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f4f0f8;
}

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

.featured__post-content {
  padding-top: 14px;
  padding-bottom: 14px;
  width: 624px;
}

.featured__post-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.featured__post-title {
  margin-top: 20px;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.33333;
  letter-spacing: -0.06em;
}

.featured__post-attr {
  margin-top: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
  color: #4c4c4c;
}

.featured__post-attr span {
  color: #592ea9;
}

.featured__post-text {
  margin-top: 16px;
  line-height: 1.75;
  color: #6e6f77;
}

.featured__post-btn {
  margin-top: 32px;
  padding: 16px 47px;
  width: 204px;
  height: 56px;
  background-color: #ffd050;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33333;
  transition: all 0.2s ease-in;
}

.featured__post-btn:hover {
  background-color: #e5e5e5;
}

.featured__post-img {
  width: 515px;
  height: 360px;
}

.all-posts {
  padding-top: 64px;
  padding-bottom: 64px;
}

.all-posts__title {
  height: 96px;
  border-bottom: 1px solid #f4f4f4;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.33333;
  letter-spacing: -0.04em;
}

.all-posts__wrapper {
  width: 1147px;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}

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

.all-posts__post-img {
  width: 490px;
  height: 319px;
  overflow: hidden;
}

.all-posts__content {
  padding-top: 55px;
  padding-bottom: 55px;
  width: 624px;
  display: flex;
  flex-direction: column;
}

.all-posts__post-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #592ea9;
}

.all-posts__post-title {
  padding-top: 20px;
}

.all-posts__post-text {
  padding-top: 16px;
  line-height: 1.75;
  color: #6e6f77;
}

.all-posts__pagination {
  margin-top: 64px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.42857;
  letter-spacing: -0.04em;
}

.all-posts__pagination span {
  transition: all 0.2s ease-in;
}

.all-posts__pagination :hover {
  color: #6e6f77;
  cursor: pointer;
}

.posts__wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.posts__featured {
  width: 730px;
}

.posts___featured-post-card {
  margin-top: 32px;
  padding: 32px;
}

.posts__img {
  width: 670px;
  height: 352px;
}

.posts__attr,
.posts__post-attr {
  color: #4c4c4c;
}

.posts__attr span,
.posts__post-attr span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
  color: #592ea9;
}

.posts__title {
  margin-top: 16px;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.42857;
  letter-spacing: -0.04em;
}

.posts__desc {
  margin-top: 16px;
  width: 551px;
  line-height: 1.75;
  color: #6e6f77;
}

.posts__btn {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 47px;
  width: 204px;
  height: 56px;
  background-color: #ffd050;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33333;
  transition: all 0.2s ease-in;
}

.posts__btn:hover {
  background-color: #e5e5e5;
}

.posts__all {
  width: 510px;
}

.posts__all-wrapper {
  width: inherit;
}

.posts__posts-column .heading-2 {
  margin-bottom: 32px;
}

.posts__post {
  padding-left: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  transition: all 0.2s ease-in;
}

.posts__post:hover {
  background-color: #fbf6ea;
}

.posts__post--selected {
  background-color: #fbf6ea;
}

.posts__post-title {
  margin-top: 8px;
  width: 380px;
}

.posts__right-column {
  width: 60px;
  line-height: 1.75;
  color: #592ea9;
}

.about__pattern {
  width: 100%;
  display: flex;
  justify-content: right;
}

.about__wrapper {
  background-color: #f4f0f8;
  padding: 96px 80px;
  display: flex;
  justify-content: space-between;
}

.about__wrapper>div {
  width: 515px;
}

.about__about-us-subtitle,
.about__our-mission-subtitle {
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.about__about-us-title,
.about__our-mission-title {
  margin-top: 24px;
  padding-right: 30px;
}

.about__about-us-desc,
.about__our-mission-desc {
  margin-top: 16px;
}

.about__about-us-read-more {
  margin-top: 16px;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.77778;
  color: #592ea9;
}

.category--all-category {
  padding-top: unset;
}

.category__title {
  text-align: center;
}

.category__title-all-category {
  text-align: unset;
}

.category__wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
}

.category__wrapper>div {
  width: 296px;
  padding: 32px;
}

.category__category {
  border: 1px solid hsla(233, 4%, 45%, 0.3);
  transition: all 0.2s ease-in;
}

.category__category:hover {
  background-color: #ffd050;
}

.category__category-icon,
.categories-section__category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fbf6ea;
}

.category__category-title {
  margin-top: 16px;
}

.category__category-desc {
  margin-top: 4px;
  line-height: 1.75;
  color: #6e6f77;
}

.category-header {
  padding-top: unset;
  background-color: #f4f0f8;
}

.category-header__title {
  width: 515px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.category-header__title h3 {
  color: #232536;
  font-family: "Sen", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -2px;
  text-align: center;
}

.category-header__title p {
  margin-top: 16px;
  color: #6d6e76;
  text-align: center;
  line-height: 28px;
}

.category-header__title .tree {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

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

.categories-section__category-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  width: 838px;
}

.categories-section__category {
  width: 838px;
  display: flex;
  justify-content: space-between;
}

.categories-section__category-img {
  width: 294px;
  height: 312px;
}

.categories-section__category-info {
  width: 512px;
  padding: 38px 0;
}

.categories-section__subtitle {
  color: #592ea9;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.categories-section__title {
  padding-top: 20px;
}

.categories-section__text {
  color: #6d6e76;
  font-family: "Inter", sans-serif;
  line-height: 28px;
  letter-spacing: 0px;
}

.categories-section__sidebar {
  width: 298px;
}

.categories-section__categories-item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 96px;
  padding: 24px;
  border: 1px solid hsla(233, 4%, 45%, 0.3);
  transition: all 0.2s ease-in;
}

.categories-section__categories-item:first-child {
  margin-top: 40px;
}

.categories-section__categories-item:not(:first-child) {
  margin-top: 24px;
}

.categories-section__categories-item:hover,
.categories-section__categories-item:checked {
  background-color: #ffd050;
  border: 1px solid #ffd050;
}

.categories-section__category-title {
  margin-left: 16px;
}

.categories-section__all-tags {
  margin-top: 48px;
}

.categories-section__all-tags-wrapper {
  margin-top: 24px;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
}

.categories-section__tags-item {
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 36px 8px 36px;
  box-sizing: border-box;
  border: 2px solid rgb(109, 110, 118);
  border-radius: 28px;
  color: rgb(35, 37, 54);
  font-family: "Sen", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0px;
  transition: all 0.2s ease-in;
}

.categories-section__tags-item:hover {
  background-color: #ffd050;
}

.started__wrapper {
  position: relative;
}

.started__content {
  position: absolute;
  width: 706px;
  height: 584px;
  right: 0;
  bottom: 0;
  padding: 79px;
  background-color: #fff;
}

.started__subtitle {
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.started__title {
  margin-top: 24px;
}

.started__desc {
  margin-top: 16px;
  line-height: 1.75;
  color: #6e6f77;
}

.started__btn {
  margin-top: 32px;
}

.started__btn a {
  display: inline-block;
  padding: 16px 48px;
  height: 56px;
  background-color: #ffd050;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33333;
}

.started__btn:hover a {
  transition: all 0.2s ease-in;
  background-color: #e5e5e5;
}

.authors__title {
  text-align: center;
}

.authors__wrapper {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 32px;
  justify-content: space-between;
}

.authors__author {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 296px;
  text-align: center;
  transition: all 0.2s ease-in;
  background-color: #f4f4f4;
}

.authors__author:hover {
  background-color: #fbf6ea;
}

.authors__author-img {
  margin: 0 auto;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
}

.authors__author-name {
  margin-top: 20px;
}

.authors__author-desc {
  font-size: 14px;
  line-height: 1.42857;
  color: #6e6f77;
}

.author-socials {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 112px;
  display: flex;
  justify-content: space-between;
}

.author-socials a {
  display: inline-block;
  height: 16px;
}

.author-socials svg {
  width: 16px;
  height: 16px;
  transition: all 0.2s ease-in;
  fill: #232536;
}

.author-socials .facebook:hover {
  fill: rgb(0, 119, 255);
}

.author-socials .twitter:hover {
  fill: rgb(0, 174, 255);
}

.author-socials .instagram:hover {
  fill: rgb(255, 0, 157);
}

.author-socials .linkedIn:hover {
  fill: rgb(0, 60, 255);
}

.logo-component {
  margin-top: 96px;
  display: flex;
  justify-content: space-between;
}

.logo-component__featured {
  color: #6e6f77;
}

.logo-component__featured p {
  font-size: 14px;
  line-height: 1.42857;
  opacity: 0.6;
}

.logo-component__logos {
  display: flex;
  align-items: center;
  gap: 74px;
}

.testimonials {
  margin-top: 96px;
  padding-top: 0;
  background-color: #fbf6ea;
}

.testimonials__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 80px 112px 75px 112px;
}

.testimonials__header {
  width: 350px;
}

.testimonials__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.testimonials__title {
  margin-top: 12px;
  width: 345px;
}

.testimonials__desc {
  margin-top: 16px;
  line-height: 1.75;
}

.testimonials__carousel {
  width: 530px;
}

.testimonials__text {
  width: 468px;
}

.testimonials__author {
  margin-top: 121px;
  width: 257px;
  display: flex;
  justify-content: space-between;
}

.testimonials__author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials__author-data p {
  color: #6e6f77;
}

.owl-carousel.testimonals__carousel {
  position: relative;
}

.testimonals__carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 62px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.testimonals__carousel .owl-nav button.owl-prev {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.2s all ease-in;
}

.testimonals__carousel .owl-nav button.owl-next {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.2s all ease-in;
  width: 62px;
  height: 62px;
  background-color: #232536;
}

.testimonals__carousel span[aria-label=Previous] {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: url(../img/carousel/arrow-prew.svg);
}

.testimonals__carousel span[aria-label=Next] {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: url(../img/carousel/arrow-next.svg);
}

.invitation {
  margin-left: auto;
  margin-right: auto;
  width: 414px;
  text-align: center;
}

.invitation__desc {
  margin-top: 16px;
  line-height: 1.75;
  color: #6e6f77;
}

.invitation__btn {
  display: inline-block;
  margin-top: 32px;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33333;
  padding: 16px 48px;
  background-color: #ffd050;
  transition: all 0.2s ease-in;
}

.invitation__btn:hover {
  background-color: #e5e5e5;
}

.footer {
  margin-top: 128px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000;
}

.footer__subscribe-form {
  margin-top: 56px;
  padding: 80px 64px;
  display: flex;
  align-items: center;
  color: #e5e5e5;
  background-color: rgba(28, 29, 28, 0.5);
}

.footer__invitation {
  width: 550px;
  margin-right: 64px;
}

.footer__email {
  width: 323px;
  margin-right: 24px;
  padding: 14px 25px;
  width: 323px;
  height: 56px;
  line-height: 1.75;
  border: 1px solid #4c4c4c;
  color: #6e6f77;
}

input.send-btn {
  width: 179px;
  height: 56px;
  background-color: #ffd050;
  padding: 16px 48px;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33333;
  color: #000;
  transition: all 0.2s ease-in;
}

input.send-btn:hover {
  background-color: #e5e5e5;
}

.footer__feedback {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  color: #e5e5e5;
  opacity: 0.7;
}

.footer__feedback_post {
  line-height: 1.75;
}

.footer__feedback_socials {
  width: 144px;
  height: 16px;
}

.post-blog {
  background-color: #e5e5e5;
}

.post__title {
  margin-left: auto;
  margin-right: auto;
  width: 768px;
}

.post__author {
  display: flex;
  justify-content: left;
  -moz-column-gap: 11px;
  column-gap: 11px;
}

.post__author-name {
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}

.post__author-date {
  color: #6d6e76;
  line-height: 28px;
}

.post__heading {
  margin-top: 24px;
  color: #232536;
  line-height: 64px;
  letter-spacing: -2px;
}

.post__note {
  margin-top: 34px;
  display: flex;
  justify-content: left;
  -moz-column-gap: 4px;
  column-gap: 4px;
}

.post__note_text {
  color: #232536;
}

.post__img {
  width: 100%;
  height: 582px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.post__content {
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  width: 843px;
}

.post__text {
  margin-top: 16px;
  color: #6d6e76;
  line-height: 1.75;
}

.post__text+.post__text {
  margin-top: 24px;
}

.post__list {
  color: #161722;
  padding-left: 24px;
}

.post__list-item {
  list-style-type: disc;
}

.other-posts__wrapper {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid hsla(233, 4%, 45%, 0.301);
}

.other-posts__card {
  width: 405px;
  padding-bottom: 64px;
}

.other-posts__card-img {
  max-width: 100%;
}

.other-posts__card-data {
  margin-top: 32px;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0px;
}

.other-posts__card-title {
  margin-top: 16px;
  color: #232536;
}

.other-posts__card-text {
  margin-top: 16px;
  color: #232536;
  line-height: 28px;
}

.about-us {
  padding-top: 373px;
}

.about-us__shared-block {
  position: relative;
  background-color: #f3f2e6;
}

.about-us__top-layer-wrapper {
  display: flex;
  position: absolute;
  top: -300px;
  left: 109px;
}

.about-us__top-layer {
  color: #232536;
  z-index: 1;
}

.about-us__top-layer:first-child {
  width: 624px;
  padding: 64px;
  background-color: #fff;
}

.about-us__top-layer:first-child h3 {
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-us__top-layer:first-child h1 {
  padding-top: 16px;
}

.about-us__top-layer:last-child {
  width: 510px;
  padding-top: 102px;
  padding-left: 32px;
}

.about-us__top-layer:last-child p {
  line-height: 28px;
}

.about-us__top-block {
  position: relative;
  height: 444px;
  background-color: #9e70bd;
  background-image: url(../img/about/Overview\ .jpeg);
}

.about-us__top-block .pattern {
  position: absolute;
  display: flex;
  bottom: 0px;
  left: 109px;
  width: 862px;
  height: 23px;
  background-color: #fff;
}

.about-us__top-block .pattern .pattern-violet {
  width: 312px;
  background-color: #592ea9;
}

.about-us__top-block .pattern .pattern-yellow {
  width: 550px;
  background-color: #ffd050;
}

.achieve {
  position: absolute;
  width: 630px;
  height: 156px;
  background-color: #ffd050;
  top: -156px;
  padding: 32px 48px 32px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 32px;
  column-gap: 32px;
  color: #232536;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -2px;
}

.achieve p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: left;
}

.about-us__bottom-block {
  height: 444px;
  background: #f4f0f8;
  padding: 128px 108px 64px;
  font-family: "Inter", sans-serif;
  color: #232536;
}

.abount-us__bottom-wrapper {
  display: flex;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

.about-us__block h2 {
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-us__block h3 {
  margin-top: 24px;
  padding-right: 42px;
}

.about-us__block p {
  margin-top: 16px;
  color: #6d6e76;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: left;
}

.about-us__team-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 128px;
}

.about-us__team-wrapper :nth-child(odd) {
  flex-direction: row-reverse;
}

.about-us__team-wrapper :nth-child(even) .about-us__content {
  padding-left: 32px;
  padding-right: 73px;
}

.about-us__team-wrapper :nth-child(odd) .about-us__content {
  padding-right: 100px;
}

.about-us__first-line,
.about-us__last-line {
  display: flex;
  justify-content: space-between;
}

.about-us__img {
  position: relative;
  width: 624px;
  height: 480px;
}

.about-us__img .badge-gelb {
  position: absolute;
  top: 116px;
  left: -57px;
  width: 103px;
  height: 116px;
  background-color: #ffd050;
  border-radius: 40% 0 0 0;
}

.about-us__img .badge-violet {
  position: absolute;
  bottom: -37px;
  left: 107px;
  width: 74px;
  height: 74px;
  background-color: #592ea9;
  border-radius: 50%;
}

.about-us__content {
  width: 624px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.about-us__content :not(:first-child) {
  margin-top: 16px;
}

.about-us__content p {
  color: rgb(35, 37, 54);
  line-height: 28px;
  letter-spacing: 0px;
}

.privacy-header {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f4f0f8;
  text-align: center;
  color: #232536;
}

.privacy-header h1 {
  font-family: "Sen", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -2px;
}

.privacy-header p {
  margin-top: 4px;
  line-height: 28px;
  letter-spacing: 0px;
}

.prvacy-policy__wrapper {
  margin: 0 auto;
  width: 768px;
}

.prvacy-policy__wrapper h1+p {
  margin-top: 32px;
}

.prvacy-policy__wrapper h2 {
  margin-top: 32px;
}

.prvacy-policy__wrapper h2~p {
  margin-top: 24px;
}

.author {
  background-color: #f4f0f8;
}

.author__wrapper {
  position: relative;
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 128px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

.author__img {
  width: 251px;
  height: 294px;
  overflow: hidden;
}

.author__img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.author__data {
  width: 741px;
  color: #232536;
}

.author__data h1 {
  padding-right: 72px;
  line-height: 28px;
  font-family: "Sen", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -2px;
}

.author__data p {
  padding-top: 24px;
  width: 645px;
  font-family: "Inter", sans-serif;
  line-height: 28px;
}

.author__data .author-socials {
  margin-top: 24px;
  margin-left: 0;
}

.pattern {
  position: absolute;
  display: flex;
  left: 0;
  bottom: 0;
}

.pattern-yellow {
  width: 752px;
  height: 24px;
  background-color: #ffd050;
}

.pattern-violet {
  width: 272px;
  height: 24px;
  background-color: #592ea9;
}

.my-posts__posts-wrapper {
  width: 1024px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}

.my-posts__post-card {
  display: flex;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

.my-posts__post-img {
  width: 412px;
  height: 320px;
}

.my-posts__post-info {
  width: 580px;
}

.my-posts__post-category {
  margin-top: 56px;
  color: rgb(89, 46, 169);
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.my-posts__post-title {
  margin-top: 20px;
  color: rgb(35, 37, 54);
  font-family: "Sen", sans-serif;
  font-size: 36px;
}

.my-posts__post-desc {
  margin-top: 16px;
  line-height: 28px;
  letter-spacing: 0px;
}

.contacts__wrapper {
  width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-line {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.contacts__feedback {
  text-align: center;
  color: #232536;
}

.contacts__feedback h3 {
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contacts__feedback h1 {
  margin-top: 12px;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -2px;
}

.contacts__feedback p {
  margin-top: 24px;
  color: #6d6e76;
  line-height: 28px;
  letter-spacing: 0px;
}

.contacts__signboard {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  background: #592ea9;
  padding: 48px 64px;
  display: flex;
  -moz-column-gap: 42px;
  column-gap: 42px;
  color: #fff;
}

.contacts__signboard h4 {
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 16px;
}

.contacts__signboard h3 {
  font-family: "Sen", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.contacts__signboard h3:nth-child(2) {
  margin-top: 16px;
}

.contacts__signboard h3+h3 {
  margin-top: 14px;
}

.contacts__signboard p {
  opacity: 0.6;
  line-height: 28px;
  letter-spacing: 0px;
}

.contacts__data {
  width: 294px;
}

.contacts__feedback-message {
  margin-top: 32px;
}

.contacts__form-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  color: rgb(35, 37, 54);
}

.contacts__form-wrapper * {
  padding: 24px;
  border: 1px solid rgba(109, 110, 118, 0.5);
  border-radius: 2px;
}

.contacts__form-wrapper input[type=submit] {
  height: 64px;
  padding-top: 16px;
  padding-right: 16px;
  background-color: #ffd050;
  cursor: pointer;
  font-family: "Sen", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  border: none;
}

.contacts__form-wrapper textarea {
  height: 144px;
  resize: none;
}

.contacts__form-wrapper textarea::-moz-placeholder {
  color: rgb(109, 110, 118);
}

.contacts__form-wrapper textarea::placeholder {
  color: rgb(109, 110, 118);
}

.select-field select {
  width: 100%;
  padding: unset;
  border: none;
  color: rgb(109, 110, 118);
}