@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-family: 'Rubik', sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}

p, a {
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.header,
.main,
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header,
.main {
  flex-direction: column;
}

.header {
  background-color: #000;
  border-radius: 0 0 60px 60px;
  color: #fff;
  padding: 70px 0 55px 0;
}

.header__title {
  margin-top: 10px;
  font-size: 2em;
}

.main {
  min-height: calc(100vh - 464px);
  padding: 50px 20px;
}

.box,
.box__item {
  display: flex;
}

.box {
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.box__item {
  flex-direction: column;
  align-items: center;
  min-width: 350px;
}

.box__item-logo {
  height: 80px;
}

.box__item-title {
  display: flex;
  align-items: center;
  height: 80px;
  margin-top: 16px;
}

.box__item:nth-child(2) .box__item-title {
  width: 100%;
  justify-content: space-between;
}

.box__item:nth-child(2) .box__item-title::before,
.box__item:nth-child(2) .box__item-title::after {
  content: '';
  height: 100%;
  display: flex;
  background: #E7EBEE;
  border: 1px solid #E7EBEE;
}

.main__chat-btn {
  font-size: 1em;
  background-color: #F04936;
  border: none;
  border-radius: 40px;
  color: #fff;
  padding: 16px 0 20px 0;
  width: 350px;
  margin-top: 80px;
  cursor: pointer;
}

.main__container {
  margin-top: 60px;
}

.main__container-text {
  position: relative;
  text-align: start;
}

.main__container-text:first-child::after,
.main__container-text:last-child::before {
  content: '';
  position: absolute;
  width: 59px;
  height: 39px;
}

.main__container-text:first-child::after {
  bottom: 8px;
  background: center / contain url('/images/quotes-right.png') no-repeat;
  right: -65px;
}

.main__container-text:last-child::before {
  top: 11px;
  background: center / contain url('/images/quotes-left.png') no-repeat;
  left: -65px;
}

.main__container-text:last-child {
  margin-top: 12px;
}

.footer {
  background-color: #E7EBEE;
  border-radius: 50px 50px 0 0;
}

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

.footer__text:last-child::before {
  content: '';
  display: flex;
  height: 50px;
  background: #F04936;
  border: 1px solid #F04936;
  margin: 30px 125px;
}

@media screen and (max-width: 576px) {
  body {
    font-size: 25px;
  }

  .header__title {
    font-size: 1.3em;
  }

  .main__chat-btn {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 20px;
  }

  .footer__text:last-child::before {
    content: none;
  }

  .footer__text:not(:first-child) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 992px) {
  .main__container-text:first-child::after,
  .main__container-text:last-child::before {
    content: none;
  }
}

@media screen and (max-width: 1200px) {
  .box__item:nth-child(2) .box__item-title {
    width: auto;
  }

  .box__item:nth-child(2) .box__item-title::before,
  .box__item:nth-child(2) .box__item-title::after {
    content: none;
  }
}
