* {
  box-sizing: border-box;
}

body {
  font-family: Roboto;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, ul, p, button, hr {
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

button {
  font-family: inherit;
}

figure {
  margin: 0;
}

.contacts-section .footer__terms-link:hover, header .nav__title-link:hover, header .nav__links .list__item-link:hover, header .nav .covid__link:hover {
  cursor: pointer;
  color: #000;
}

.hero__notify-btn:hover {
  cursor: pointer;
  color: #fff;
}

header .nav .globe__link-icon:hover, .mobile-navigation__burger-icon:hover, .mobile-navigation .nav__close-icon:hover {
  cursor: pointer;
  stroke: #000;
}

.info-card {
  height: 200px;
  padding: 16px 10px;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 10px;
  border-radius: 16px;
}
.info-card__icon {
  width: 47px;
  height: 41px;
}
.info-card__title {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  color: #000;
}
.info-card__description {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  color: #000;
}
.info-card:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}
.info-card:hover .info-card__icon {
  fill: #fff;
}
.info-card:hover .info-card__description, .info-card:hover .info-card__title {
  color: #fff;
}
@media (max-width: 576px) {
  .info-card__title {
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    color: #000;
  }
  .info-card__description {
    text-align: center;
    font-size: 11px;
    font-weight: 300;
    font-style: normal;
    color: #000;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .info-card {
    height: 175px;
    max-width: 155px;
  }
}
header {
  width: 100%;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: solid 1px #fff;
}
header .nav {
  height: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
}
header .nav__title {
  height: 100%;
  width: 255px;
  border-right: solid 1px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
}
header .nav__title-link {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}
header .nav__title-link span {
  font-weight: 700;
}
header .nav__links {
  flex-grow: 1;
}
header .nav__links .list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: min(100px, 5vw);
  row-gap: 0;
  padding: 0 0 0 min(100px, 5vw);
}
header .nav__links .list__item-link {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 992px) {
  header .nav__links .list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    column-gap: min(100px, 5vw);
    row-gap: 0;
    padding: 0 10px;
  }
}
header .nav .covid {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
  padding: 0 30px;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
}
header .nav .covid__link {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
header .nav .globe {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
}
header .nav .globe__link-icon {
  width: 27px;
  height: 28px;
}
@media (max-width: 768px) {
  header .nav__links,
  header .nav .covid,
  header .nav .globe {
    display: none;
  }
}

.mobile-navigation {
  display: none;
}
.mobile-navigation__burger {
  position: absolute;
  z-index: 10;
  top: 13px;
  right: 20px;
}
.mobile-navigation__burger-icon {
  width: 32px;
  height: 22px;
  stroke: #fff;
}
.mobile-navigation__togler {
  display: none;
}
.mobile-navigation__togler:checked + .nav {
  translate: 0;
}
.mobile-navigation .nav {
  padding: 100px 70px 0;
  position: fixed;
  z-index: 999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  translate: 100% 0;
  transition: translate 0.3s;
}
.mobile-navigation .nav__list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 20px;
}
.mobile-navigation .nav__list-item-link {
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-shadow: 2px 2px 3ox rgb(0, 0, 0.3);
}
.mobile-navigation .nav__close {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 23px;
}
.mobile-navigation .nav__close-icon {
  width: 25px;
  height: 22px;
  stroke: #fff;
}
@media (max-width: 768px) {
  .mobile-navigation {
    display: block;
  }
}

.hero {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 140px 10px 0;
  background: url("../assets/img/cloud_alpha.png") center/contain no-repeat;
}
.hero__contein {
  position: relative;
  width: 900px;
  margin: 0 auto;
}
.hero__contein .hero__title {
  font-size: 120px;
  font-weight: 700;
  font-style: normal;
  color: #000;
  line-height: 1;
}
.hero__contein .hero__action-btn {
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  width: 379px;
  height: 80px;
  background-color: #000;
  border-radius: 90px;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: 15px;
}
.hero__contein .hero__action-btn:hover {
  background-color: rgba(0, 0, 0, 0.65);
}
.hero__contein .hero__action-btn:focus {
  outline: none;
}
.hero__contein .hero__action-btn:focus-visible {
  outline: 2px solid #fff;
}
@media (max-width: 992px) {
  .hero__contein {
    width: 100%;
    max-width: 700px;
    height: 500px;
  }
  .hero__contein .hero__title {
    font-size: 100px;
    font-weight: 700;
    font-style: normal;
    color: #000;
  }
  .hero__contein .hero__action-btn {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .hero__contein {
    max-width: 560px;
    height: 400px;
  }
  .hero__contein .hero__title {
    font-size: 75px;
    font-weight: 700;
    font-style: normal;
    color: #000;
  }
  .hero__contein .hero__action-btn {
    width: 260px;
    height: 60px;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
  }
}
@media (max-width: 576px) {
  .hero__contein {
    max-width: 350px;
    height: 280px;
  }
  .hero__contein .hero__title {
    font-size: 45px;
    font-weight: 500;
    font-style: normal;
    color: #000;
  }
  .hero__contein .hero__action-btn {
    width: 260px;
    height: 60px;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
  }
}
.hero__notify {
  position: relative;
  margin: 170px auto 0;
  width: 680px;
  height: 68px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 20px;
  row-gap: 0;
}
.hero__notify-img {
  width: 126px;
  height: 198px;
  position: absolute;
  top: -75px;
  left: -28px;
}
.hero__notify-content {
  width: 450px;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  align-content: center;
  line-height: 1;
  text-transform: uppercase;
}
.hero__notify-btn {
  background: none;
  border: none;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-transform: uppercase;
  padding-right: 8px;
  line-height: 14px;
}
@media (max-width: 768px) {
  .hero__notify {
    width: 100%;
    max-width: 450px;
    height: fit-content;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    column-gap: 0;
    row-gap: 0;
    margin: 130px auto 0;
  }
  .hero__notify-content {
    width: 100%;
    padding: 15px 10px 5px 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    color: #000;
    line-height: 1.3;
  }
  .hero__notify-btn {
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  .hero__notify {
    max-width: 340px;
  }
  .hero__notify-img {
    width: 126px;
    height: 198px;
    top: -45px;
    left: -10px;
  }
  .hero__notify-content {
    width: 100%;
    padding: 10px 10px 10px 115px;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    color: #000;
  }
  .hero__notify-btn {
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 20px 0;
  }
}
.hero__scroll {
  position: absolute;
  left: 10px;
  bottom: 170px;
}
.hero__scroll-content {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  writing-mode: vertical-lr;
}
.hero__scroll-content::after {
  content: "";
  display: block;
  width: 1px;
  height: 75px;
  background-color: #fff;
  position: absolute;
  top: 100px;
  left: 7px;
}
@media (max-width: 768px) {
  .hero {
    padding: 110px 15px 0;
    background: url("../assets/img/cloud_alpha.png") 0 25%/contain no-repeat;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 700px;
  }
}

.work-section {
  padding: 100px 20px 140px;
}
.work-section .work {
  margin: 0 auto;
}
.work-section .work__cards-wrapper {
  margin: 0 auto;
  max-width: 950px;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 180px));
  justify-content: space-between;
  gap: 65px;
  grid-template-areas: "bulb desine dev" "maintenance testing integration";
}
.work-section .work .card_bulb {
  grid-area: bulb;
}
.work-section .work .card_desine {
  grid-area: desine;
}
.work-section .work .card_dev {
  grid-area: dev;
}
.work-section .work .card_maintenance {
  grid-area: maintenance;
}
.work-section .work .card_testing {
  grid-area: testing;
}
.work-section .work .card_integration {
  grid-area: integration;
}
.work-section .work .icon_bulb {
  width: 29px;
  height: 41px;
}
.work-section .work .icon_desine {
  width: 47;
  height: 39px;
}
.work-section .work .icon_dev {
  width: 50px;
  height: 43px;
}
.work-section .work .icon_maintenance {
  width: 43px;
  height: 41px;
}
.work-section .work .icon_testing {
  width: 44px;
  height: 42px;
}
.work-section .work .icon_integration {
  width: 42px;
  height: 36px;
}
@media (max-width: 768px) {
  .work-section .work__cards-wrapper {
    gap: 37px;
    grid-template-columns: repeat(2, minmax(140px, 180px));
    grid-template-areas: "dev bulb" "desine maintenance" "integration testing";
    justify-content: center;
    justify-items: center;
  }
}
@media (max-width: 576px) {
  .work-section .work .icon_bulb {
    width: 21px;
    height: 32px;
  }
  .work-section .work .icon_desine {
    width: 37;
    height: 31px;
  }
  .work-section .work .icon_dev {
    width: 39px;
    height: 33px;
  }
  .work-section .work .icon_maintenance {
    width: 34px;
    height: 32px;
  }
  .work-section .work .icon_testing {
    width: 35px;
    height: 33px;
  }
  .work-section .work .icon_integration {
    width: 33px;
    height: 33px;
  }
}

.big-title {
  margin: 0 0 80px 0;
  font-size: 60px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-align: center;
}
@media (max-width: 576px) {
  .big-title_hiden {
    display: none;
  }
  .big-title {
    font-size: 35px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    margin: 0 0 50px 0;
  }
}

.about-section {
  padding: 140px 0 0;
}
.about-section .about {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 0;
}
.about-section .about__quality {
  width: 100%;
  max-width: 1240px;
  height: 390px;
  padding: 0 20px 0;
  background: url(../assets/img/monitor.webp) 100% 100%/contain no-repeat;
}
@media (max-width: 1200px) {
  .about-section .about__quality {
    background: linear-gradient(180deg, rgb(103, 143, 242) 0%, rgba(103, 143, 242, 0) 74%), url(../assets/img/monitor.webp) 90% 45%/500px no-repeat;
  }
}
@media (max-width: 768px) {
  .about-section .about__quality {
    background: url(../assets/img/monitor.webp) 90% 100%/400px no-repeat;
  }
}
@media (max-width: 576px) {
  .about-section .about__quality {
    background: url(../assets/img/monitor.webp) 150px 105%/350px no-repeat;
  }
}
.about-section .about__quality-description {
  max-width: 590px;
}
.about-section .about__touch {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: end;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
  width: 100%;
  max-width: 1240px;
  height: 500px;
  padding: 0 20px 0;
}
.about-section .about__touch::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -160px;
  z-index: -1;
  background: url(../assets/img/phone.webp) 0 0/600px no-repeat;
}
.about-section .about__touch-description {
  max-width: 470px;
}
@media (max-width: 768px) {
  .about-section .about__touch {
    height: 400px;
    display: flex;
    justify-content: end;
    align-items: start;
    flex-wrap: nowrap;
    flex-direction: row;
    column-gap: 0;
    row-gap: 0;
    padding: 90px 20px 0;
  }
  .about-section .about__touch::before {
    width: 300px;
    height: 280px;
    top: 145px;
    left: -40px;
    rotate: z 55deg;
    background: url(../assets/img/phone.webp) 0 0/99% no-repeat;
  }
}
.about-section .about__approach {
  width: 100%;
  max-width: 1240px;
  height: 800px;
  padding: 250px 20px 0;
  background: url(../assets/img/cactus.webp) 90% 100%/contain no-repeat;
}
.about-section .about__approach-description {
  max-width: 730px;
}
@media (max-width: 1200px) {
  .about-section .about__approach {
    background: url(../assets/img/cactus.webp) 110% 100%/contain no-repeat;
  }
  .about-section .about__approach-description {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .about-section .about__approach {
    height: 550px;
    padding: 100px 20px 0;
    background: url(../assets/img/cactus.webp) 110% 115%/250px no-repeat;
  }
  .about-section .about__approach-description {
    max-width: 500px;
  }
}
@media (max-width: 1200px) {
  .about-section {
    padding: 100px 0 0;
  }
}

.info__title {
  font-size: 45px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin-bottom: 20px;
}
.info__title_right {
  text-align: right;
}
.info__desc {
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  line-height: 1.5;
}
.info__desc_right {
  text-align: right;
}
@media (max-width: 768px) {
  .info__title {
    font-size: 35px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
  }
  .info__desc {
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    color: #fff;
  }
}

.experience-section {
  padding: 140px 20px 0;
}
.experience-section .experience {
  margin: 0 auto;
}
.experience-section .experience__cards {
  margin: 0 auto;
  max-width: 1168px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 30px;
  row-gap: 50px;
}
@media (max-width: 1200px) {
  .experience-section .experience__cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 50px;
  }
}
.experience-section .experience__cards .img-card {
  position: relative;
  flex: 0 1 322px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 0;
  overflow: hidden;
}
.experience-section .experience__cards .img-card__title {
  height: 80px;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 0;
  text-align: center;
  flex-grow: 1;
}
@media (max-width: 576px) {
  .experience-section .experience__cards .img-card__title {
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    color: #fff;
  }
}
.experience-section .experience__cards .img-card__preview {
  height: auto;
}
.experience-section .experience__cards .img-card__preview-img {
  display: block;
  width: 100%;
}
.experience-section .experience__cards .img-card__btn {
  position: absolute;
  border-radius: 20px;
  border: none;
  left: -20px;
  bottom: -30px;
  z-index: 1;
  rotate: z 7deg;
  width: 120px;
  height: 90px;
  transition: rotate 2s;
}
.experience-section .experience__cards .img-card__btn-icon {
  width: 36px;
  height: 23px;
  fill: #000;
  rotate: z -7deg;
  translate: 10px -8px;
}
.experience-section .experience__cards .img-card__btn:hover {
  cursor: pointer;
  rotate: z 7deg;
  scale: 1.3;
}
.experience-section .experience__cards .img-card__btn:hover .img-card__btn-icon {
  rotate: z -7deg;
  translate: 17px -10px;
}
.experience-section .experience__cards .img-card:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.01);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .experience-section {
    padding: 90px 20px 0;
  }
}

.testimonials-section .slider__right-btn, .testimonials-section .slider__left-btn {
  width: 67px;
  height: 67px;
  border: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  rotate: z 45deg;
}

.testimonials-section {
  padding: 200px 20px 50px;
}
.testimonials-section .testimonials {
  margin: 0 auto;
}
.testimonials-section .wave-card {
  width: 500px;
  height: 275px;
  background: url(../assets/wave_card_bg.svg) center/cover no-repeat;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 30px;
}
.testimonials-section .wave-card__img {
  width: 49px;
  height: 49px;
  margin: 20px 0 0 20px;
}
.testimonials-section .wave-card__img .wave-card__avatar {
  width: 100%;
  border-radius: 50%;
}
.testimonials-section .wave-card__text {
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  line-height: 1.5;
  padding: 0 50px 0 30px;
}
@media (max-width: 768px) {
  .testimonials-section .wave-card {
    width: 300px;
    row-gap: 20px;
    background: url(../assets/wave_card_bg.svg) 50% 0/contain no-repeat;
  }
  .testimonials-section .wave-card__text {
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    padding: 0 30px 0 20px;
  }
  .testimonials-section .wave-card__img {
    width: 31px;
    height: 31px;
    margin: 15px 0 0 15px;
  }
}
.testimonials-section .slider {
  position: relative;
  margin: 0 auto;
  height: 500px;
  width: 500px;
}
.testimonials-section .slider__left-btn {
  position: absolute;
  top: 100px;
  left: -100px;
  z-index: 1;
}
.testimonials-section .slider__left-btn-icon {
  width: 36px;
  height: 23px;
  fill: #fff;
  rotate: z 135deg;
}
.testimonials-section .slider__right-btn {
  position: absolute;
  top: 100px;
  right: -100px;
  z-index: 1;
}
.testimonials-section .slider__right-btn-icon {
  width: 36px;
  height: 23px;
  fill: #fff;
  rotate: z -45deg;
}
.testimonials-section .slider__right-btn:hover, .testimonials-section .slider__left-btn:hover {
  cursor: pointer;
  scale: 1.2;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
.testimonials-section .slider__points {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 9px;
  row-gap: 0;
}
.testimonials-section .slider__points-item {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #fff;
}
.testimonials-section .slider__points-item:hover {
  cursor: pointer;
  scale: 0.7;
  background-color: #B4B4B4;
}
@media (max-width: 768px) {
  .testimonials-section .slider {
    width: 300px;
    height: 250px;
  }
  .testimonials-section .slider__left-btn, .testimonials-section .slider__right-btn {
    width: 53px;
    height: 53px;
  }
  .testimonials-section .slider__left-btn-icon, .testimonials-section .slider__right-btn-icon {
    width: 28px;
    height: 17px;
  }
}
@media (max-width: 576px) {
  .testimonials-section .slider__left-btn {
    top: unset;
    bottom: -20px;
    left: 0;
  }
  .testimonials-section .slider__right-btn {
    top: unset;
    bottom: -20px;
    right: 0;
  }
}
@media (max-width: 576px) {
  .testimonials-section {
    padding: 120px 20px 50px;
  }
}

.form-section {
  padding: 170px 20px;
  position: relative;
  overflow: hidden;
}
.form-section__bg-cloud {
  background: url(../assets/img/cloud_alpha.png) center/contain no-repeat;
  width: 700px;
  height: 240px;
}
.form-section__bg-cloud_left {
  position: absolute;
  top: 0;
  left: -350px;
}
@media (max-width: 768px) {
  .form-section__bg-cloud_left {
    height: 160px;
  }
}
.form-section__bg-cloud_right {
  position: absolute;
  bottom: 0;
  right: -350px;
}
@media (max-width: 1200px) {
  .form-section__bg-cloud_right {
    height: 150px;
    bottom: 25px;
  }
}
.form-section__wrapper {
  width: 100%;
  height: 360px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
}

.form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 15px;
  flex: 0 1 625px;
}
.form__title {
  align-self: center;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 2;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .form__title {
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    color: #000;
    line-height: 1.3;
  }
}
.form__name, .form__email, .form__text, .form__btn {
  height: 47px;
  border-radius: 20px;
  border: 1px solid #B4B4B4;
  padding: 0 20px;
}
.form__name::placeholder, .form__email::placeholder, .form__text::placeholder, .form__btn::placeholder {
  font-size: 20px;
  font-weight: 100;
  font-style: normal;
  color: #B4B4B4;
}
.form__name:focus, .form__email:focus, .form__text:focus, .form__btn:focus {
  outline: none;
  border-color: #B4B4B4;
  box-shadow: inset 0 3px 10px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .form__name::placeholder, .form__email::placeholder, .form__text::placeholder, .form__btn::placeholder {
    font-size: 15px;
    font-weight: 100;
    font-style: normal;
    color: #B4B4B4;
  }
}
.form__btn {
  background: #000;
  border: none;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
.form__btn:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.contacts-section {
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.15);
}
.contacts-section .footer {
  max-width: 1168px;
  height: 135px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
}
.contacts-section .footer__terms {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  flex-direction: column;
  column-gap: 0;
  row-gap: 10px;
}
.contacts-section .footer__terms-links {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 40px;
  row-gap: 0;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
.contacts-section .footer__terms-right {
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  color: #fff;
}
.contacts-section .footer__contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 43px;
  row-gap: 0;
}
.contacts-section .footer__contacts-icon {
  width: 25px;
  height: 24px;
  fill: #fff;
}
.contacts-section .footer__contacts-icon:hover {
  fill: #000;
  cursor: pointer;
}
@media (max-width: 576px) {
  .contacts-section .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    column-gap: 0;
    row-gap: 20px;
  }
}

body {
  background-color: #678FF2;
}

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