/* start file _layout.scss*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0;
}
html {
  width: 100%;
  height: 100%;
}
.container {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}
p {
  margin: 0;
}
input {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
input::-webkit-input-placeholder {
  color: #8f8f8f;
}
::-moz-placeholder {
  color: #8f8f8f;
}
:-ms-input-placeholder {
  color: #8f8f8f;
}
::-webkit-input-placeholder {
  color: #8f8f8f;
}
::placeholder {
  color: #8f8f8f;
}
.padding {
  padding: 120px 0;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 40px;
  width: 100%;
  height: 70px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  z-index: 10;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  height: 20px;
}
.header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #121314;
  text-decoration: none;
  transition: 0.2s;
}
.header__link:hover {
  opacity: 0.7;
}
.header__link--current {
  opacity: 0.7;
}
.header__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #121314;
  text-decoration: none;
  transition: 0.2s;
}
.header__buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
}
.header__buttons .button:last-child {
  margin-left: 20px;
}
.header__buttons .button img {
  height: 20px;
  margin: 0 10px 0 -20px;
}
.header__buttons .button .arrow {
  margin: 0 -14px 0 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  border-color: #000000 transparent transparent transparent;
}
.slider {
  margin-top: 70px;
  width: 100%;
  height: 660px;
  background: #e8e8e8;
}
.line {
  width: 100%;
  height: 2px;
  background: #e8e8e8;
}
.all-works-button {
  padding: 60px 0 140px;
}
.all-works-button .button {
  height: 66px;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.button--dark {
  background: #121314;
  color: white;
}
.button--grey {
  background: #e8e8e8;
  color: #121314;
}
.button--white {
  background: white;
  color: #121314;
}
.button:hover {
  opacity: 0.95;
}
.heading--size-1 {
  font-size: 20px;
}
.heading--size-2 {
  font-size: 28px;
  font-weight: 600;
}
.heading--size-3 {
  font-size: 36px;
  font-weight: 500;
}
.heading--size-4 {
  font-size: 66px;
  line-height: 68px;
  font-weight: 600;
}
.grid {
  display: grid;
}
.link {
  display: inline-block;
  vertical-align: top;
  color: #008cff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.footer {
  margin-top: 100px;
}
.footer .grid {
  grid-template-columns: 30% 1fr;
  grid-gap: 30px;
}
.footer .grid div:nth-child(1) img {
  height: 24px;
}
.footer__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}
.footer__blocks div {
  font-size: 15px;
}
.footer__blocks div a {
  display: block;
  margin-bottom: 20px;
  color: #121314;
  text-decoration: none;
  transition: 0.2s;
}
.footer__blocks div a:hover {
  opacity: 0.7;
}
.footer__blocks div:last-child a:last-child:hover {
  color: #008cff;
  text-decoration: underline;
}
.footer__rights {
  padding: 50px 0;
  font-size: 14px;
  color: #121314;
  opacity: 0.5;
}
.footer__rights a {
  color: #121314;
}
.plus {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
}
.plus:before, .plus:after {
  content: '';
  position: absolute;
}
.plus:before {
  left: 50%;
  margin-left: -1px;
  top: 8px;
  width: 2px;
  height: 24px;
}
.plus:after {
  left: 8px;
  top: 50%;
  margin-top: -1px;
  width: 24px;
  height: 2px;
}
.in-container {
  margin: 0 auto;
  max-width: 800px;
}
.in-container .heading {
  margin-bottom: 20px;
  font-weight: 600;
}
.in-container div {
  margin-top: 100px;
}
.in-container div p {
  display: inline-block;
  vertical-align: top;
  margin-top: 30px;
  font-size: 16px;
  line-height: 24px;
}
.in-container div p span {
  display: inline-block;
  vertical-align: top;
  width: 20px;
}
.in-container .share a {
  display: inline-block;
  vertical-align: top;
  margin-right: 25px;
  opacity: 0.2;
  transition: 0.3s;
}
.in-container .share a img {
  width: 50px;
}
.in-container .share a:hover {
  opacity: 1;
}
.main:first-child {
  padding-top: 70px;
}
.in .heading--size-1 {
  margin-bottom: 30px;
}
.in .heading--size-4 {
  padding-bottom: 60px;
}
.project .link {
  margin-bottom: 30px;
}
.project .gallery {
  margin-top: 60px;
}
.about .gallery {
  margin-top: 60px;
}
/* end file _layout.scss*/
/* start file _contacts.scss*/
.contacts {
  margin-top: 70px;
}
.contacts .heading--size-4 {
  margin: 30px 0 0;
}
.contacts__form {
  margin: 0 auto 80px;
  max-width: 800px;
  background: white;
}
.contacts__form-item {
  margin-bottom: 40px;
  width: 100%;
}
.contacts__form-item p {
  font-size: 16px;
  color: #121314;
}
.contacts__form-item input {
  width: 100%;
  height: 60px;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #e8e8e8;
  font-size: 20px;
  color: #121314;
  outline: none;
  transition: 0.3s;
}
.contacts__form-item input:focus {
  border-color: #121314;
}
.contacts__form .button {
  width: 100%;
  height: 66px;
  cursor: pointer;
  border: none;
}
.contacts__block .grid {
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}
.contacts__block .heading--size-4 {
  margin-top: 30px;
}
.contacts__info {
  font-size: 20px;
  line-height: 30px;
}
.contacts__info a {
  display: block;
  color: #121314;
  text-decoration: none;
}
.contacts__info a:nth-child(2):hover {
  color: #008cff;
  text-decoration: underline;
}
.contacts__info div {
  margin-top: 40px;
}
/* end file _contacts.scss*/
/* start file _counters.scss*/
.counters .grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
}
.counters__item div:nth-child(1) {
  margin-bottom: 15px;
  font-size: 66px;
  font-weight: 600;
}
.counters__item div:nth-child(1) span {
  font-size: 20px;
  font-weight: 400;
}
.counters__item div:nth-child(1) img {
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
  height: 40px;
}
.counters__item div:nth-child(2) {
  font-size: 16px;
  line-height: 22px;
}
/* end file _counters.scss*/
/* start file _cta.scss*/
.cta {
  width: 100%;
}
.cta .grid {
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.cta__block div:nth-child(1) {
  font-size: 20px;
  font-weight: 500;
}
.cta__block div:nth-child(2) {
  margin: 30px 0 50px;
  font-size: 16px;
  line-height: 30px;
}
.cta__block div:nth-child(2) b {
  display: inline-block;
  vertical-align: top;
  width: 22px;
}
.cta__block .button {
  max-width: 280px;
  height: 66px;
}
/* end file _cta.scss*/
/* start file _faq.scss*/
.faq .grid {
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.faq .grid div:nth-child(2) .heading--size-1 {
  margin-top: 70px;
  line-height: 28px;
}
.faq .heading--size-4 {
  margin-top: 30px;
}
.faq__list {
  margin-top: 120px;
}
.faq__item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 30px 50px 30px 0;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #e8e8e8;
  text-decoration: none;
}
.faq__item:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.faq__item:hover .plus {
  background: #121314;
}
.faq__item:hover .plus:before, .faq__item:hover .plus:after {
  background: white;
}
.faq__question {
  font-size: 18px;
  font-weight: 500;
  color: #121314;
}
.faq__answer {
  max-width: 800px;
  font-size: 15px;
  color: #8f8f8f;
}
.faq__answer p {
  margin: 30px 0 0;
  line-height: 26px;
}
.faq .link {
  margin-top: 80px;
}
.faq .plus {
  right: 0;
  top: 22px;
  transition: 0.3s;
}
.faq .plus:before, .faq .plus:after {
  content: '';
  background: #8f8f8f;
  transition: 0.3s;
}
/* end file _faq.scss*/
/* start file _gallery.scss*/
.gallery {
  display: grid;
}
.gallery--main-page {
  margin-top: 120px;
}
.gallery--full {
  grid-template-columns: 1fr;
}
.gallery--full .gallery__item {
  height: 660px;
}
.gallery--double {
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.gallery--double .gallery__item {
  height: 660px;
}
.gallery--type-1 {
  grid-gap: 20px;
}
.gallery--type-1 .gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 6;
}
.gallery--type-1 .gallery__item--2 {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 3;
}
.gallery--type-1 .gallery__item--3 {
  grid-column-start: 7;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 3;
}
.gallery--type-1 .gallery__item--4 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 3;
  grid-row-end: 6;
}
.gallery--type-2 {
  grid-gap: 20px;
}
.gallery--type-2 .gallery__item {
  height: 660px;
}
.gallery--type-2 .gallery__item--1, .gallery--type-2 .gallery__item--2, .gallery--type-2 .gallery__item--4, .gallery--type-2 .gallery__item--6, .gallery--type-2 .gallery__item--7 {
  grid-column-start: 1;
}
.gallery--type-2 .gallery__item--3, .gallery--type-2 .gallery__item--5, .gallery--type-2 .gallery__item--8 {
  grid-column-start: 5;
}
.gallery--type-2 .gallery__item--1 {
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 6;
}
.gallery--type-2 .gallery__item--2 {
  grid-column-end: 5;
  grid-row-start: 6;
  grid-row-end: 12;
}
.gallery--type-2 .gallery__item--3 {
  grid-column-end: 9;
  grid-row-start: 6;
  grid-row-end: 12;
}
.gallery--type-2 .gallery__item--4 {
  grid-column-end: 5;
  grid-row-start: 12;
  grid-row-end: 18;
}
.gallery--type-2 .gallery__item--5 {
  grid-column-end: 9;
  grid-row-start: 12;
  grid-row-end: 18;
}
.gallery--type-2 .gallery__item--6 {
  grid-column-end: 9;
  grid-row-start: 18;
  grid-row-end: 24;
}
.gallery--type-2 .gallery__item--7 {
  grid-column-end: 5;
  grid-row-start: 24;
  grid-row-end: 30;
}
.gallery--type-2 .gallery__item--8 {
  grid-column-end: 9;
  grid-row-start: 24;
  grid-row-end: 30;
}
.gallery--type-2--type-2 .gallery__item {
  height: 660px;
}
.gallery--type-2--type-2 .gallery__item--1, .gallery--type-2--type-2 .gallery__item--2, .gallery--type-2--type-2 .gallery__item--4, .gallery--type-2--type-2 .gallery__item--6, .gallery--type-2--type-2 .gallery__item--7 {
  grid-column-start: 1;
}
.gallery--type-2--type-2 .gallery__item--3, .gallery--type-2--type-2 .gallery__item--5, .gallery--type-2--type-2 .gallery__item--8 {
  grid-column-start: 5;
}
.gallery--type-2--type-2 .gallery__item--1 {
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 6;
}
.gallery--type-2--type-2 .gallery__item--2 {
  grid-column-end: 5;
  grid-row-start: 6;
  grid-row-end: 12;
}
.gallery--type-2--type-2 .gallery__item--3 {
  grid-column-end: 9;
  grid-row-start: 6;
  grid-row-end: 12;
}
.gallery--type-2--type-2 .gallery__item--4 {
  grid-column-end: 5;
  grid-row-start: 12;
  grid-row-end: 18;
}
.gallery--type-2--type-2 .gallery__item--5 {
  grid-column-end: 9;
  grid-row-start: 12;
  grid-row-end: 18;
}
.gallery--type-2--type-2 .gallery__item--6 {
  grid-column-end: 9;
  grid-row-start: 18;
  grid-row-end: 24;
}
.gallery--type-2--type-2 .gallery__item--7 {
  grid-column-end: 5;
  grid-row-start: 24;
  grid-row-end: 30;
}
.gallery--type-2--type-2 .gallery__item--8 {
  grid-column-end: 9;
  grid-row-start: 24;
  grid-row-end: 30;
}
.gallery--type-3 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.gallery--type-3 .gallery__item {
  position: relative;
  height: 500px;
  background: #121314;
  overflow: hidden;
  transition: 0.3s;
}
.gallery--type-3 .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.gallery--type-3 .gallery__item:hover img {
  transform: scale(1.1);
  opacity: 0.3;
}
.gallery--type-3 .gallery__item:hover .gallery__item-content {
  bottom: 50px;
  opacity: 1;
}
.gallery--type-3 .gallery__item-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s;
  opacity: 0;
}
.gallery--type-3 .gallery__item-content .heading {
  margin-bottom: 30px;
  color: white;
}
.gallery--type-3 .gallery__item-content .button {
  width: 140px;
  height: 54px;
  font-size: 15px;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__desc {
  margin: 30px auto 0;
  max-width: 800px;
  font-size: 12px;
}
.gallery_no_grid--type-3 .gallery__item {
  position: relative;
  height: 500px;
  display: block;
  background: #121314;
  overflow: hidden;
  transition: 0.3s;
}
.gallery_no_grid--type-3 .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.gallery_no_grid--type-3 .gallery__item:hover img {
  transform: scale(1.1);
  opacity: 0.3;
}
.gallery_no_grid--type-3 .gallery__item:hover .gallery__item-content {
  bottom: 50px;
  opacity: 1;
}
.gallery_no_grid--type-3 .gallery__item-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s;
  opacity: 0;
}
.gallery_no_grid--type-3 .gallery__item-content .heading {
  margin-bottom: 30px;
  color: white;
}
.gallery_no_grid--type-3 .gallery__item-content .button {
  width: 140px;
  height: 54px;
  font-size: 15px;
}
.gallery_no_grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_no_grid__desc {
  margin: 30px auto 0;
  max-width: 800px;
  font-size: 12px;
}
/* end file _gallery.scss*/
/* start file _how-it-works.scss*/
.how-it-works .heading--size-4 {
  margin: 30px 0 100px;
}
.how-it-works .grid {
  margin-top: 50px;
  grid-template-columns: 40px 25% 1fr;
  grid-gap: 40px;
}
.how-it-works .grid div:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
}
.how-it-works .grid div:nth-child(2) {
  font-size: 20px;
  font-weight: 600;
}
.how-it-works .grid div:nth-child(3) {
  font-size: 16px;
  line-height: 23px;
}
/* end file _how-it-works.scss*/
/* start file _our-client.scss*/
.our-client .heading--size-4 {
  margin: 30px 0 50px;
}
.our-client .grid {
  margin-top: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 70px;
}
.our-client .grid div div:nth-child(1) {
  margin: 10px 0 30px;
  font-size: 19px;
  font-weight: 600;
}
.our-client .grid div div:nth-child(2) {
  font-size: 16px;
  line-height: 23px;
}
/* end file _our-client.scss*/
/* start file _parallax.scss*/
.parallax {
  position: relative;
  padding: 200px 0;
  background-image: url("../assets/portfolio/demo1.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
.parallax::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.parallax .heading--size-1 {
  margin-bottom: 30px;
}
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}
/* end file _parallax.scss*/
/* start file _popup.scss*/
.popup {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 4%;
  width: 100%;
  height: 100%;
  z-index: 100;
  box-sizing: border-box;
}
.popup__close {
  position: absolute;
  right: 50px;
  top: 12px;
}
.popup__close .plus {
  transform: rotate(45deg);
}
.popup__close .plus:before, .popup__close .plus:after {
  content: '';
  background: #121314;
}
.popup__container {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.popup__content {
  display: grid;
  grid-template-columns: 36% 1fr;
  height: 100%;
}
.popup__gubini {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121314;
}
.popup__gubini img {
  max-width: 220px;
}
.popup__quiz {
  position: relative;
  padding: 40px;
}
.popup__answers {
  position: relative;
}
.popup__answers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 30px;
}
.popup__answers-list a {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 56px;
  height: 58px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  color: #121314;
}
.popup__answers-list a:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 15px;
  width: 26px;
  height: 26px;
  background: #e8e8e8;
  border-radius: 50%;
  box-sizing: border-box;
}
.popup__answers-list a.selected:after {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #121314;
  border-radius: 50%;
}
.popup__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 40px;
  width: 100%;
  height: 100px;
  border-top: 1px solid #e8e8e8;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-gap: 40px;
}
.popup__progress-bar {
  position: relative;
  margin-top: 60px;
  width: auto;
  height: 7px;
  background: #e8e8e8;
  border-radius: 10px;
}
.popup__progress-bar div {
  position: absolute;
  left: 0;
  top: -30px;
  font-size: 14px;
}
.popup__progress-buttons {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 10px;
}
.popup__progress-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  box-sizing: border-box;
  margin-top: 25px;
  font-size: 15px;
  text-decoration: none;
}
.popup__progress-buttons a:nth-child(1) {
  width: 50px;
  height: 50px;
  border: 1px solid #e8e8e8;
  color: #121314;
}
.popup__progress-buttons a:nth-child(2) {
  height: 50px;
}
.popup__progress-buttons a:nth-child(3) {
  height: 50px;
}
/* end file _popup.scss*/
/* start file _team.scss*/
.team {
  background: #121314;
  color: white;
}
.team .heading--size-4 {
  margin: 0 0 100px;
}
.team .grid {
  margin-top: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 44px;
  row-gap: 70px;
}
.team__item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
}
.team__item div:nth-child(2) {
  margin: 20px 0 10px;
  font-weight: 600;
}
.team__item div:nth-child(3) {
  font-size: 16px;
  opacity: 0.6;
}
/* end file _team.scss*/
/* start file _what-will-i-get.scss*/
.what-will-i-get {
  background: #121314;
  color: white;
}
.what-will-i-get .heading--size-4 {
  margin-top: 30px;
}
.what-will-i-get .grid {
  margin-top: 100px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
  row-gap: 80px;
}
.what-will-i-get .grid div div:nth-child(1) {
  margin: 10px 0 30px;
  font-size: 19px;
  font-weight: 600;
}
.what-will-i-get .grid div div:nth-child(2) {
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  opacity: 0.7;
}
/* end file _what-will-i-get.scss*/
/* start file _why-we.scss*/
.why-we .grid {
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.why-we .grid div:nth-child(2) .heading--size-1 {
  margin-top: 48px;
  padding-bottom: 40px;
  line-height: 28px;
}
.why-we .heading--size-4 {
  margin-top: 30px;
}
.why-we__list-item {
  margin-top: 50px;
}
.why-we__list-item div:nth-child(1) {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
}
.why-we__list-item div:nth-child(2) {
  font-size: 16px;
}
.why-we__list .link {
  margin-top: 80px;
}
/* end file _why-we.scss*/
.request-form__field--error input, .request-form__field--error textarea {
  border-bottom: solid 1px red !important;
}
.request-form__loading-container {
  display: none;
  margin-top: 40px;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.request-form__report-container {
  display: none;
  margin: 40px auto 40px;
  height: 44px;
  line-height: 44px;
  font-size: 15px;
  color: #000000;
}
.request-form__report-container p {
  color: #000000;
  margin: 0px;
  line-height: 44px;
  padding: 0px;
}
.request-spinner {
  width: 70px;
}
.request-spinner > div {
  width: 18px;
  height: 18px;
  background-color: #000000;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.request-spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.request-spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.next-disabled {
  opacity: 0.5;
  transition: 0.5s;
}
.next-disabled:hover {
  opacity: 0.5;
  transition: 0.5s;
  cursor: not-allowed;
}
.qst-form__field--error input, .request-form__field--error textarea {
  border-bottom: solid 1px red !important;
}
.qst-form__loading-container {
  display: none;
  margin-top: 40px;
  height: 44px;
  line-height: 44px;
}
.qst-form__report-container {
  display: none;
  margin: 40px auto 40px;
  height: 44px;
  line-height: 44px;
  font-size: 15px;
  color: #000000;
}
.qst-form__report-container p {
  color: #000000;
  margin: 0px;
  line-height: 44px;
  padding: 0px;
}
.qst-form {
  margin: 0px;
  max-width: 100%;
}
.qst-form__field {
  display: inline-block;
  width: 50%;
  padding: 0px 5px 0px 0px;
  box-sizing: border-box;
}
.qst-page-form {
  display: none;
}
.qst-form-button {
  display: none;
}
.qst-spinner {
  width: 70px;
}
.qst-spinner > div {
  width: 18px;
  height: 18px;
  background-color: #000000;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.qst-spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.qst-spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* start images custom styles classes */
.image-custom-style-49881896a5b92b73d300c5e4cdbd6785 {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 6;
  grid-column-end: 5;
}
.image-custom-style-a678c5dde71b1ba4ad2636edcef1766d {
  grid-row-start: 1;
  grid-column-start: 5;
  grid-row-end: 3;
  grid-column-end: 7;
}
.image-custom-style-530dee1f5017d0131c988f43c5f8cdd8 {
  grid-row-start: 1;
  grid-column-start: 7;
  grid-row-end: 3;
  grid-column-end: 9;
}
.image-custom-style-85bb312b88a0b5a8de64cdab85b532f3 {
  grid-row-start: 3;
  grid-column-start: 5;
  grid-row-end: 6;
  grid-column-end: 9;
}
/* end images custom styles classes */


