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

a {
  color: inherit;
  text-decoration: none;
}

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

input,
button {
  border: none;
  font-family: inherit;
  font-size: inherit;
}

button,
input[type=submit] {
  background: none;
  cursor: pointer;
}

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

ul,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6875;
  color: #323232;
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container--fluid {
  max-width: unset;
  width: 100%;
}
.container--no-padding {
  padding: 0;
}

.title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.48;
}

.none {
  display: none;
}

.nav {
  padding-top: 35px;
  padding-bottom: 33px;
}

.nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*-----------------960-----------------*/
@media (max-width: 960px) {
  .nav {
    padding-top: 25px;
    padding-bottom: 23px;
  }
}
/*-----------------800-----------------*/
@media (max-width: 800px) {
  .nav__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/*-----------------600-----------------*/
@media (max-width: 600px) {
  .nav__row {
    font-size: 12px;
    line-height: 1.1;
  }
}
/*-----------------440-----------------*/
@media (max-width: 440px) {
  .nav {
    padding-top: 5px;
    padding-bottom: 15px;
  }
  .nav__row {
    font-size: 14px;
    line-height: 1.1;
  }
}
.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

/*---------------------600-------------------------*/
@media (max-width: 600px) {
  .logo {
    font-size: 18px;
  }
  .logo img {
    width: 34px;
    height: 34px;
  }
}
/*---------------------400-------------------------*/
@media (max-width: 400px) {
  .logo {
    font-size: 14px;
  }
  .logo img {
    width: 14px;
    height: 14px;
  }
}
.navigation-list ul {
  display: flex;
}
.navigation-list li:not(:last-child) {
  margin-right: 42px;
}
.navigation-list a:hover {
  color: #ff6a00;
}

.active {
  color: #ff6a00;
  font-weight: 700;
}

/*-----------------640-----------------*/
@media (max-width: 640px) {
  .navigation-list ul {
    display: flex;
    align-items: center;
  }
  .navigation-list li:not(:last-child) {
    margin-right: 22px;
  }
}
/*-----------------440-----------------*/
@media (max-width: 440px) {
  .navigation-list ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 5px;
  }
  .navigation-list li:not(:last-child) {
    margin-right: 10px;
  }
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__text {
  max-width: 465px;
  padding: 5px;
}

.header__title {
  position: relative;
  z-index: 9;
  margin-right: -160px;
  font-weight: 700;
  font-size: 54px;
  line-height: 146%;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
}

.header__title p {
  font-weight: 400;
  letter-spacing: 0.07em;
  margin-bottom: 1em;
}

.header__img img {
  border-radius: 40px 40px 40px 0;
}

.header__form {
  margin-top: 42px;
  width: 90%;
}

/*-------------------960----------------------*/
@media (max-width: 960px) {
  .header__title {
    margin-right: -150px;
    font-size: 44px;
    line-height: 136%;
    margin-bottom: 20px;
  }
  .header__form {
    margin-top: 32px;
  }
}
/*-------------------790----------------------*/
@media (max-width: 790px) {
  .header__text {
    max-width: 410px;
  }
  .header__title {
    margin-right: -130px;
    font-size: 34px;
    line-height: 116%;
    margin-bottom: 10px;
  }
  .header__form {
    margin-top: 22px;
  }
}
/*-------------------600----------------------*/
@media (max-width: 600px) {
  .header__text {
    max-width: 310px;
  }
  .header__title {
    margin-right: -120px;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 5px;
  }
  .header__title p {
    font-size: 12px;
  }
  .header__form {
    margin-top: 12px;
    font-size: 10px;
    width: 70%;
  }
}
/*-------------------400----------------------*/
@media (max-width: 400px) {
  .header__text {
    max-width: 170px;
  }
  .header__title {
    margin-right: -110px;
    font-size: 16px;
  }
  .header__form {
    max-width: 100px;
    width: 30%;
  }
  body {
    font-size: 12px;
    line-height: 1.1;
  }
  .header__img img {
    border-radius: 10px 10px 10px 0;
  }
}
.form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 29px;
  height: 58px;
  box-shadow: 0 17px 42px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
  transition: box-shadow 0.4s ease-in;
}
.form--active {
  box-shadow: 0 17px 42px rgba(247, 132, 52, 0.37);
}

.form__label {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 72px;
  align-items: center;
}
.form__label ::before {
  position: absolute;
  top: 20px;
  left: 28px;
  content: "";
  display: block;
  width: 24px;
  height: 19px;
  background-image: url("../img/icons/mail.svg");
  background-size: initial;
}

.form__input {
  flex-grow: 1;
  margin-right: 5px;
}
.form__input::-moz-placeholder {
  font-weight: 400;
  color: #bbb;
}
.form__input::placeholder {
  font-weight: 400;
  color: #bbb;
}

/*-------------------960----------------------*/
@media (max-width: 960px) {
  .form {
    border-radius: 20px;
    height: 48px;
  }
}
/*-------------------790----------------------*/
@media (max-width: 790px) {
  .form {
    border-radius: 20px;
    height: 38px;
  }
  .form__label {
    padding-left: 52px;
  }
  .form__label ::before {
    top: 10px;
    left: 18px;
    width: 24px;
    height: 18px;
  }
}
/*-------------------600----------------------*/
@media (max-width: 600px) {
  .form {
    border-radius: 20px;
    height: 28px;
  }
  .form__label {
    padding-left: 32px;
  }
  .form__label ::before {
    display: none;
  }
}
/*-------------------400----------------------*/
@media (max-width: 400px) {
  .form {
    max-width: 150px;
    border-radius: 20px;
    height: 18px;
  }
  .form__label {
    max-width: 150px;
    flex-wrap: wrap;
    padding-left: 0px;
  }
  .form__input {
    display: none;
  }
}
.button {
  display: inline-block;
  border-radius: 29px;
  height: 58px;
  padding-left: 37px;
  padding-right: 37px;
  background: #f78434;
  line-height: 58px;
  font-weight: 700;
  color: #fff;
  transition: background-color 0.4s ease-in;
}
.button:hover {
  background-color: #ff6a00;
}
.button--white {
  background: #fff;
  text-align: center;
  color: #323232;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  transition: all 0.8s ease-in;
}
.button--white:hover {
  background: #323232;
  color: #fff;
}

/*-------------------960----------------------*/
@media (max-width: 960px) {
  .button {
    border-radius: 29px;
    height: 48px;
    padding-left: 27px;
    padding-right: 27px;
    line-height: 48px;
    font-weight: 600;
  }
}
/*-------------------790----------------------*/
@media (max-width: 790px) {
  .button {
    border-radius: 29px;
    height: 38px;
    padding-left: 17px;
    padding-right: 17px;
    line-height: 38px;
  }
}
/*-------------------600----------------------*/
@media (max-width: 600px) {
  .button {
    border-radius: 29px;
    height: 28px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 28px;
  }
}
/*-------------------400----------------------*/
@media (max-width: 400px) {
  .button {
    border-radius: 19px;
    height: 18px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 18px;
  }
}
.clients {
  padding-top: 100px;
  padding-bottom: 45px;
}

.clients__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*-------------900--------------*/
@media (max-width: 900px) {
  .clients {
    padding-top: 60px;
    padding-bottom: 35px;
  }
  .clients__row img {
    width: 170px;
  }
}
/*-------------750--------------*/
@media (max-width: 750px) {
  .clients {
    padding-top: 40px;
    padding-bottom: 25px;
  }
  .clients__row img {
    width: 130px;
  }
}
/*-------------600--------------*/
@media (max-width: 600px) {
  .clients {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .clients__row img {
    width: 100px;
    height: 25px;
  }
}
/*-------------450--------------*/
@media (max-width: 450px) {
  .clients {
    padding-top: 20px;
    padding-bottom: 5px;
  }
  .clients__row img {
    width: 70px;
  }
}
.objects {
  padding-top: 45px;
  padding-bottom: 80px;
}

.objects__row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1495px) {
  .objects__row {
    justify-content: flex-end;
  }
}

.objects__img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.objects__text {
  flex-shrink: 0;
  width: 374px;
  padding-left: 181px;
  padding-right: 150px;
  box-sizing: content-box;
}
.objects__text p + p {
  margin-top: 20px;
}

.objects__title {
  margin-bottom: 20px;
}

.object-button {
  margin-top: 40px;
}

/*--------------------1000-------------------*/
@media (max-width: 1000px) {
  .objects {
    padding-top: 35px;
    padding-bottom: 60px;
  }
  .objects__text {
    flex-shrink: 0;
    width: 300px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .objects__text p + p {
    margin-top: 15px;
  }
  .objects__title {
    margin-bottom: 80px;
  }
  .object-button {
    margin-top: 30px;
  }
}
/*--------------------700-------------------*/
@media (max-width: 700px) {
  .objects {
    padding-top: 25px;
    padding-bottom: 40px;
  }
  .objects__text {
    flex-shrink: 0;
    width: 300px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .objects__text p + p {
    margin-top: 10px;
  }
  .objects__title {
    margin-bottom: 40px;
  }
  .object-button {
    margin-top: 20px;
  }
}
/*--------------------600-------------------*/
@media (max-width: 600px) {
  .objects {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .objects__text {
    flex-shrink: 0;
    width: 200px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .objects__text p + p {
    margin-top: 10px;
  }
  .objects__title {
    margin-bottom: 20px;
  }
  .object-button {
    margin-top: 20px;
  }
  body {
    font-size: 14px;
    line-height: 1.4875;
  }
}
/*--------------------450-------------------*/
@media (max-width: 450px) {
  .objects {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .objects__text {
    flex-shrink: 0;
    width: 150px;
  }
  .objects__text p + p {
    margin-top: 5px;
  }
  .objects__title {
    margin-bottom: 10px;
  }
  .object-button {
    margin-top: 10px;
  }
  body {
    font-size: 10px !important;
    line-height: 1.1;
  }
}
.title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.48;
}

/*--------------------700-------------------*/
@media (max-width: 700px) {
  .title {
    font-size: 32px;
    line-height: 1.28;
  }
}
/*--------------------600-------------------*/
@media (max-width: 600px) {
  .title {
    font-size: 22px;
    line-height: 1.18;
  }
}
/*--------------------450-------------------*/
@media (max-width: 450px) {
  .title {
    font-size: 14px;
    line-height: 1.1;
  }
}
.img-card {
  position: relative;
  width: 385px;
}
.img-card + .img-card {
  margin-left: 32px;
}

.img-card__info {
  position: absolute;
  right: -46px;
  bottom: 87px;
}

.img-card--rounded {
  border-radius: 20px;
}

.img-card__img {
  border-radius: 20px 20px 0 20px;
}

/*--------------------700-------------------*/
@media (max-width: 700px) {
  .img-card {
    width: 300px;
  }
  .img-card + .img-card {
    margin-left: 22px;
  }
  .img-card__info {
    right: 10px;
    bottom: 27px;
  }
  .img-card--rounded {
    border-radius: 18px;
  }
  .img-card__img {
    border-radius: 18px 18px 0 18px;
  }
}
/*--------------------600-------------------*/
@media (max-width: 600px) {
  .img-card {
    width: 200px;
  }
  .img-card + .img-card {
    margin-left: 12px;
  }
  .img-card__info {
    right: 10px;
    bottom: 27px;
  }
  .img-card--rounded {
    border-radius: 10px;
  }
  .img-card__img {
    border-radius: 10px 10px 0 10px;
  }
}
/*--------------------450-------------------*/
@media (max-width: 450px) {
  .img-card {
    width: 120px;
  }
  .img-card + .img-card {
    margin-left: 5px;
  }
  .img-card__info {
    right: 5px;
    bottom: 17px;
  }
}
.card-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  width: 300px;
  height: 141px;
  box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.card-info__text {
  width: 177px;
}

.card-info__title {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.card-info__title p {
  font-weight: 400;
  letter-spacing: 0.07em;
}

/*--------------------700-------------------*/
@media (max-width: 700px) {
  .card-info {
    gap: 10px;
    border-radius: 10px;
    width: 250px;
    height: 100px;
  }
}
/*--------------------600-------------------*/
@media (max-width: 600px) {
  .card-info {
    gap: 5px;
    padding-left: 5px;
    border-radius: 10px;
    width: 210px;
    height: 80px;
  }
}
/*--------------------450-------------------*/
@media (max-width: 450px) {
  .card-info {
    width: 150px;
    height: 60px;
  }
}
.cta {
  padding-top: 70px;
  padding-bottom: 70px;
}

.cta__block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: #58bebf;
  border-radius: 20px;
  color: #fff;
}

.cta__img {
  margin-top: 60px;
  padding-top: 25px;
  padding-right: 25px;
  border-radius: 0 22px 0 0;
  box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.cta__text {
  background: url("../img/cta/oval-bottom-left.svg") bottom left -186px no-repeat, url("../img/cta/oval-top-right.svg") right top no-repeat;
  width: 555px;
  box-sizing: border-box;
  padding-left: 95px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta__text p {
  width: 370px;
}

.cta__title {
  margin-bottom: 15px;
}

.cta__buttons-row {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

/*---------------------850--------------------*/
@media (max-width: 850px) {
  .cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cta__block {
    border-radius: 18px;
  }
  .cta__img {
    margin-top: 40px;
    padding-top: 20px;
    padding-right: 20px;
    border-radius: 0 20px 0 0;
    box-shadow: 4px 18px 38px -2px rgba(0, 0, 0, 0.12);
  }
  .cta__text {
    width: 555px;
    box-sizing: border-box;
    padding-left: 65px;
    padding-right: 30px;
  }
  .cta__text p {
    width: 370px;
  }
  .cta__title {
    margin-bottom: 10px;
  }
  .cta__buttons-row {
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 15px;
  }
}
/*---------------------700--------------------*/
@media (max-width: 700px) {
  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cta__block {
    border-radius: 14px;
  }
  .cta__img {
    margin-top: 20px;
    padding-top: 10px;
    padding-right: 10px;
    border-radius: 0 15px 0 0;
    box-shadow: 4px 15px 30px -2px rgba(0, 0, 0, 0.12);
  }
  .cta__text {
    max-width: 400px;
    padding-left: 35px;
    padding-right: 10px;
  }
  .cta__text p {
    width: 200px;
  }
}
/*---------------------400--------------------*/
@media (max-width: 400px) {
  .cta {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cta__block {
    border-radius: 10px;
  }
  .cta__img {
    margin-top: 10px;
    padding-top: 5px;
    padding-right: 5px;
    border-radius: 0 10px 0 0;
    box-shadow: 4px 10px 20px -2px rgba(0, 0, 0, 0.12);
  }
  .cta__text {
    max-width: 200px;
    padding-left: 15px;
    padding-right: 5px;
  }
  .cta__text p {
    width: 150px;
  }
  .cta__buttons-row {
    margin-top: 5px;
    margin-bottom: 5px;
    gap: 5px;
    flex-wrap: wrap;
  }
}
.serve {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.serve::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5f6fa;
  position: absolute;
  top: -40%;
  bottom: 60%;
  left: 0;
  z-index: -1;
}

.serve__heading {
  margin-bottom: 45px;
  text-align: center;
}
.serve__heading .title {
  margin-bottom: 10px;
}

.card-customer__text {
  margin-bottom: 25px;
}

.serve__row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

/*----------------------600----------------------*/
@media (max-width: 600px) {
  .serve {
    padding-top: 15px;
    padding-bottom: 25px;
  }
  .serve__heading {
    margin-bottom: 10px;
  }
  .card-customer__text {
    margin-bottom: 10px;
  }
  .serve__row {
    -moz-column-gap: 10px;
         column-gap: 10px;
    justify-content: space-evenly;
  }
}
.card-customer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 88px;
  background-color: #fff;
  box-shadow: 0 40px 52px -22px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-align: center;
  transition: all 0.8s ease-in;
}
.card-customer__icon {
  fill: #f78434;
  transition: fill 0.8s ease-in;
  margin-bottom: 15px;
}
.card-customer:hover {
  background-color: #f78434;
  color: #fff;
}
.card-customer:hover .card-customer__icon {
  fill: #fff;
}
.card-customer:hover .button {
  background-color: #fff;
  color: #f78434;
}

/*----------------------600----------------------*/
@media (max-width: 600px) {
  .card-customer {
    padding: 10px 18px;
    box-shadow: 0 30px 42px -20px rgba(0, 0, 0, 0.08);
  }
  .card-customer__icon {
    margin-bottom: 10px;
  }
}
.benefits {
  padding-bottom: 110px;
}

.benefits__heading {
  text-align: center;
  padding-bottom: 58px;
}

.benefits__row {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 35px;
       column-gap: 35px;
}

/*-----------------------800----------------------*/
@media (max-width: 800px) {
  .benefits {
    padding-bottom: 60px;
  }
  .benefits__heading {
    padding-bottom: 30px;
  }
  .benefits__row {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
/*-----------------------560----------------------*/
@media (max-width: 560px) {
  .benefits {
    padding-bottom: 20px;
  }
  .benefits__heading {
    padding-bottom: 20px;
  }
  .benefits__row {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
/*-----------------------400----------------------*/
@media (max-width: 400px) {
  .benefits {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .benefits__heading {
    padding-bottom: 10px;
  }
  .benefits__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.benefit-item {
  text-align: center;
}
.benefit-item__img {
  margin-bottom: 15px;
  display: inline-block;
}
.benefit-item__img circle {
  fill: rgba(88, 190, 191, 0.2);
  transition: fill 0.6s ease-in;
}
.benefit-item__img path,
.benefit-item__img ellipse {
  fill: #58bebf;
  transition: path 0.6s ease-in;
}
.benefit-item:hover .benefit-item__img circle {
  fill: #f78434;
}
.benefit-item:hover .benefit-item__img path {
  fill: #fff;
}

.benefit-item__title {
  margin-bottom: 2px;
  font-size: 28px;
}

/*-----------------------800----------------------*/
@media (max-width: 800px) {
  .benefit-item__img {
    margin-bottom: 10px;
  }
  .benefit-item__title {
    margin-bottom: 2px;
    font-size: 18px;
  }
}
/*-----------------------560----------------------*/
@media (max-width: 560px) {
  .benefit-item__img {
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
  }
  .benefit-item__title {
    font-size: 14px;
  }
}
/*-----------------------400----------------------*/
@media (max-width: 400px) {
  .benefit-item__title {
    font-size: 12px;
  }
}
.testimonials {
  padding-top: 60px;
  padding-bottom: 60px;
}

.testimonials__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.testimonials__title {
  max-width: 452px;
}

.testimonials__subtitle {
  max-width: 400px;
  letter-spacing: 0.07em;
  color: #606060;
}

.testimonials__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.testimonials__row::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background-image: url(../../img/testimonials/design-element.svg);
  background-repeat: no-repeat;
}

/*------------------------700------------------------*/
@media (max-width: 700px) {
  .testimonials {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .testimonials__heading {
    margin-bottom: 30px;
  }
  .testimonials__row {
    gap: 20px;
  }
}
/*------------------------400------------------------*/
@media (max-width: 400px) {
  .testimonials {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .testimonials__heading {
    margin-bottom: 10px;
  }
  .testimonials__row {
    gap: 10px;
  }
  .testimonials__row::after {
    display: none;
  }
}
.card-testimonials {
  max-width: 350px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.6s ease-in;
}
.card-testimonials:hover {
  box-shadow: 0 10px 52px 0 rgba(0, 0, 0, 0.08);
}
.card-testimonials:hover .card-testimonials__btn-play {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.6s ease-in;
}
.card-testimonials__img-wrapper {
  position: relative;
}
.card-testimonials__btn-play {
  position: absolute;
  right: 20px;
  bottom: 20px;
  transform: translateY(50%);
  opacity: 0;
}
.card-testimonials__btn-play circle {
  fill: #fff;
  transition: fill 1s ease-in;
}
.card-testimonials__btn-play path {
  fill: #f78434;
  transition: path 1s ease-in;
}
.card-testimonials:hover .card-testimonials__btn-play circle {
  fill: #f78434;
}
.card-testimonials:hover .card-testimonials__btn-play path {
  fill: #fff;
}
.card-testimonials__img {
  border-radius: 5px 5px 0 0;
}
.card-testimonials__body {
  border-radius: 0 0 5px 5px;
  background: #fff;
  padding: 30px;
}
.card-testimonials__text {
  margin-bottom: 23px;
  letter-spacing: 0.07em;
  color: #323232;
}
.card-testimonials__name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #323232;
}
.card-testimonials__city {
  letter-spacing: 0.07em;
  color: #58bebf;
  transition: color 0.8s ease-in;
}
.card-testimonials:hover .card-testimonials__city {
  color: #f78434;
  font-weight: 600;
}

/*------------------------700------------------------*/
@media (max-width: 700px) {
  .card-testimonials {
    max-width: 350px;
  }
  .card-testimonials__btn-play {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  .card-testimonials__body {
    padding: 20px;
  }
  .card-testimonials__text {
    margin-bottom: 20px;
  }
  .card-testimonials__name {
    font-size: 16px;
  }
}
/*------------------------400------------------------*/
@media (max-width: 400px) {
  .card-testimonials {
    max-width: 300px;
  }
  .card-testimonials__btn-play {
    width: 30px;
    height: 30px;
    right: 10px;
    bottom: 10px;
  }
  .card-testimonials__btn-play svg {
    width: 30px;
    height: 30px;
  }
  .card-testimonials__body {
    padding: 10px;
  }
  .card-testimonials__text {
    margin-bottom: 10px;
  }
  .card-testimonials__name {
    font-size: 12px;
  }
}
.contacts {
  position: relative;
  padding-top: 200px;
  padding-bottom: 55px;
  background-image: url("../img/footer/footer-bg.svg");
  background-size: cover;
  color: #fff;
}
.contacts::before {
  position: absolute;
  bottom: -1px;
  right: 0;
  content: "";
  display: block;
  width: 743px;
  height: 372px;
  background-image: url("../img/footer/footer-oval.svg");
  background-size: initial;
}
.contacts::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 478px;
  height: 547px;
  margin-left: 79px;
  background-image: url("../img/footer/girl.png");
  background-size: initial;
}

.contacts__info {
  max-width: 360px;
}

.contact__title {
  margin-bottom: 15px;
}

.contact__text {
  max-width: 342px;
  margin-bottom: 30px;
}

/*------------------------900----------------------*/
@media (max-width: 900px) {
  .contacts {
    padding-top: 200px;
    padding-bottom: 35px;
  }
  .contacts::before {
    width: 643px;
    height: 300px;
  }
  .contacts::after {
    width: 400px;
    height: 500px;
    margin-left: 49px;
  }
  .contact__title {
    margin-bottom: 10px;
  }
  .contact__text {
    margin-bottom: 20px;
  }
}
/*------------------------700----------------------*/
@media (max-width: 700px) {
  .contacts {
    padding-top: 200px;
    padding-bottom: 25px;
  }
  .contacts::before {
    width: 443px;
    height: 200px;
  }
  .contacts::after {
    width: 276px;
    height: 302px;
    right: 0px;
    background-size: contain;
    overflow: hidden;
    margin-left: 29px;
  }
  .contact__text {
    margin-bottom: 10px;
  }
}
/*------------------------500----------------------*/
@media (max-width: 500px) {
  .contacts {
    padding-top: 100px;
    padding-bottom: 15px;
  }
  .contacts::after {
    width: 150px;
    height: 170px;
    right: 0px;
    margin-left: 10px;
  }
  .contacts__info {
    max-width: 300px;
  }
  .contact__title {
    margin-bottom: 5px;
  }
  .contact__text {
    max-width: 250px;
    margin-bottom: 5px;
  }
}
/*------------------------400----------------------*/
@media (max-width: 400px) {
  .contacts {
    padding-top: 80px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .contacts__info {
    max-width: 200px;
  }
  .contact__text {
    max-width: 140px;
  }
}
.footer {
  padding-top: 86px;
  padding-bottom: 82px;
}

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

.footer__info {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: 15px;
  margin-left: -7px;
}

.footer__info-text {
  letter-spacing: 0.07em;
  margin-bottom: 40px;
}

.footer__socials {
  display: flex;
  gap: 30px;
  align-items: center;
}
.footer__socials a:hover img {
  opacity: 0.6;
}

.footer__nav {
  display: flex;
  gap: 85px;
}

.footer__nav-block {
  font-size: 14px;
}
.footer__nav-block li {
  line-height: 193%;
  letter-spacing: 0.04em;
  margin-bottom: 13px;
}
.footer__nav-block a:hover {
  color: #f78434;
  font-weight: 600;
}

.footer__nav-block-title {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

/*-----------------------700-------------------*/
@media (max-width: 700px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer__info-text {
    letter-spacing: 0.07em;
    margin-bottom: 40px;
  }
  .footer__socials {
    gap: 10px;
  }
  .footer__nav {
    display: flex;
    gap: 30px;
  }
  .footer__nav-block {
    font-size: 12px;
  }
  .footer__nav-block li {
    line-height: 133%;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }
  .footer__nav-block-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
/*-----------------------600-------------------*/
@media (max-width: 600px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer__info-text {
    margin-bottom: 20px;
  }
  .footer__socials {
    gap: 5px;
  }
  .footer__nav {
    gap: 20px;
  }
  .footer__nav-block {
    font-size: 10px;
  }
  .footer__nav-block li {
    line-height: 100%;
    margin-bottom: 10px;
  }
  .footer__nav-block-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
/*-----------------------400-------------------*/
@media (max-width: 400px) {
  .footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer__info-text {
    margin-bottom: 10px;
  }
  .footer__socials {
    gap: 5px;
  }
  .footer__nav {
    gap: 5px;
  }
  .footer__nav-block {
    font-size: 10px;
  }
  .footer__nav-block li {
    margin-bottom: 5px;
  }
  .footer__nav-block-title {
    font-size: 12px;
  }
}/*# sourceMappingURL=main.css.map */