:root {
  --font-title: Roboto, sans-serif;
  --font-base: Roboto, sans-serif;
  --text-color: #4f4f4f;
}

.swiper-button-prev,
.swiper-button-next {
  display: flex;
  width: 40px;
  height: 40px;
  background: #b4a3d6;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  width: 30px;
  height: 30px;
  margin: auto;
  content: "";
  background: url("images/slide-prev.svg") no-repeat;
}

.swiper-button-next::before {
  background: url("images/slide-next.svg") no-repeat;
}

.section-title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #4f4f4f;
}
@media (max-width: 640px) {
  .section-title {
    font-size: 30px;
  }
}

.poster {
  position: relative;
  color: #fff;
  background: #444 no-repeat center/cover;
}
.poster__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  background: linear-gradient(90deg, rgba(26, 24, 23, 0.8) 0%, rgba(74, 70, 68, 0) 73.13%);
}
.poster__container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 442px;
}
.poster__main {
  padding-left: 100px;
}
.poster__title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.58;
  text-transform: uppercase;
}
.poster__title b {
  display: block;
}
.poster__subtitle {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1875;
  margin-top: 18px;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .poster__container {
    min-height: 0;
  }
  .poster__main {
    padding: 50px;
  }
}

.about-me {
  margin-top: 80px;
  margin-bottom: 80px;
}
.about-me__container {
  display: flex;
  align-items: center;
  padding-left: 130px;
}
.about-me__cover {
  flex-shrink: 0;
  width: 364px;
}
.about-me__image {
  display: block;
  width: 100%;
}
.about-me__main {
  flex-grow: 1;
}
.about-me__title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 50px;
  text-transform: uppercase;
  color: #4f4f4f;
}
.about-me__content {
  margin-top: 40px;
  margin-left: -30px;
  padding: 55px 55px 55px 77px;
  background: #fff;
  box-shadow: 0 4px 40px 0 rgba(232, 227, 242, 0.75);
}
@media (max-width: 991px) {
  .about-me__container {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .about-me__container {
    align-items: flex-start;
  }
  .about-me__cover {
    width: 37%;
  }
  .about-me__title {
    font-size: 30px;
    padding-left: 50px;
  }
  .about-me__content {
    padding: 40px;
  }
}
@media (max-width: 640px) {
  .about-me__container {
    display: block;
  }
  .about-me__title {
    margin-top: 20px;
    padding: 0;
    text-align: center;
  }
  .about-me__cover {
    width: 364px;
    max-width: 100%;
    margin: auto;
  }
  .about-me__content {
    margin-left: 0;
  }
}

.my-advantages {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.1875;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 70px;
}
.my-advantages__title {
  font-weight: 600;
  text-transform: uppercase;
  color: #b4a3d6;
}
.my-advantages__desc {
  font-weight: 500;
  margin-top: 10px;
  color: #62605f;
}
@media (max-width: 767px) {
  .my-advantages {
    grid-gap: 20px 30px;
  }
  .my-advantages__container {
    align-items: flex-start;
  }
  .my-advantages__cover {
    width: 37%;
  }
}

.service-list {
  margin-top: 130px;
  margin-bottom: 130px;
}
.service-list__subtitle {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #62605f;
}
.service-list__items {
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 20px;
}
@media (max-width: 991px) {
  .service-list__items {
    grid-template-columns: 1fr;
  }
}

.service-item {
  font-family: var(--font-base);
  display: flex;
  color: var(--text-color);
  background: #fff;
  box-shadow: 0 4px 40px 0 #d3cce1;
}
.service-item__cover {
  flex-shrink: 0;
  width: 270px;
}
.service-item__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item__main {
  flex-grow: 1;
  padding: 30px 20px 20px;
}
.service-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.service-item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  margin-top: 12px;
}
.service-item__footer {
  margin-top: 25px;
}
@media (max-width: 1200px) {
  .service-item__cover {
    width: 40%;
  }
}

.special-offers {
  margin-top: 130px;
  margin-bottom: 130px;
}
.special-offers__title {
  margin-bottom: 30px;
}

.offer-slide {
  font-family: var(--font-base);
  width: 754px;
  height: 280px;
  color: #fff;
  background: #444 no-repeat center/cover;
}
.offer-slide__content {
  padding: 50px;
}
.offer-slide__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.offer-slide__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  max-width: 50%;
  margin-top: 16px;
}
.offer-slide__footer {
  margin-top: 16px;
}
@media (max-width: 991px) {
  .offer-slide {
    width: 500px;
  }
}

.clients {
  margin-top: 130px;
  margin-bottom: 130px;
  padding-right: 20px;
  padding-left: 20px;
}
.clients__title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .clients .swiper-button-prev,
.clients .swiper-button-next {
    display: none;
  }
}

.client-slide {
  font-family: var(--font-base);
  line-height: 1.5;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 360px;
  height: 138px;
  padding: 10px;
  border: 1px solid #e7e2f1;
}
.client-slide__logo {
  width: 134px;
}
.client-slide__content {
  padding-right: 20px;
  padding-left: 20px;
}
.client-slide__title {
  font-size: 16px;
  font-weight: 600;
  color: #62605f;
}
.client-slide__text {
  font-size: 15px;
  margin-top: 10px;
}

.reviews {
  margin-top: 130px;
  margin-bottom: 130px;
}
.reviews__header {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.reviews__title {
  position: relative;
}
.reviews__subtitle {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  position: absolute;
  bottom: 7px;
  left: 100%;
  display: none;
  margin-left: 45px;
  white-space: nowrap;
  text-transform: none;
  color: #b4a3d6;
}
.reviews__subtitle a {
  text-decoration: none;
  color: currentColor;
}
.reviews__subtitle a:hover {
  text-decoration: underline;
}
.reviews .swiper-button-prev,
.reviews .swiper-button-next {
  width: 50px;
  height: 50px;
  background: none;
}
.reviews .swiper-button-prev::before,
.reviews .swiper-button-next::before {
  width: 50px;
  height: 50px;
  background: url("images/slide-prev2.svg") no-repeat;
}
.reviews .swiper-button-next::before {
  background: url("images/slide-next2.svg") no-repeat;
}

.review-slide {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.14;
  display: flex;
  box-sizing: border-box;
  padding-right: 60px;
  padding-left: 60px;
}
.review-slide__side {
  overflow: hidden;
  flex-shrink: 0;
  width: 472px;
  border-radius: 4px;
}
.review-slide__main {
  padding-left: 40px;
}
.review-slide__object {
  width: 100%;
}
.review-slide__photo {
  margin-bottom: 30px;
}
.review-slide__photo img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.review-slide__name {
  color: #62605f;
}
.review-slide__date {
  margin-top: 10px;
  color: #c1c0bf;
}
.review-slide__text {
  font-weight: 400;
  line-height: 1.357;
  margin-top: 16px;
  color: #62605f;
}
@media (max-width: 1200px) {
  .review-slide__side {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .review-slide__top {
    display: flex;
    align-items: center;
  }
  .review-slide__user {
    padding-left: 30px;
  }
  .review-slide__photo {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  .review-slide {
    display: block;
  }
  .review-slide__side {
    width: 100%;
  }
  .review-slide__main {
    margin-top: 30px;
    padding-left: 0;
  }
}

.webinars__container {
  display: flex;
  padding-left: 60px;
}
.webinars__header {
  flex-shrink: 0;
  width: 310px;
  padding-top: 70px;
}
.webinars__title {
  text-align: left;
}
.webinars__subtitle {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  margin-top: 14px;
  text-transform: none;
  color: #b4a3d6;
}
.webinars__subtitle a {
  text-decoration: none;
  color: currentColor;
}
.webinars__subtitle a:hover {
  text-decoration: underline;
}
.webinars__main {
  display: grid;
  flex-grow: 1;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 991px) {
  .webinars__container {
    padding-left: 0;
  }
  .webinars__header {
    width: 210px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .webinars__container {
    display: block;
  }
  .webinars__header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
    padding-top: 0;
  }
  .webinars__subtitle {
    margin-top: 0;
    margin-left: 30px;
  }
}
@media (max-width: 640px) {
  .webinars__main {
    grid-template-columns: 100%;
  }
}

.webinar-item {
  position: relative;
}
.webinar-item__cover {
  overflow: hidden;
  border-radius: 4px;
}
.webinar-item__cover a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.webinar-item__cover img {
  display: block;
  width: 100%;
}
.webinar-item__header {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

/*# sourceMappingURL=style2.css.map */
