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

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

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

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

ul, li {
  list-style: none;
}

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

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

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: 0 auto;
  padding: 0 15px;
}
.container--fluid {
  max-width: unset;
  width: 100%;
  overflow-x: hidden;
}

.visually-hidden {
  display: block;
  width: 0;
  height: 0;
  background: transparent;
  font-size: 0;
  visibility: hidden;
  margin-left: -9999999px;
}

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

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

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  margin-right: 5px;
}
.logo span {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.navigation-list ul {
  display: flex;
}
.navigation-list li:not(:last-child) {
  margin-right: 42px;
}
.navigation-list a:hover {
  color: #F78434;
}
.navigation-list a.active {
  color: #F78434;
  font-weight: bold;
}

.header__form {
  margin-top: 42px;
}

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

.header__text {
  width: 465px;
}
.header__text p {
  line-height: 1.6875;
  margin-bottom: 1em;
}

.header__title {
  font-size: 54px;
  font-weight: bold;
  line-height: 1.46;
  margin-bottom: 25px;
  margin-right: -160px;
  position: relative;
  z-index: 9;
}

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

.form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0 17px 42px rgba(0, 0, 0, 0.12);
  border-radius: 29px;
  height: 58px;
  transition: box-shadow 0.3s ease-in;
}
.form--active {
  box-shadow: 0 17px 42px rgba(247, 132, 52, 0.27);
}

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

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

.button {
  display: inline-block;
  font-weight: bold;
  height: 58px;
  line-height: 58px;
  padding: 0 35px;
  border-radius: 29px;
  background-color: #F78434;
  color: #fff;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ef6709;
}
.button--white {
  background-color: #fff;
  color: #323232;
  transition: background-color 0.3s ease-in, color 0.3s ease-out;
}
.button--white:hover {
  background-color: #323232;
  color: #fff;
}
.button--play {
  padding-left: 50px;
  position: relative;
}
.button--play::before {
  content: '';
  display: block;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("./../img/cta/play.svg");
  background-size: inherit;
  background-repeat: no-repeat;
}

.clients {
  padding-top: 100px;
  padding-bottom: 90px;
}

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

.objects {
  padding-bottom: 154px;
}

.objects__row {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.objects__title {
  margin-bottom: 20px;
}

.objects__button {
  margin-top: 40px;
}

.title {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.476;
}

.img-card {
  position: relative;
  width: 385px;
}
.img-card + .img-card {
  margin-left: 32px;
}

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

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

.card-info {
  display: flex;
  align-items: center;
  max-width: 300px;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
}

.card-info__item {
  margin-right: 20px;
}

.card-info__title h3 {
  font-weight: bold;
}

.cta {
  padding: 70px 0;
}

.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;
  background-color: #fff;
  border-radius: 0 20px 0 0;
}

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

.cta__title {
  margin-bottom: 15px;
}

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

.serve {
  position: relative;
  padding: 0 0 120px 0;
}
.serve:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -45%;
  bottom: 50%;
  left: 0;
  background-color: #F5F6FA;
  z-index: -1;
}

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

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

.card-customer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 40px 52px -22px rgba(0, 0, 0, 0.08);
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease-in;
}
.card-customer__icon {
  fill: #F78434;
  transition: fill 0.3s ease-in;
  margin-bottom: 15px;
}
.card-customer:hover {
  background-color: #F78434;
  color: #fff;
  transition: all 0.3s ease-in;
}
.card-customer:hover .button {
  background-color: #fff;
  color: #F78434;
}
.card-customer:hover .card-customer__icon {
  fill: #fff;
}
.card-customer p {
  margin-bottom: 25px;
  padding: 0 88px;
}

.benefits {
  padding-bottom: 110px;
}

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

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

.benefit-item {
  text-align: center;
}
.benefit-item__img {
  display: inline-block;
  margin-bottom: 15px;
}
.benefit-item__img circle {
  fill: #58BEBF;
  fill-opacity: 0.2;
  transition: all 0.3s ease-in;
}
.benefit-item__img path,
.benefit-item__img ellipse {
  fill: #58BEBF;
  transition: all 0.3s ease-in;
}
.benefit-item:hover .benefit-item__img circle {
  fill: #F78434;
  fill-opacity: 1;
}
.benefit-item:hover .benefit-item__img path,
.benefit-item:hover .benefit-item__img ellipse {
  fill: #fff;
}

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

.testimonials {
  padding: 60px 0 90px 0;
}

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

.testimonials__title {
  max-width: 452px;
}

.testimonials__subtitle {
  max-width: 400px;
}

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

.card-testimonial {
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
  max-width: 350px;
  transition: all 0.3s ease-in;
}
.card-testimonial:hover {
  box-shadow: 0 10px 52px rgba(0, 0, 0, 0.08);
}

.card-testimonial__img-wrapper {
  position: relative;
}

.card-testimonial_btn-play {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: translateY(50%);
  opacity: 0;
  transition: transform 0.1s ease-in, opacity 0.1s ease-in;
}
.card-testimonial:hover .card-testimonial_btn-play {
  transform: translateY(0);
  opacity: 1;
}
.card-testimonial_btn-play .btn_play circle {
  fill: #fff;
  transition: fill 0.3s ease-in;
}
.card-testimonial_btn-play .btn_play path {
  fill: #F78434;
  transition: fill 0.3s ease-in;
}
.card-testimonial_btn-play .btn_play:hover circle {
  fill: #F78434;
}
.card-testimonial_btn-play .btn_play:hover path {
  fill: #fff;
}

.card-testimonial__body {
  padding: 25px;
}

.card-testimonial__text {
  margin-bottom: 23px;
}

.card-testimonial__name {
  font-size: 18px;
  font-weight: bold;
}

.card-testimonial__city {
  color: #58BEBF;
  transition: color 0.3s ease-in;
}
.card-testimonial:hover .card-testimonial__city {
  color: #F78434;
}

.contacts {
  position: relative;
  padding: 200px 0 55px 0;
  background-image: url("./../img/contacts/bg-footer.svg");
  background-size: cover;
  color: #ffffff;
}
.contacts:before {
  content: '';
  display: block;
  width: 743px;
  height: 372px;
  position: absolute;
  bottom: 0;
  left: 45%;
  background-image: url("./../img/contacts/oval-footer.svg");
  background-size: initial;
}
.contacts:after {
  content: '';
  display: block;
  position: absolute;
  width: 478px;
  height: 547px;
  bottom: 0;
  left: 50%;
  background-image: url("./../img/contacts/girl.png");
  background-size: initial;
}

.contactus__info {
  max-width: 360px;
}

.contactus__title {
  margin-bottom: 15px;
}

.contactus__text {
  max-width: 340px;
  margin-bottom: 30px;
}

.footer {
  padding: 95px 0 85px 0;
}

.footer__logo {
  margin-bottom: 20px;
}

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

.footer__info {
  max-width: 300px;
  margin-bottom: 40px;
}

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

.footer__nav {
  display: flex;
  justify-content: space-between;
  column-gap: 85px;
}

.footer__nav-block li {
  font-size: 14px;
  line-height: 27px;
  margin-bottom: 13px;
}
.footer__nav-block a:hover {
  color: #F78434;
}

.footer__nav-block-title {
  font-size: 21px;
  line-height: 31px;
  font-weight: bold;
  margin-bottom: 18px;
}

/*# sourceMappingURL=main.css.map */
