@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Ubuntu:wght@700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

a, a:visited {
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.header__wrapper {
  padding: 50px 0;
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .header__wrapper {
    padding: 25px 0;
  }
}
.header__logo-wrapper {
  display: inline-flex;
  align-items: center;
  width: 25%;
}
.header__logo-img {
  width: 50px;
  height: 55px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .header__logo-img {
    width: 30px;
    height: 35px;
  }
}
.header__logo-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .header__logo-text {
    font-size: 18px;
    line-height: 18px;
  }
}
.header__nav-wrapper {
  display: inline-flex;
  justify-content: end;
  width: 75%;
}
@media (max-width: 767px) {
  .header__nav-wrapper {
    position: absolute;
    opacity: 0;
    top: 85px;
    left: 100vw;
    background: var(--white);
    height: 100vh;
    padding: 20px 0;
    width: calc(100% + 20px);
    transition: var(--transition);
  }
  .header__nav-wrapper.active {
    opacity: 1;
    left: 0;
    text-align: center;
    transition: var(--transition);
    z-index: 100;
    overflow-y: scroll;
  }
}
.header__nav-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px 49px;
}
@media (max-width: 991px) {
  .header__nav-list {
    gap: 15px 20px;
  }
}
@media (max-width: 767px) {
  .header__nav-list {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px 0;
  }
}
.header-burger {
  display: none;
}
@media (max-width: 767px) {
  .header-burger {
    display: inline-flex;
    margin-left: 20px;
    position: relative;
    width: 35px;
    height: 14px;
    align-items: center;
    justify-content: end;
  }
  .header-burger:before, .header-burger:after {
    content: "";
    background-color: var(--black);
    position: absolute;
    height: 2px;
    transition: var(--transition);
  }
  .header-burger:before {
    width: 35px;
    top: 0;
    transition: var(--transition);
  }
  .header-burger:after {
    width: 25px;
    bottom: 0;
    transition: var(--transition);
  }
}
.header-burger__line {
  background-color: var(--black);
  width: 30px;
  height: 2px;
  transition: var(--transition);
}

.footer {
  background-color: var(--black);
}
.footer__wrapper {
  padding: 28px 0 70px;
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
}
.footer__logo-item {
  gap: 35px 0;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .footer__logo-item {
    order: 1;
    width: 50%;
  }
}
@media (max-width: 640px) {
  .footer__logo-item {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .footer__logo-img {
    width: 50px;
    height: 50px;
  }
}
.footer__small-link {
  font-size: 14px;
  line-height: 19px;
  color: var(--light-grey);
}
.footer__areas {
  flex: 1 1 auto;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .footer__areas {
    order: 3;
    width: 100%;
    margin-top: 50px;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .footer__areas {
    order: 2;
    margin-top: 50px;
  }
}
.footer__title {
  font-weight: 700;
  margin-bottom: 14px;
}
.footer__link-wrapper * {
  color: var(--light-grey);
  font-size: 14px;
  line-height: 19px;
}
.footer__contacts {
  width: 25%;
}
@media (max-width: 991px) {
  .footer__contacts {
    order: 2;
    width: 50%;
  }
}
@media (max-width: 640px) {
  .footer__contacts {
    order: 3;
    margin-top: 50px;
    width: 100%;
  }
}
.footer__subtitle {
  margin-top: 13px;
  margin-bottom: 17px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .footer__subtitle {
    font-size: 16px;
  }
}
.footer__contact-item {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.footer__contact-item:not(:last-of-type) {
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .footer__contact-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.footer__contact-img-wrapper {
  width: 47px;
  text-align: left;
}
.footer__contact-link {
  font-size: 16px;
  line-height: 19px;
}

:root {
  --blue: #0094ff;
  --light-blue: #abdcff;
  --light-lates-blue: #abd9ff;
  --black: #636363;
  --grey: #edf2f5;
  --light-grey: #d7d7d7;
  --white: #ffffff;
  --bg-blue: linear-gradient(270deg, var(--blue) 0%, var(--light-lates-blue) 100%);
  --transition: ease-in-out 0.2s;
}

h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 84px;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 52px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 40px;
  }
}

h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 75px;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 44px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 32px;
    line-height: 36px;
  }
}

h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
    line-height: 30px;
  }
}

h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 22px;
    line-height: 24px;
  }
}

.title,
.head-text {
  font-size: 24px;
  line-height: 28px;
}
@media (max-width: 1199px) {
  .title,
.head-text {
    font-size: 20px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .head-text {
    font-size: 18px;
    line-height: 22px;
  }
}

* {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: var(--black);
}
@media (max-width: 767px) {
  * {
    font-size: 17px;
    line-height: 20px;
  }
}

/*растяжка по экрану*/
html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
}

/*end растяжка по экрану*/
.wrapper {
  width: 1320px;
  margin: 0 auto;
}
@media (max-width: 1360px) {
  .wrapper {
    width: 95%;
  }
}

body.no-scroll {
  overflow: hidden;
}

.text-blue {
  color: var(--blue);
}

.text-white {
  color: var(--white);
}

.btn {
  border-radius: 45px;
  padding: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: inline-flex;
  align-items: center;
}
.btn__img-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  margin-right: 24px;
}
@media (max-width: 1199px) {
  .btn__img-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .btn__img-wrapper {
    width: 35px;
    height: 35px;
    margin-right: 15px;
  }
}
.btn__img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199px) {
  .btn__img {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 767px) {
  .btn__img {
    width: 20px;
    height: 20px;
  }
}
.btn__text {
  font-family: "Ubuntu";
  color: var(--white) !important;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .btn__text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .btn__text {
    font-size: 18px;
  }
}

.btn-regular {
  background: linear-gradient(270deg, var(--blue) 0%, var(--light-lates-blue) 100%);
  min-width: 300px;
}
@media (max-width: 1199px) {
  .btn-regular {
    min-width: 250px;
  }
}
@media (max-width: 767px) {
  .btn-regular {
    min-width: 200px;
  }
}

.btn-flat {
  background-color: var(--light-lates-blue);
}

.btn-bs {
  box-shadow: 2px 8px 20px rgba(0, 148, 255, 0.25);
}

.main-section {
  margin-top: 87px;
  margin-bottom: 147px;
}
@media (max-width: 991px) {
  .main-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .main-section {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
.main-section__wrapper {
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.main-section__text-item {
  width: 60%;
  padding-right: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 53px 0;
}
@media (max-width: 1199px) {
  .main-section__text-item {
    gap: 30px 0;
  }
}
@media (max-width: 767px) {
  .main-section__text-item {
    width: 100%;
  }
}
.main-section__cases-wrapper {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px 0;
}
@media (max-width: 767px) {
  .main-section__cases-wrapper {
    justify-content: start;
  }
}
.main-section__case {
  margin-right: 80px;
}
@media (max-width: 1199px) {
  .main-section__case {
    margin-right: 40px;
  }
}
.main-section__btn {
  margin-top: 32px;
}
@media (max-width: 1199px) {
  .main-section__btn {
    margin-top: 0;
  }
}
.main-section__img-item {
  width: 40%;
  filter: drop-shadow(2px 8px 15px rgba(0, 148, 255, 0.1));
  border-radius: 10px;
}
@media (max-width: 767px) {
.main-section__img-item {
display: block;
width: 100%;
margin: 20px 0 0;
}
}
.main-section__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.advantages {
  margin-bottom: 105px;
}
@media (max-width: 991px) {
  .advantages {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .advantages {
    margin-bottom: 50px;
  }
}
.advantages__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 30px;
}
@media (max-width: 991px) {
  .advantages__wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.advantages__item {
  display: inline-flex;
  flex-direction: column;
  background-color: var(--grey);
  border-radius: 15px;
  padding: 50px 25px 30px;
  transition: var(--transition);
}
@media (max-width: 1199px) {
  .advantages__item {
    padding: 30px 15px;
  }
}
@media (max-width: 991px) {
  .advantages__item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 640px) {
  .advantages__item {
    padding-top: 15px;
    width: 100%;
  }
}
.advantages__item:hover {
  transition: var(--transition);
  background-color: var(--light-blue);
}
.advantages__img-wrapper {
  text-align: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
}
@media (max-width: 1199px) {
  .advantages__img-wrapper {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 640px) {
  .advantages__img-wrapper {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
  }
}
.advantages__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.advantages__text-wrapper {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.advantages__title {
  display: inline-flex;
  width: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  min-height: 66px;
}
@media (max-width: 640px) {
  .advantages__title {
    min-height: unset;
  }
}
.advantages__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .advantages__text {
    height: auto;
  }
}

.capture {
  background-color: var(--black);
  margin-bottom: 88px;
}
@media (max-width: 1199px) {
  .capture {
    margin-bottom: 60px;
  }
}
.capture__wrapper {
  padding: 50px 0 69px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .capture__wrapper {
    padding: 40px 0 50px;
  }
}
.capture__text-small {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 1199px) {
  .capture__text-small {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .capture__text-small {
    margin-bottom: 20px;
  }
}
.capture__title {
  margin-bottom: 78px;
  text-align: center;
}
@media (max-width: 1199px) {
  .capture__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .capture__title {
    margin-bottom: 30px;
  }
}
.content {
  margin-bottom: 122px;
}
@media (max-width: 1199px) {
  .content {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .content {
    margin-bottom: 60px;
  }
}
.content__wrapper {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.content__content {
  width: calc(100% - 420px);
  padding-right: 48px;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .content__content {
    width: calc(100% - 340px);
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .content__content {
    width: 100%;
    padding-right: 0;
  }
}
.content__title {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .content__title {
    margin-bottom: 20px;
  }
}
.content__text {
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .content__text {
    margin-bottom: 25px;
  }
}
.content__img-full-wrapper {
  width: 100%;
}
.content__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content__btn-wrapper {
  margin: 73px 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .content__btn-wrapper {
    margin: 40px 0;
  }
}
@media (max-width: 991px) {
  .content__btn-wrapper {
    margin: 30px 0;
    gap: 15px 0;
  }
}
.content__btn {
  margin-right: 27px;
}
@media (max-width: 1199px) {
  .content__btn {
    margin-right: 20px;
  }
}
.content__btn-text {
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
}
@media (max-width: 1199px) {
  .content__btn-text {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 640px) {
  .content__btn-text {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  .content__btn-text {
    display: inline-block;
    width: 100%;
    font-size: 28px;
    line-height: 32px;
  }
}
.content__aside {
  width: 420px;
  overflow-x: hidden;
}
@media (max-width: 1199px) {
  .content__aside {
    width: 340px;
  }
}

.content-item {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}
.content-item__title {
  width: 100%;
  display: inline-block;
}
.content-item__text {
  width: 100%;
  display: inline-block;
}

.content-aside {
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .content-aside {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
}
.content-aside__wrapper {
  background-color: var(--grey);
  width: 100%;
  box-shadow: 2px 8px 20px rgba(237, 242, 245, 0.6);
  border-top: 10px solid var(--light-lates-blue);
  border-radius: 10px;
  padding: 38px 40px 40px;
}
@media (max-width: 1199px) {
  .content-aside__wrapper {
    padding: 20px 25px;
  }
}
@media (max-width: 991px) {
  .content-aside__wrapper {
    width: calc(50% - 10px);
    min-width: 305px;
    flex: 1 1 auto;
  }
  .content-aside__wrapper iframe {
    width: 100%;
  }
}
.content-aside__wrapper:not(:last-of-type) {
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .content-aside__wrapper:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .content-aside__wrapper:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.content-aside__wrapper_contacts {
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .content-aside__wrapper_contacts {
    padding-bottom: 50px;
  }
}
.content-aside__wrapper_services {
  padding-bottom: 44px;
}
@media (max-width: 1199px) {
  .content-aside__wrapper_services {
    padding-bottom: 20px;
  }
}
.content-aside__wrapper_map {
  padding-bottom: 38px;
}
@media (max-width: 1199px) {
  .content-aside__wrapper_map {
    padding-bottom: 15px;
  }
}
.content-aside__title {
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .content-aside__title {
    margin-bottom: 20px;
  }
}
.content-aside__title_contacts {
  margin-bottom: 58px;
}
@media (max-width: 1199px) {
  .content-aside__title_contacts {
    margin-bottom: 30px;
  }
}
.content-aside__text-wrapper {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.content-aside__map-wrapper {
  width: 100%;
}
.content-aside__text-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 28px;
}
@media (max-width: 1199px) {
  .content-aside__text-title {
    font-size: 16px;
    line-height: 18px;
  }
}
.content-aside__contacts-elem {
  display: inline-flex;
  width: 100%;
  align-items: center;
}
.content-aside__contacts-elem:not(:last-of-type) {
  margin-bottom: 28px;
}
@media (max-width: 1199px) {
  .content-aside__contacts-elem:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.content-aside__contacts-img-wrapper {
  display: inline-flex;
  align-items: center;
  width: 30px;
  min-width: 30px;
  margin-right: 18px;
}
@media (max-width: 1199px) {
  .content-aside__contacts-img-wrapper {
    width: 20px;
    min-width: 20px;
  }
}
.content-aside__contacts-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-aside__contacts-link {
  font-size: 16px;
  line-height: 19px;
  display: inline;
}
.content-aside__text {
  font-size: 16px;
  line-height: 25px;
}
.content-aside__list-wrapper {
  width: 100%;
  display: inline-flex;
}
.content-aside__list {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 11px 10px;
  margin-bottom: 56px;
}
@media (max-width: 1199px) {
  .content-aside__list {
    margin-bottom: 30px;
  }
}
.content-aside__list-link {
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-lates-blue);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1199px) {
  .content-aside__list-link {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .content-aside__list-link {
    padding: 7px 12px;
  }
}
.content-aside__btn {
  min-width: 234px;
}
@media (max-width: 1199px) {
  .content-aside__btn {
    min-width: 180px;
  }
}
.content-aside__btn .btn__text {
  color: var(--black) !important;
  font-size: 18px;
  line-height: 21px;
}
@media (max-width: 1199px) {
  .content-aside__btn .btn__text {
    font-size: 16px;
  }
}
.content-aside__btn .btn__img-wrapper {
  width: 50px;
  height: 50px;
  margin-right: 17px;
}
@media (max-width: 1199px) {
  .content-aside__btn .btn__img-wrapper {
    width: 30px;
    height: 30px;
  }
}
.content-aside__btn .btn__img {
  width: 27px;
  height: 27px;
}
@media (max-width: 1199px) {
  .content-aside__btn .btn__img {
    width: 15px;
    height: 15px;
  }
}

.testimonials {
  margin-bottom: 99px;
}
@media (max-width: 991px) {
  .testimonials {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .testimonials {
    margin-bottom: 50px;
  }
}
.testimonials__wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.testimonials__item {
  background-color: var(--grey);
  border-radius: 25px;
  padding: 33px 32px;
  min-height: 185px;
  max-width: 100%;
  filter: drop-shadow(2px 4px 15px rgba(147, 147, 147, 0.1));
}
.testimonials__item_1 {
  width: 485px;
}
.testimonials__item_2 {
  width: 638px;
}
.testimonials__item_3 {
  width: 663px;
}
.testimonials__item_4 {
  width: 504px;
}
@media (max-width: 1300px) {
  .testimonials__item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .testimonials__item {
    width: 100%;
    padding: 20px 25px;
    min-height: unset;
  }
}
.testimonials__header {
  margin-bottom: 17px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .testimonials__header {
    flex-direction: column;
    align-items: start;
    gap: 5px 0;
  }
}
.testimonials__name {
  margin-right: 30px;
  font-weight: 700;
}
.testimonials__rating-wrapper {
  display: inline-flex;
  align-items: center;
  width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  .testimonials__rating-wrapper {
    width: 18px;
    height: 18px;
  }
}
.testimonials__rating-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 6px;
}
.masters {
  margin-bottom: 110px;
}
@media (max-width: 991px) {
  .masters {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .masters {
    margin-bottom: 60px;
  }
}
.masters__wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .masters__wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
}
.masters__item {
  background: #ffffff;
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 38px;
  position: relative;
}
.masters__item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(237, 242, 245, 0.9);
  filter: blur(40px);
}
.masters__img-wrapper {
  height: 120px;
  margin-bottom: 34px;
}
.masters__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
.masters__name {
  font-weight: 700;
  margin-bottom: 13px;
  text-align: center;
}
.masters__rating-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3px;
  margin-bottom: 15px;
}
.masters__rating-img {
  width: 17px;
  height: 16px;
}
.masters__description {
  text-align: center;
  margin-bottom: 34px;
}
.masters__btn {
  margin-top: auto;
  min-width: 166px;
}
.masters__btn .btn__text {
  color: var(--black) !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
.masters__btn .btn__img-wrapper {
  width: 35px;
  height: 35px;
  margin-right: 13px;
}
.masters__btn .btn__img {
  width: 19px;
  height: 19px;
}

.partners {
  margin-bottom: 177px;
}
@media (max-width: 1199px) {
  .partners {
    margin-bottom: 140px;
  }
}
@media (max-width: 991px) {
  .partners {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .partners {
    margin-bottom: 70px;
  }
}
.partners__wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 31px;
}
@media (max-width: 1360px) {
  .partners__wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .partners__wrapper {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .partners__wrapper {
    gap: 15px;
  }
}
.partners__img-wrapper {
  width: 100%;
}
.partners__img {
  -o-object-fit: contain;
     object-fit: contain;
}