html,
body,
ul,
li,
button,
input,
textarea,
h1,
h2,
h3,
a,
p {
  margin: 0;
  padding: 0;
  font-family: "Muli", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: inherit;
  border-width: 0;
  text-decoration: none; }

a {
  -webkit-transition: 0.5s;
  transition: 0.5s; }

a:hover {
  color: #fcc304; }

.header {
  margin-bottom: 80px; }
  .header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 48px;
    white-space: nowrap; }
  .header__logo {
    color: white;
    font-weight: bold;
    font-size: 32px;
    margin-right: 143px; }
  .header__action {
    font-weight: bold;
    color: white;
    position: relative;
    margin-left: 72px; }
    .header__action::after {
      content: "";
      height: 4px;
      width: 120%;
      background-color: #fcc304;
      border-radius: 32px;
      position: absolute;
      bottom: -10px;
      left: -10%; }

@media screen and (max-width: 900px) {
  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .header__logo {
    margin: 0 0 20px;
    font-size: 48px; }
  .header__action {
    margin: 20px 0 0;
    font-size: 32px; }
  .header__nav .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .header__nav .nav__link {
    font-size: 24px;
    margin: 0; }
  .header__nav .nav__item {
    margin-bottom: 20px; } }

@media screen and (min-width: 901px) and (max-width: 1200px) {
  .header__logo {
    margin-right: 0;
    margin-bottom: 30px; }
  .header__action {
    margin-left: 0;
    margin-top: 50px; }
  .nav__link {
    margin-right: 40px; }
  .nav__list li:last-of-type a {
    margin: 0; }
  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none; }

.nav__link {
  color: white;
  font-weight: bold;
  margin-right: 63px; }

@media screen and (max-width: 900px) {
  .nav .header .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .nav .header .nav__link {
    margin: 0; } }

.intro {
  width: 60%;
  margin: auto; }
  @media screen and (max-width: 750px) {
    .intro {
      text-align: center; } }
  .intro__heading {
    color: white;
    font-weight: 900;
    font-size: 64px; }
  .intro__text {
    color: white;
    font-size: 24px;
    margin-top: 22px; }
  .intro__button {
    display: inline-block;
    background-color: white;
    color: #253757;
    width: 226px;
    margin-top: 42px; }

.button {
  padding: 16px 65px;
  font-weight: bold;
  border-radius: 64px;
  -webkit-transition: 0.5s;
  transition: 0.5s; }
  .button:hover {
    cursor: pointer;
    background-color: #fcc304; }

.slider {
  margin-top: 80px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .slider__photos {
    position: relative;
    background-image: url("../images/slider/slide-img-1.jpg");
    background-size: cover;
    width: 1146px;
    height: 640px; }
  .slider__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: calc(50% - 32px);
    left: -81px;
    width: 162px;
    height: 64px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), #fcc304;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #fcc304;
    padding: 20px 32px; }
    @media screen and (max-width: 650px) {
      .slider__button {
        top: calc(100% + 20px);
        left: calc(50% - 81px); } }
  .slider__button:hover {
    background-color: #f25656; }
  .slider__header {
    color: #56ccf2;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    position: absolute;
    bottom: 144px;
    left: 100px; }
    @media screen and (max-width: 650px) {
      .slider__header {
        bottom: 80px;
        left: calc(50% - 132px); } }
  .slider__text {
    font-weight: 900;
    font-size: 20px;
    color: white;
    width: 264px;
    position: absolute;
    bottom: 86px;
    left: 100px; }
    @media screen and (max-width: 650px) {
      .slider__text {
        bottom: 20px;
        left: calc(50% - 132px); } }

@media screen and (max-width: 650px) {
  .slider.container {
    padding: 0; }
  .slider__photos {
    width: 100vw;
    height: 300px; } }

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 640px;
  -ms-flex-pack: distribute;
      justify-content: space-around; }
  .media__link {
    position: relative;
    left: 64px;
    color: black;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-writing-mode: tb-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: tb-rl; }
  @media screen and (max-width: 650px) {
    .media {
      display: none; } }

.welcome {
  margin: 160px auto;
  max-width: 742px;
  width: 70%; }
  .welcome__text {
    font-weight: 600;
    font-size: 24px;
    color: #253757; }

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px; }
  .heading__text {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #56ccf2; }
  .heading__rectangle {
    margin-right: 16px;
    width: 21px;
    height: 21px;
    background-image: url("../images/sub-title/sub-title-icon-dark.svg"); }

.heading_white .heading__text {
  color: white; }

.heading_white .heading__rectangle {
  background-image: url("../images/sub-title/sub-title-icon-light.svg"); }

.what-we-do {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 160px 0;
  color: #253757;
  position: relative; }
  .what-we-do__card {
    width: 264px;
    margin-right: 128px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .what-we-do__card:last-child {
    margin-right: 0; }
  .what-we-do__name {
    position: absolute;
    font-weight: 900;
    font-size: 48px;
    top: -30px;
    left: calc(50% - 154px); }
  .what-we-do__img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 64px; }
  .what-we-do__heading {
    font-weight: 900;
    font-size: 19px;
    margin-bottom: 32px; }

@media screen and (max-width: 900px) {
  .what-we-do {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 50px; }
    .what-we-do__card {
      margin-right: 0;
      margin-bottom: 70px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.process {
  padding: 160px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  color: #253757; }
  .process__heading {
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 64px; }
  .process__text {
    line-height: 1.5; }
  .process__blocks {
    display: grid;
    grid-template-columns: repeat(2, 240px);
    grid-column-gap: 58px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

@media screen and (min-width: 650px) and (max-width: 1100px) {
  .process {
    grid-template-columns: 1fr; }
    .process__top {
      width: 80%;
      margin: auto; } }

@media screen and (max-width: 649px) {
  .process {
    padding: 70px 0;
    grid-template-columns: 1fr;
    grid-row-gap: 50px; }
    .process__top {
      width: 80%;
      margin: auto; }
    .process__blocks {
      grid-template-columns: repeat(1, 240px);
      grid-row-gap: 30px; } }

.numbers-block {
  width: 240px;
  height: 256px;
  background: white;
  -webkit-box-shadow: 16px 16px 16px rgba(0, 0, 0, 0.02);
          box-shadow: 16px 16px 16px rgba(0, 0, 0, 0.02);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  top: 150px;
  z-index: 1; }
  .numbers-block__circle {
    width: 48px;
    height: 48px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#56ccf2), to(#56ccf2)), #c4c4c4;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #56ccf2, #56ccf2), #c4c4c4;
    opacity: 0.1;
    border-radius: 50%;
    position: absolute;
    top: 48px; }
  .numbers-block__number {
    font-weight: 900;
    font-size: 40px;
    color: #56ccf2;
    line-height: 1.5; }
  .numbers-block__text {
    font-size: 13px;
    color: #253757;
    text-align: center;
    line-height: 1.5; }

.numbers-block_orange {
  top: 30px; }
  .numbers-block_orange .numbers-block__circle {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), #fcc304;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #fcc304; }
  .numbers-block_orange .numbers-block__number {
    color: #fcc304; }

.numbers-block_green {
  top: 300px; }
  .numbers-block_green .numbers-block__circle {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#03d542), to(#03d542)), #c4c4c4;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #03d542, #03d542), #c4c4c4; }
  .numbers-block_green .numbers-block__number {
    color: #03d542; }

.numbers-block_red {
  top: 230px; }
  .numbers-block_red .numbers-block__circle {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), #f25656;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #f25656; }
  .numbers-block_red .numbers-block__number {
    color: #f25656; }

@media screen and (max-width: 649px) {
  .numbers-block {
    top: 0; } }

.features {
  padding: 198px 0 160px;
  background-color: #56ccf2;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 999px) {
    .features.container {
      padding-left: 0;
      padding-right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .features__decor {
    position: absolute;
    top: 0;
    left: 400px;
    bottom: 0;
    width: 1908px;
    height: 563px;
    -webkit-transform: rotate(-65deg);
            transform: rotate(-65deg);
    overflow: hidden; }
    .features__decor img {
      -webkit-transform: rotate(65deg);
              transform: rotate(65deg); }
  .features__heading {
    font-weight: 900;
    font-size: 32px;
    line-height: 1.4;
    color: #253757;
    margin-bottom: 69px;
    width: 362px; }
    @media screen and (max-width: 430px) {
      .features__heading {
        width: 300px; } }

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .features__decor {
    left: 200px; } }

@media screen and (max-width: 999px) {
  .features__decor {
    display: none; } }

.icons {
  display: grid;
  grid-template-rows: repeat(3, 96px);
  grid-template-columns: 362px;
  grid-row-gap: 64px; }
  .icons__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .icons__text {
    color: white;
    line-height: 1.5;
    margin-left: 32px; }

@media screen and (max-width: 430px) {
  .icons {
    grid-template-rows: repeat(3, 120px);
    grid-template-columns: 300px; } }

.testimonials {
  padding-top: 166px;
  padding-bottom: 304px;
  position: relative;
  background-color: white; }
  .testimonials__blocks {
    width: 100%;
    position: absolute;
    top: 384px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .testimonials__heading {
    font-weight: 900;
    font-size: 32px;
    line-height: 1.4;
    color: #253757;
    margin-bottom: 86px;
    max-width: 362px; }
  .testimonials__container {
    padding-left: 227px; }

@media screen and (max-width: 1000px) {
  .testimonials {
    padding-bottom: 70px; }
    .testimonials__blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: static; }
    .testimonials__container {
      padding: 0;
      margin: 0 auto;
      width: 70%; } }

.client {
  position: relative;
  -webkit-box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.05);
          box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.05);
  background-color: white;
  padding: 240px 32px 58px;
  width: 314px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 78px;
  z-index: 1; }
  .client:last-child {
    margin-right: 0; }
  .client__decor {
    position: absolute;
    left: calc(50% - 80px);
    top: 93px;
    width: 160px;
    height: 64px;
    border-radius: 32px;
    -webkit-transform: rotate(-65deg);
            transform: rotate(-65deg);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), #56ccf2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #56ccf2; }
  .client__photo {
    width: 64px;
    height: 124px;
    border-radius: 32px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    left: calc(50% - 32px);
    top: 102px;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg); }
  .client__img {
    height: 100%;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg); }
  .client__quote {
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
    color: #253757;
    text-align: center; }
  .client__about {
    font-size: 12px;
    text-align: center; }
  .client__about::before {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), #56ccf2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #56ccf2;
    margin: 32px auto; }
  .client__name {
    font-weight: bold; }
  .client__position {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    color: #56ccf2; }
  .client-red .client__decor,
  .client-red .client__about::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), #f25656;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #f25656; }
  .client-red .client__position {
    color: #f25656; }
  .client-yellow .client__decor,
  .client-yellow .client__about::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0))), #fcc304;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #fcc304; }
  .client-yellow .client__position {
    color: #fcc304; }

@media screen and (max-width: 1000px) {
  .client {
    margin-right: 0;
    margin-bottom: 50px; } }

.vision {
  background-color: transparent;
  padding-top: 250px;
  padding-bottom: 150px;
  text-align: center;
  position: relative;
  margin: 0 15%; }
  @media screen and (max-width: 800px) {
    .vision {
      padding: 100px 0; } }
  .vision__heading {
    font-weight: 900;
    font-size: 48px;
    color: #253757;
    margin-bottom: 57px; }
  .vision__text {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #334563;
    max-width: 754px;
    margin: auto; }
  .vision__button {
    background: #2f80ed;
    color: white;
    width: 226px;
    margin-top: 55px; }
  .vision__oval {
    z-index: -1;
    position: absolute; }
    @media screen and (max-width: 800px) {
      .vision__oval {
        display: none; } }
  .vision__oval-1 {
    left: -100px; }
  .vision__oval-2 {
    top: 350px;
    left: -20px; }
  .vision__oval-3 {
    top: 200px;
    left: 200px; }
  .vision__oval-4 {
    left: 100px;
    top: 550px; }
  .vision__oval-5 {
    bottom: 0;
    left: -50px; }
  .vision__oval-6 {
    bottom: 150px;
    left: -150px; }
  .vision__oval-7 {
    right: 100px; }
  .vision__oval-8 {
    top: 300px;
    right: -50px; }
  .vision__oval-9 {
    right: -100px; }
  .vision__oval-10 {
    right: 170px;
    top: 500px; }
  .vision__oval-11 {
    bottom: 0;
    right: 100px; }
  .vision__oval-12 {
    bottom: 150px;
    right: -100px; }

.contacts {
  padding-top: 100px;
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-column-gap: 8%;
  padding-bottom: 100px; }

@media screen and (max-width: 800px) {
  .contacts {
    grid-template-columns: 1fr;
    grid-row-gap: 100px; } }

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 100px; }
  .form__input {
    background-color: #fcfcfd;
    border-bottom: 1px solid #e1e1e1;
    padding: 18px 0;
    margin-bottom: 30px; }
  .form__button {
    width: 226px;
    background-color: #2f80ed;
    color: white;
    margin-top: 75px; }

.address__heading {
  font-weight: 900;
  font-size: 32px;
  color: #253757;
  line-height: 1.4; }

.address__text {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #334563;
  margin-top: 43px; }

.address__link {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #56ccf2; }

.address__media {
  margin-top: 53px; }

.address a {
  margin-right: 48px; }

@media screen and (max-width: 800px) {
  .address__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

.footer {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 30px; }
  .footer .nav__link {
    color: #253757;
    font-weight: bold; }
  .footer .nav__link:hover {
    color: #fcc304; }
  .footer .nav__list li:last-of-type a {
    margin: 0; }

@media screen and (max-width: 650px) {
  .footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .nav__item {
    margin-bottom: 20px; } }

body {
  background-color: #fcfcfd; }

.background {
  background-image: linear-gradient(115deg, #56ccf2 77%, #fcfcfd 77%);
  width: 100%;
  height: 827px;
  position: absolute;
  z-index: -1; }

.container {
  padding-left: 14%;
  padding-right: 14%; }

@media screen and (max-width: 1000px) {
  .background {
    height: 1300px;
    background-image: none;
    background-color: #56ccf2; } }

@media screen and (min-width: 901px) and (max-width: 1200px) {
  .background {
    height: 940px; } }

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