@font-face {
  font-family: "Gilroy";
  src: url("../../assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy Medium";
  src: url("../../assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy Semibold";
  src: url("../../assets/fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy Bold";
  src: url("../../assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  background-image: url("img/development-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.header {
  padding: 52px 36px 87px;
}

.call-btn {
  background: #fefefe;
  border-color: #fefefe;
  color: #1a1a1a;
}

.toggle {
  background: #fefefe;
}

.development {
  padding: 0 36px 249px 36px;
  font-size: 48px;
  position: relative;
}

.development__btn {
  border: none;
  outline: none;
  background: #fde43e;
  border-radius: 40px;
  margin-top: 46px;
  padding: 24px 0;
  width: 45%;
  font-size: 16px;
  font-family: "proxima-nova-extra-wide", sans-serif;
  cursor: pointer;
  transition: all 0.5s;
}

.development__btn:hover {
  opacity: 0.7;
}

.development__img {
  position: absolute;
  right: 0;
  top: -35px;
  width: 45%;
}

.clients {
  padding: 58px 36px 84px;
}

.icon-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
}

.icon-track {
  display: flex;
  gap: 40px;
  will-change: transform;
}

.icon-track img {
  height: 50px;
  flex-shrink: 0;
}

.subheader {
  display: flex;
  align-items: center;
  font-size: 40px;
}

.subheader__icon {
  margin-right: 12px;
}

.statistics {
  padding: 63px 36px 158px;
}

.statistics__block {
  position: relative;
  display: flex;
  flex-direction: column;
}

.statistics__block img {
  width: 30vw;
  z-index: 10;
  margin-right: auto;
}

.statistics__text {
  font-size: 48px;
  z-index: 10;
}

.statistics__grey {
  font-size: 200px;
  line-height: 100%;
  color: #acacac;
}

.statistics__subtext {
  font-size: 40px;
}

.statistics__subtext__grey {
  font-size: 200px;
  color: #acacac;
  line-height: 100%;
}

.solution {
  padding: 64px 36px 153px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 63px;
}

.solution__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.solution__card {
  position: relative;
  padding: 36px;
  height: 330px;
  font-size: 32px;
  background: #fefefe;
  border-radius: 40px;
}

.solution__card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
}

.functions {
  padding: 63px 36px 186px;
}

.functions__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 103px;
}

.functions__card {
  font-size: 32px;
  padding-bottom: 22px;
  border-bottom: 2px solid #484848;
  display: flex;
  align-items: start;
  color: #1a1a1a;
  font-size: 20px;
}

.functions__card img {
  margin-right: 22px;
  width: 40px;
}

.functions__card__grey {
  font-size: 24px;
  color: #666666;
  margin-bottom: 8px;
}

.cost {
  padding: 84px 36px 97px;
}

.cost__text {
  font-family: "Gilroy", sans-serif;
  font-size: 36px;
  margin: 42px 0 61px;
}

.cost__form-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.cost__form-holder img {
  width: 100%;
}

.cost__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cost__form input,
.cost__form textarea {
  font-family: "Gilroy", sans-serif;
  border: none;
  outline: none;
  padding: 24px;
  font-size: 20px;
  border-radius: 40px;
  color: #969696;
  background: #fefefe;
  margin-bottom: 16px;
}

.cost__form input::placeholder,
.cost__form textarea::placeholder {
  color: #969696;
}

.cost__form textarea {
  margin-bottom: 61px;
}

.rules {
  display: flex;
  align-items: center;
}

.checkbox input {
  display: none;
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fefefe;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.checkmark__svg {
  width: 50%;
  height: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.checkbox input:checked + .checkmark .checkmark__svg {
  opacity: 1;
  transform: scale(1);
}

.rules__text {
  margin-left: 13px;
  color: #969696;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
}

.rules__yellow {
  color: #6b601b;
  cursor: pointer;
  font-family: "Gilroy", sans-serif;
}

.cost__form button {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  padding: 28px 0;
  font-size: 20px;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  background: #fde43e;
  font-family: "proxima-nova-extra-wide", sans-serif;
  margin-top: 12px;
}

.cost__form__subtext {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-top: 41px;
}

.development__img-mobile {
  display: none;
}

.cases {
  padding: 63px 36px 32px;
}

.cases__text {
  margin: 37px 0 46px;
}

.mb-65 {
  margin-bottom: 65px;
}

.cases__text__title {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
}

.cases__text__text {
  font-size: 20px;
  font-family: "Gilroy Medium", sans-serif;
}

.cases__cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 46px;
}

.cases__card {
  border-radius: 10px;
  background: #00ccfc;
  position: relative;
  height: 395px;
  overflow: hidden;
}

.cases__title {
  background: #ffffff;
  margin: 23px 0 4px;
  padding: 15px 32px;
  position: relative;
  z-index: 10;
}

.cases__icon {
  margin-right: 22px;
}

.cases__dot {
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin: 0 5px;
  background: #1a1a1a;
}

.cases__subtitle {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.cases__subtext {
  font-size: 14px;
  text-wrap: nowrap;
}

.cases__desktop {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
}

.cases__link {
  padding: 16px;
  background: #fee440;
  border-radius: 14px;
  width: 40%;
  font-size: 16px;
  font-family: "proxima-nova-extra-wide", sans-serif;
  cursor: pointer;
  transition: all 0.7s;
  text-transform: uppercase;
  font-weight: 700;
  margin: 208px auto 24px;
  text-align: center;
  display: block;
  position: relative;
  z-index: 10;
}

.cases__link:hover {
  opacity: 0.9;
}

.cases__card-2 {
  background: #2058b6;
}

.cases__card-2 .cases__desktop {
  width: 100%;
}

.cases__card-3 {
  background: #58bfb0;
}

.cases__card-3 .cases__desktop {
  width: 83%;
}

.cases__card-4 {
  background: #0070eb;
}

.cases__card-4 .cases__desktop {
  width: 100%;
}

.cases__card-5 {
  background: #982844;
}

.cases__card-5 .cases__desktop {
  width: 50%;
  margin-bottom: -40px;
  left: 35%;
}

.cases__card-5 .cases__desktop-2 {
  width: 45%;
  margin-bottom: -40px;
  left: unset;
  right: -10%;
}

.cases__card-6 {
  background: #e0272f;
}

.cases__card-7 {
  background: #718bff;
}

.cases__card-7 .cases__desktop {
  width: 40%;
  margin-bottom: -20px;
}

.cases__card-8 {
  background: #2711b1;
}

.cases__card-8 .cases__desktop {
  width: 47%;
}

.cases__card-9 {
  background: #5b6cff;
}

.cases__card-9 .cases__desktop {
  width: 45%;
}

.cases__card-10 {
  background: #711b34;
}

.cases__card-10 .cases__desktop {
  width: 55%;
}

.cases__card-11 {
  background: #f50f64;
}

.cases__card-11 .cases__desktop {
  width: 30%;
  margin-bottom: -80px;
  z-index: 10;
  left: 19%;
}

.cases__card-11 .cases__icon {
  margin-left: 33%;
}

.cases__card-11 .cases__link {
  width: 20%;
}

@media (max-width: 2000px) {
  .cases__card-11 .cases__desktop {
    width: 35%;
  }
}

@media (max-width: 1600px) {
  .cases__card-11 .cases__desktop {
    width: 45%;
  }
}

@media (max-width: 1300px) {
  .cases__card-11 .cases__desktop {
    width: 55%;
  }
}

@media (max-width: 1300px) {
  .development__img {
    width: 25%;
  }

  .cases__card-10 .cases__desktop {
    width: 65%;
  }
}

@media (max-width: 1000px) {
  .cost__form__subtext {
    margin-top: 32px;
  }

  .cases__cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cases__text {
    margin: 22px 0 40px;
  }

  .cases__text__title {
    font-size: 16px;
  }

  .cases__text__text {
    font-size: 14px;
    margin: 16px 0 40px;
  }

  .cases__cards {
    margin: 0 0 40px;
  }

  .cases__card {
    height: 325px;
  }

  .cases__subtitle {
    font-size: 20px;
  }

  .cases__subtext {
    font-size: 10px;
  }

  .cases__link {
    margin: 144px auto 18px;
    width: 30%;
  }

  .cases__card-11 .cases__link {
    width: 30%;
  }

  .cases__desktop,
  .cases__card-2 .cases__desktop,
  .cases__card-3 .cases__desktop,
  .cases__card-4 .cases__desktop {
    width: 50%;
  }

  .cases__card-5 .cases__desktop,
  .cases__card-5 .cases__desktop-2 {
    width: 30%;
    left: 40%;
  }

  .cases__card-5 .cases__desktop-2 {
    left: unset;
    right: 10%;
  }

  .cases__card-7 .cases__desktop {
    width: 20%;
  }

  .cases__card-8 .cases__desktop {
    width: 25%;
  }

  .cases__card-9 .cases__desktop {
    width: 25%;
  }

  .cases__card-10 .cases__desktop {
    width: 40%;
  }

  .cases__card-11 .cases__desktop {
    width: 38%;
    margin: 0;
  }

  .development__img {
    display: none;
  }

  .development__img-mobile {
    display: block;
    position: absolute;
    left: 0;
    bottom: 56px;
    width: 100%;
  }

  .header {
    padding: 30px 20px;
  }

  .development__img {
    display: none;
  }

  .development {
    padding: 2px 10px 32px;
  }

  .development__content {
    font-size: 24px;
    position: relative;
    z-index: 10;
  }

  .development__btn {
    margin-top: 77vw;
    width: 100%;
    font-size: 16px;
    padding: 19px 0;
    position: relative;
    z-index: 10;
  }

  .clients {
    padding: 32px 10px 16px;
  }

  .subheader {
    font-size: 17px;
  }

  .subheader__icon {
    width: 28px;
    margin-right: 8px;
  }

  .icon-marquee {
    margin-top: 44px;
  }

  .statistics {
    padding: 32px 23px;
  }

  .statistics__block {
    margin-top: 32px;
  }

  .statistics__block img {
    margin: 0;
    width: 50%;
  }

  .statistics__grey {
    font-size: 200px;
    line-height: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: -7%;
  }

  .statistics__text {
    font-size: 25px;
    margin-top: 12vw;
  }

  .statistics__subtext {
    margin-top: 38px;
  }

  .statistics__subtext {
    font-size: 25px;
    text-align: center;
  }

  .statistics__subtext__grey {
    font-size: 100px;
    line-height: 100%;
  }

  .solution {
    padding: 32px 10px;
  }

  .solution__cards {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .solution__card {
    padding: 20px;
    height: 40vw;
    font-size: 14px;
  }

  .functions {
    padding: 32px 10px;
  }

  .functions__cards {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .functions__card {
    margin-bottom: 17px;
    font-size: 12px;
    padding-bottom: 16px;
  }

  .functions__card img {
    width: 17px;
    margin-right: 6px;
  }

  .functions__card__grey {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 100%;
  }

  .cost {
    padding: 32px 10px;
  }

  .cost__text {
    font-size: 14px;
    margin: 0 0 14px 34px;
  }

  .cost__form-holder {
    grid-template-columns: 1fr;
  }

  .cost__form-holder img {
    display: none;
  }

  .cost__form input,
  .cost__form textarea {
    padding: 13px 15px;
    font-size: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .rules {
    margin-top: 16px;
  }

  .checkmark {
    width: 30px;
    height: 30px;
  }

  .rules__text {
    font-size: 12px;
    color: #1a1a1a;
  }

  .rules__yellow {
    color: #fee440;
    font-family: "Gilroy", sans-serif;
  }

  .cost__form button {
    margin-top: 10px;
    padding: 15px 0;
    border-radius: 15px;
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  .cases__desktop {
    width: 70%;
  }

  .cases__desktop,
  .cases__card-2 .cases__desktop,
  .cases__card-4 .cases__desktop {
    width: 70%;
  }

  .cases__card-3 .cases__desktop {
    width: 60%;
  }

  .cases__card-5 .cases__desktop,
  .cases__card-5 .cases__desktop-2 {
    width: 40%;
    left: 40%;
  }

  .cases__card-5 .cases__desktop-2 {
    left: unset;
    right: 0;
  }

  .cases__card-7 .cases__desktop {
    width: 30%;
  }

  .cases__card-8 .cases__desktop {
    width: 40%;
  }

  .cases__card-9 .cases__desktop {
    width: 35%;
  }

  .cases__card-11 .cases__desktop {
    width: 60%;
  }
}

@media (max-width: 600px) {
  .cases__desktop {
    width: 100%;
  }
}
