@import url(utils/index.css);

.hero {
  position: relative;
  padding: 250px 0 50px;
  background: #e8f1ff60;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url(../images/hero-bg.jpg) no-repeat bottom/cover;
}

.hero__card {
  max-width: 360px;
  padding-block: 20px;
}

.hero__subtitle {
  font-size: 15px;
  margin: 10px 0 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.services {
  background: #f5f5f5;
}

.services__item:hover {
  cursor: pointer;
  border-color: #459bfd;
}

.services__more {
  color: #0658b6;
  font-size: 25px;
  margin: 30px 0 0;
  text-decoration: underline;
  transition: color ease 0.3s, transform ease 0.3s;
}

.services__more:hover {
  color: #459bfd;
}

.services__more:active {
  color: #002c5e;
}

.about__item {
  padding: 35px;
  text-align: center;
  border-radius: 10px;
  background: #f7faff;
}

.about__item-icon {
  font-size: 28px;
}

.about__item-text {
  font-size: 18px;
  margin: 20px 0 0;
  font-weight: bold;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva,
    Verdana, sans-serif;
}

.reviews {
  background: #f5f5f5;
}

.reviews__item {
  padding: 30px;
}

.reviews__item-author {
  text-align: left;
  color: #6d6d6d;
}

.reviews__item-text {
  margin: 10px 0 0;
  line-height: 1.3;
  font-size: 20px;
}

.faq__title {
  margin: 0 0 40px;
}

.faq__item {
  padding: 15px;
  cursor: pointer;
  user-select: none;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.faq__item:not(:last-child) {
  margin: 0 0 15px;
}

.faq__name {
  text-align: left;
  font-weight: bold;
}

.faq__text {
  padding: 10px 0 0;
}

.request {
  background: #e9f2ff;
}

.request__form {
  max-width: 400px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.request__input:not(:last-of-type) {
  margin: 0 0 15px;
}

.request__input {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.request__button {
  margin: 20px 0 0;
}

