@-webkit-keyframes btn-flash {
  0% {
    -webkit-transform: translateX(-25em) skewX(-45deg);
    transform: translateX(-25em) skewX(-45deg);
  }
  50% {
    -webkit-transform: translateX(-25em) skewX(-45deg);
    transform: translateX(-25em) skewX(-45deg);
  }
  60% {
    -webkit-transform: translateX(25em) skewX(-45deg);
    transform: translateX(25em) skewX(-45deg);
  }
  100% {
    -webkit-transform: translateX(25em) skewX(-45deg);
    transform: translateX(25em) skewX(-45deg);
  }
}

@keyframes btn-flash {
  0% {
    -webkit-transform: translateX(-25em) skewX(-45deg);
    transform: translateX(-25em) skewX(-45deg);
  }
  50% {
    -webkit-transform: translateX(-25em) skewX(-45deg);
    transform: translateX(-25em) skewX(-45deg);
  }
  60% {
    -webkit-transform: translateX(25em) skewX(-45deg);
    transform: translateX(25em) skewX(-45deg);
  }
  100% {
    -webkit-transform: translateX(25em) skewX(-45deg);
    transform: translateX(25em) skewX(-45deg);
  }
}

.container {
  width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
}

@media (max-width: 1400px) {
  .container {
    width: 1200px;
  }
}

@media (max-width: 1200px) {
  .container {
    width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 540px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
  }
}

.section {
  padding: 80px 0;
}

.title {
  font-size: 52px;
  text-align: center;
  font-weight: 800;
  line-height: 1.1;
  position: relative;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form > *:not(:last-child) {
  margin-bottom: 20px;
}

.form-input {
  padding: 0px 20px;
  border-radius: 10px;
  border: 1px solid #666666;
  border: none;
  height: 50px;
  background-color: transparent;
  color: white;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.form-input::-webkit-input-placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input:-ms-input-placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input::-ms-input-placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input::placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input:hover {
  border-color: #86868b;
}

.form-input:focus {
  border-color: #0a84ff;
}

.form-submit {
  cursor: pointer;
  color: white;
  font-weight: 500;
  border: 2px solid #0a84ff;
  border: none;
  background-color: #0a84ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form label.form-label {
  margin-bottom: 10px;
}

* {
  font-family: "SFUIDisplay", Arial, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.init-hidden {
  display: none !important;
}

.processing {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 10000000;
  pointer-events: none;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.processing.active {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: all;
}

.processing-text {
  font-size: 35px;
  color: white;
  font-weight: 600;
  margin-top: 30px;
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
}

.processing-spinner {
  width: 50px;
  height: 50px;
  position: relative;
}

.processing-spinner .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 50%;
}

.processing-spinner .circle:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  background-color: #fff;
  opacity: 0.2;
  width: 15px;
  height: 5px;
  -webkit-transition: 3s;
  transition: 3s;
}

.processing-spinner .circle.active:after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.processing-spinner .circle:nth-child(1) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.processing-spinner .circle:nth-child(2) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.processing-spinner .circle:nth-child(3) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.processing-spinner .circle:nth-child(4) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}

.processing-spinner .circle:nth-child(5) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}

.processing-spinner .circle:nth-child(6) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.processing-spinner .circle:nth-child(7) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
}

.processing-spinner .circle:nth-child(8) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
}

.processing-spinner .circle:nth-child(9) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.processing-spinner .circle:nth-child(10) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
}

.processing-spinner .circle:nth-child(11) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
}

.processing-spinner .circle:nth-child(12) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.processing img {
  display: none;
  width: 100px;
  height: 100px;
  -webkit-animation: rotate 2s infinite linear;
          animation: rotate 2s infinite linear;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.form-title {
  color: #222;
  font-size: 26px;
  line-height: 30px;
  margin-top: 0;
  text-align: left;
}

.form-progress {
  margin: 30px 0 15px;
  width: 100%;
  height: 8px;
  background-color: #29940055;
  position: relative;
}

.form-progress-done {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 8px;
  min-width: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #299400;
}

.form-counter {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 24px;
  font-weight: 600;
}

.form-counter-cur {
  font-weight: 600;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form > *:not(:last-child) {
  margin-bottom: 20px;
}

.form-input {
  padding: 0px 20px;
  border-radius: 10px;
  border: 1px solid #666666;
  height: 50px;
  background-color: transparent;
  color: white;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.form-input::-webkit-input-placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input:-ms-input-placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input::-ms-input-placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input::placeholder {
  font-size: 18px;
  color: #666666;
}

.form-input:hover {
  border-color: #86868b;
}

.form-input:focus {
  border-color: #0a84ff;
}

.form-submit {
  cursor: pointer;
  color: white;
  font-weight: 500;
  border: 2px solid #0a84ff;
  background-color: #0a84ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form label.form-label {
  margin-bottom: 10px;
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  font-family: "Roboto", Arial, sans-serif;
  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;
}

.popup.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.popup.active .popup-overlay {
  -webkit-transition-delay: 0;
          transition-delay: 0;
  opacity: 1;
}

.popup-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
}

.popup__window {
  width: 100%;
  max-width: 560px;
  position: relative;
  background-color: white;
  color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(60%) perspective(1000px) rotateX(-90deg);
          transform: translateY(60%) perspective(1000px) rotateX(-90deg);
  pointer-events: all;
}

.popup__window-top {
  padding: 40px;
  background-color: white;
  color: white;
}

.popup__window-body {
  padding: 40px;
  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;
}

.popup__window-body-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

.popup__window-body-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.popup__window-body-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}

.popup__window-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__window-logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup__window-logo-text-1 {
  font-size: 16px;
  font-weight: 600;
}

.popup__window-logo-text-2 {
  font-size: 12px;
}

.popup__window-logo-img {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}

.popup__window-close {
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.popup__window-close:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: 24px;
  width: 1px;
  background-color: #666666;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.popup__window-close:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: 1px;
  width: 24px;
  background-color: #666666;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.popup__window-close:hover {
  background-color: #0a84ff;
}

.popup__window-close:hover:before, .popup__window-close:hover:after {
  background-color: white;
}

.popup__window-form {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.popup__window-form .form-tel,
.popup__window-form .form-text {
  color: black;
}

.popup__item {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  pointer-events: none;
}

.popup__item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.popup__item.active .popup__window {
  opacity: 1;
  -webkit-transform: translateY(0%) perspective(1000px) rotateX(0deg);
          transform: translateY(0%) perspective(1000px) rotateX(0deg);
}

.popup-quiz {
  background: white;
}

.popup-quiz:after {
  content: none;
}

.popup-quiz .popup__window-close {
  background-color: #0a84ff;
}

.popup-quiz .popup__window-close:after, .popup-quiz .popup__window-close:before {
  background-color: white;
}

.quiz-body {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.quiz-item {
  display: none;
}

.quiz-item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.quiz-item-btn {
  padding: 10px 20px;
  background-color: #0a84ff;
  color: white;
  font-size: 20px;
  font-weight: 500;
  -ms-flex-item-align: end;
      align-self: flex-end;
  border-radius: 10px;
  cursor: pointer;
}

.quiz-item-btn.unactive {
  pointer-events: none;
  opacity: 0.5;
}

.quiz-item-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.quiz-item-btn-second-back {
  padding: 10px 20px;
  background-color: #fb8b00;
  color: white;
  font-size: 20px;
  font-weight: 500;
  /* align-self: flex-end; */
  border-radius: 10px;
  cursor: pointer;
}

.quiz-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.quiz-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: calc((100% - 10px) / 2);
      flex-basis: calc((100% - 10px) / 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}

.quiz-list-item.active .quiz-list-circle {
  background-color: #0a84ff;
}

.quiz-list-circle {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  border-radius: 50%;
  margin-right: 15px;
  -webkit-box-shadow: 0 0 0 3px white, 0 0 0 6px #0a84ff;
          box-shadow: 0 0 0 3px white, 0 0 0 6px #0a84ff;
}

.quiz-list-text {
  font-size: 16px;
  line-height: 1.1;
}

.quiz-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.quiz-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.quiz-grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -ms-flex-preferred-size: calc((100% - 40px) / 2);
      flex-basis: calc((100% - 40px) / 2);
  padding: 30px 10px 10px;
  border-radius: 10px;
}

.quiz-grid-item-caption {
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.quiz-grid-item-img {
  width: 100%;
  aspect-ratio: 1/1;
}

.quiz-grid-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.quiz-grid-item:hover .quiz-grid-item-img img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.quiz-grid-item.active {
  background-color: rgba(10, 132, 255, 0.2);
}

.quiz-grid-item.active .quiz-grid-item-img img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.quiz-textarea {
  width: 100%;
  height: 80px;
  padding: 15px;
  color: black;
  border: 1px solid #ddd9d9;
}

.first {
  min-height: 1100px;
  padding: 120px 0 120px;
  overflow: hidden;
}

.first__container {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.first__title {
  font-size: 42px;
  font-weight: 600;
  max-width: 800px;
  text-align: center;
}

.first__subtitle {
  font-size: 20px;
  max-width: 800px;
  text-align: center;
  margin-bottom: 80px;
}

.first__img {
  display: block;
  width: 100%;
}

.first__btn {
  margin: 0 10px;
  color: #ffffff;
  background-color: #0a84ff;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  font-family: SFUIDisplay;
  font-weight: 600;
  border: 2px solid #0a84ff;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.first__btn:before {
  content: "";
  position: absolute;
  height: 110%;
  top: -2px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: translateX(-25em) skewX(-45deg);
          transform: translateX(-25em) skewX(-45deg);
  -webkit-animation: btn-flash 6s infinite;
          animation: btn-flash 6s infinite;
}

.first__btn:hover {
  color: white;
  background-color: #0668c9;
}

.first__btn-2 {
  background-color: white;
  color: #0a84ff !important;
}

.first__btn-2:before {
  content: none;
}

.first__btn-2:hover {
  color: white !important;
  background-color: #0a84ff;
}

.first__btn-wrapper {
  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;
  margin-bottom: 60px;
}

.first__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first__list-item {
  width: 30%;
}

.first__list-item-title {
  padding-left: 40px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
}

.first__list-item-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../images/eye.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: invert(1);
          filter: invert(1);
  width: 30px;
  height: 30px;
}

.first__list-item-text {
  font-size: 16px;
}

.second__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.second__list-item {
  height: 300px;
  position: relative;
  cursor: pointer;
  max-width: 500px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

.second__list-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.second__list-item-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: white;
}

.second__list-item:hover .second__list-item-text {
  opacity: 1;
}

.phone-block {
  padding: 120px 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Open Sans", -apple-system, sans-serif !important;
}

.phone-block-container {
  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;
}

.phone-block-link {
  font-size: 76px;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1fa8ff !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #1fa8ff;
  text-decoration: none !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 10px;
  position: relative;
}

.phone-block-link:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 4px;
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #1fa8ff;
}

.phone-block-link:hover:after {
  width: 100%;
}

.phone-block-link--2 {
  display: none;
}

.phone-block-text {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  background-color: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phone-block-img {
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-right: 10px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #1fa8ff;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(../../images/phone.png);
  mask-image: url(../../images/phone.png);
}

.line {
  padding: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3d9eff), color-stop(#0a84ff), to(#006bd6));
  background-image: linear-gradient(#3d9eff, #0a84ff, #006bd6);
  color: white;
  margin-top: 60px;
  margin-bottom: -60px;
}

.line__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.line .timer {
  font-size: 70px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.line__text {
  padding: 10px 0;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.line__text-1 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 5px;
}

.line__text-1 span {
  font-weight: 800;
}

.line__text-2 {
  font-size: 18px;
}

.line__form {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.line__form > *:not(:last-child) {
  margin: 0 10px 0 0;
}

.line__form-tel {
  background-color: white;
  color: #666;
}

.line__form-submit {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffa22f), color-stop(#fb8b00), to(#c86f00));
  background-image: linear-gradient(#ffa22f, #fb8b00, #c86f00);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.line__form-submit:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.callback {
  padding: 60px 0;
  margin-bottom: -80px;
}

.callback__container {
  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;
}

.callback__title {
  color: #222;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
}

.callback__subtitle {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  color: black;
  margin-bottom: 50px;
}

.callback__form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 40px !important;
}

.callback__form_input {
  font-size: 17px;
  line-height: 1.23543;
  font-weight: 400;
  letter-spacing: -0.022em;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  width: 230px;
  height: 3.3em;
  padding-left: 16px;
  padding-right: 16px;
  color: #333;
  text-align: left;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  background-clip: padding-box;
  margin: 0 15px;
}

.callback__form_select {
  font-size: 17px;
  line-height: 1.23543;
  font-weight: 400;
  letter-spacing: -0.022em;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 230px;
  height: 3.3em;
  color: #333;
  /* padding: 0 2.35294rem 0 0.94118rem; */
  padding: 0 2.35294rem 0 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background-clip: padding-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 32px;
}

.callback__form_select-div {
  margin: 0 15px;
  position: relative;
}

.callback__form_select-div .select_arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #6f6f6f;
  border-right: 1px solid #6f6f6f;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.callback__form-submit {
  padding: 10px;
  background-color: #1fa8ff;
  color: white;
  font-weight: 400;
  border: none;
  font-size: 18px;
  border-radius: 100px;
}

.cta2 {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3d9eff), color-stop(#0a84ff), to(#006bd6));
  background-image: linear-gradient(#3d9eff, #0a84ff, #006bd6);
  margin: 60px 0 -40px;
}

.cta2:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
  background-size: contain;
  -webkit-filter: hue-rotate(26deg) saturate(0.9) brightness(1.2);
          filter: hue-rotate(26deg) saturate(0.9) brightness(1.2);
}

.cta2__title {
  color: white;
  margin-bottom: 30px;
}

.cta2__title:after {
  content: none;
}

.cta2__subtitle {
  color: white;
  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;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
}

.cta2__subtitle-item {
  margin: 0 10px;
}

.cta2__form {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -5px -5px 10px -5px;
}

.cta2__form > * {
  margin: 5px;
}

.cta2__form-tel {
  background-color: white;
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 10px;
  color: black;
}

.cta2__form-submit {
  border-radius: 10px;
  border: none;
  color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffa22f), color-stop(#fb8b00), to(#c86f00));
  background-image: linear-gradient(#ffa22f, #fb8b00, #c86f00);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.cta2__form-submit:hover {
  background-color: #3d9eff;
  background-color: #0a84ff;
  color: white;
}

.cta2__after {
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.cta2__after a {
  color: white !important;
  text-decoration: underline !important;
}

.contact__form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -5px -5px 10px -5px;
}

.contact__form > * {
  margin: 5px;
}

.contact__form-tel {
  background-color: white;
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 10px;
  color: black;
}

.contact__form-submit {
  border-radius: 10px;
  border: none;
  color: white;
  background-color: #0a84ff;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.contact__form-submit:hover {
  background-color: #3d9eff;
  background-color: #0a84ff;
  color: white;
}

.contact__form-after {
  color: black;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.contact__form-after a {
  color: #0a84ff !important;
  text-decoration: underline !important;
}

.benefits .t503__bgimg {
  margin: 0 auto;
}

.benefits .t503__title {
  text-align: center;
}

.benefits .t503__descr {
  text-align: center;
  text-wrap: balance;
}

.t228__right_descr a {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.t228__right_descr a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  background-color: #0a84ff;
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.t228__right_descr:hover a {
  color: #0a84ff !important;
}

.t228__right_descr:hover a:before {
  width: 100%;
}

@media (max-width: 1200px) {
  .first__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -20px -20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .first__list-item {
    width: 350px;
    margin: 20px 20px;
  }
  .second__list-item {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media (max-width: 992px) {
  .line {
    padding: 30px 0;
  }
  .line__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .line__form {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .line__form-submit {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .line__text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .line .timer {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .first {
    min-width: 0;
    min-height: 0;
  }
  .first__title {
    font-size: 32px;
  }
  .second__list-item {
    height: 200px;
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
  .phone-block {
    padding: 40px 0 0;
  }
  .phone-block-link {
    display: none;
    font-size: 32px;
  }
  .phone-block-link--2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .phone-block-text {
    font-size: 24px;
  }
  .line__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 100%;
    max-width: 400px;
  }
  .line__form-tel {
    margin: 0 0 10px !important;
    width: 100%;
  }
  .line__form-submit {
    width: 100%;
  }
  .line .timer {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .callback__form-top {
    width: 100%;
    max-width: 400px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .callback__form-top > * {
    width: 100%;
    margin: 0 0 10px;
  }
  .callback__form_select {
    width: 100%;
  }
  .cta2__title {
    font-size: 28px;
  }
  .cta2__subtitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta2__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta2__form > *:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .second__list-item {
    height: 200px;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 100%;
  }
}
