@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@1&display=swap");
.why {
  padding: 80px 0;
}
.why__title {
  text-align: center;
  margin-bottom: 30px;
}
.why__text {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.why__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-bottom: 70px;
}
.why__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.why__item-icon {
  width: 35px;
  margin-right: 15px;
}
.why__item-text {
  width: calc(100% - 50px);
  font-weight: 700;
}
.why__next {
  background: #fff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 15px;
}
.why__next img {
  width: 25px;
  margin-right: 15px;
}
@media (max-width: 992px) {
  .why {
    padding: 50px 0;
  }
  .why__title {
    margin-bottom: 25px;
  }
  .why__text {
    margin-bottom: 30px;
  }
  .why__list {
    margin-bottom: 50px;
  }
}
@media (max-width: 650px) {
  .why__list {
    margin-bottom: 30px;
  }
  .why__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .why__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 25px;
  }
}

.for-whom__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.for-whom__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.for-whom__top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.for-whom__item-icon {
  width: 55px;
  margin-right: 10px;
}
.for-whom__item-title {
  font-size: 1.3rem;
}
.for-whom__next {
  max-width: 800px;
  margin: 50px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.for-whom__next > div {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2509803922);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.for-whom__next img {
  width: 60px;
  margin-right: 30px;
}
.for-whom__next p {
  width: calc(100% - 90px);
}
@media (max-width: 1200px) {
  .for-whom__next br {
    display: none;
  }
}
@media (max-width: 768px) {
  .for-whom__title {
    margin-bottom: 35px;
  }
  .for-whom__list {
    grid-column-gap: 20px;
  }
  .for-whom__item-icon {
    width: 35px;
  }
  .for-whom__item-title {
    font-size: 1.1rem;
  }
  .for-whom__next {
    max-width: 500px;
    margin: 45px auto 0;
  }
  .for-whom__next > div {
    padding-top: 25px;
  }
  .for-whom__next img {
    width: 40px;
    margin-right: 20px;
  }
  .for-whom__next p {
    width: calc(100% - 60px);
  }
}
@media (max-width: 575px) {
  .for-whom__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .for-whom__next {
    max-width: 100%;
  }
}

.faq {
  padding: 40px 0;
}
.faq .faq-item {
  margin-bottom: 10px;
  overflow: hidden;
  border-bottom: 1px solid #000000;
}
.faq .faq-item:first-child {
  border-top: 1px solid #000000;
}
.faq .faq-header {
  background: none;
  padding: 25px 0;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  outline: none;
  text-align: left;
  width: 100%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq .faq-header p {
  width: calc(100% - 60px);
}
.faq .faq-header:hover span {
  background: #000;
  color: #fff;
}
.faq .faq-header:hover span g {
  stroke: #fff;
}
.faq .faq-content {
  display: none;
  padding-bottom: 35px;
}
.faq .faq-content p:not(:last-child) {
  margin-bottom: 15px;
}
.faq .faq-header span {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50%;
  background: #ffe463;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq .faq-header.active span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq g {
  stroke: #000;
}
@media (max-width: 575px) {
  .faq .faq-header {
    padding: 20px 0;
  }
  .faq .faq-header span {
    width: 36px;
    height: 36px;
  }
}

.reviews__item-text p {
  font-family: "Montserrat", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.timer {
  margin: 0;
  padding: 0px 0 80px;
}
.timer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column-gap: 50px;
  margin: 60px 0;
}
.timer__item {
  -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;
}
.timer__item-text {
  font-size: 1.3rem;
  font-weight: 500;
}
.timer__item-num {
  font-size: 3.8rem;
  font-weight: 500;
}
.timer__text {
  font-size: 1.7rem;
  text-align: center;
}
@media (max-width: 768px) {
  .timer__content {
    margin: 40px 0;
    grid-column-gap: 30px;
  }
  .timer__text {
    font-size: 1.3rem;
  }
  .timer__item-text {
    font-size: 1rem;
  }
  .timer__item-num {
    font-size: 2.1rem;
  }
}

.beckon {
  margin-bottom: 0;
}

.widget {
  position: fixed;
  right: 15px;
  bottom: 15px;
  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;
}
.widget__inner {
  margin-bottom: 5px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.widget__inner a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.widget__inner a:not(:last-child) {
  margin-bottom: 5px;
}
.widget__inner a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.widget__external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  background: #ffd700;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-animation: scale-pulse 1.5s infinite ease-in-out;
          animation: scale-pulse 1.5s infinite ease-in-out;
}
.widget__external:hover {
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.3176470588);
          box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.3176470588);
}
.widget .icon-close {
  display: none;
}
.widget.active .icon-close {
  display: block;
}
.widget.active .icon-show {
  display: none;
}
@media (max-width: 768px) {
  .widget__external {
    width: 60px;
    height: 60px;
  }
}

@-webkit-keyframes scale-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}