/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  font-family: "Roboto";
  overflow-x: hidden;
}

body {
  overflow: hidden;
}

.development {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
  margin-top: 60px;
}
.development .show-img {
  display: none;
}
.development .developmen__info {
  display: flex;
  align-items: center;
}
.development .developmen__info .developmen-text {
  width: 70%;
}
.development .developmen__info .developmen-text h1 {
  color: #333333;
  font-size: 36px;
  font-weight: 800;
  line-height: 124%; /* 44.64px */
  margin-bottom: 32px;
}
.development .developmen__info .developmen-text p {
  color: #272828;
  font-size: 20px;
  font-weight: 400;
  line-height: 124%; /* 24.8px */
  margin-bottom: 20px;
}
.development .developmen__info .developmen-image {
  width: 30%;
}
.development .developmen__info .developmen-image img {
  width: 100%;
}

.create-product .create-product__wrap {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
  margin-top: 60px;
}
.create-product .create-product__wrap h1 {
  color: #272828;
  font-size: 24px;
  font-weight: 700;
  line-height: 124%; /* 29.76px */
  margin-bottom: 20px;
}
.create-product .create-product__wrap .steps {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.create-product .create-product__wrap .steps .steps-item {
  border-radius: 10px;
  border: 1px solid #D3DEE0;
  background: #FFF;
  padding: 20px;
  margin: 10px;
}
.create-product .create-product__wrap .steps .steps-item div span {
  text-align: center;
  color: white;
  border-radius: 50px;
  background: #FC5101;
  width: 32px;
  height: 32px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  line-height: 32px;
}
.create-product .create-product__wrap .steps .steps-item div p {
  color: #272828;
  font-size: 18px;
  font-weight: 400;
  line-height: 124%; /* 22.32px */
}
.create-product .create-product__wrap .steps .step1,
.create-product .create-product__wrap .steps .step2,
.create-product .create-product__wrap .steps .step3,
.create-product .create-product__wrap .steps .step4,
.create-product .create-product__wrap .steps .step5,
.create-product .create-product__wrap .steps .step6 {
  width: 23.3%;
}
.create-product .create-product__wrap .steps .step7 {
  width: 48.36%;
}
.create-product .create-product__wrap .steps .step8 {
  width: 99%;
}

@media (max-width: 1210px) {
  .step1,
  .step2,
  .step3,
  .step4,
  .step5,
  .step6 {
    width: 22.3% !important;
  }
  .step7 {
    width: 47.36% !important;
  }
  .step8 {
    width: 96% !important;
  }
}
.dev-steps {
  background: #FBFBFB;
}
.dev-steps .dev-steps__wraper {
  max-width: 1230px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 60px 15px;
}

.tabs {
  display: flex;
  min-height: 314px;
  justify-content: space-between;
}

.tabs__nav {
  display: flex;
  flex-direction: column;
}

.tabs__nav-btn {
  font-weight: 500;
  padding: 12px 20px;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #7C808C;
  margin-bottom: 14px;
  font-size: 16px;
}

.tabs__nav-btn.active {
  border-radius: 10px;
  background: #006CD2;
  padding: 12px 20px;
  color: #ffffff;
  text-align: left;
}

.tabs__content {
  margin-left: 60px;
}
.tabs__content img {
  margin-bottom: 30px;
  width: 100%;
}
.tabs__content p {
  color: #272828;
  font-size: 18px;
  font-weight: 400;
  line-height: 124%; /* 22.32px */
  max-width: 800px;
}

.tabs__item {
  display: none;
  height: 100%;
  padding: 20px;
  transform: scale(0.9);
  transition: all 0.5s ease-in;
}

.tabs__item.active {
  display: block;
  transition: all 0.5s ease-in;
  transform: scale(1);
  border-radius: 10px;
  border: 1px solid #D3DEE0;
  max-width: 715px;
}

.tabs__item-mobile {
  display: none;
}

.q-a {
  position: relative;
}
.q-a-form-wrap{
    display: flex;
    flex-direction: column-reverse;
}
.q-a .form-leftline {
  position: absolute;
  left: 0;
  bottom: 100px;
}
.q-a .form-rightline {
  position: absolute;
  right: -30px;
  top: 100px;
}
.q-a .q-a-wraper {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  padding: 40px;
  border-radius: 40px;
  margin: 0 auto;
  margin-top: 50px;
  background: linear-gradient(0deg, rgba(176, 205, 211, 0.1) 0%, rgba(176, 205, 211, 0.1) 100%), #FFF;
}
.q-a .q-a-wraper h1 {
  color: #006CD2;
  font-size: 32px;
  text-align: center;
  font-weight: 800;
  line-height: 124%; /* 39.68px */
}
@media screen and (max-width: 750px) {
  .q-a .q-a-wraper {
    background: none;
    padding: 0 15px;
  }
  .q-a .q-a-wraper h1 {
    text-align: start;
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .q-a .q-a-wraper h1 {
    font-size: 25px;
  }
}
.q-a .contact-form span {
  color: #333333;
  font-size: 21px;
  font-weight: 600;
  line-height: 124%; /* 26.04px */
}
@media screen and (max-width: 750px) {
  .q-a .contact-form span {
    font-size: 28px;
  }
}
.q-a .contact-form form {
  max-width: 600px;
  margin: 0 auto;
}

.q-a .contact-form .user-email,
.q-a .contact-form .user-name,
.q-a .contact-form .user-number,
.q-a .contact-form .select {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.q-a .contact-form input,
.q-a .contact-form .choices__inner {
  border: 2px solid #b4b7c0;
  outline: none;
  height: 52px;
  border-radius: 10px;
  padding-left: 1rem;
  margin-top: 15px;
  color: #A2A7B4;
  background: white;
}
.q-a .contact-form .choices__list--single {
  padding: 0;
  padding-top: 15px;
  font-size: 16px;
  color: #75758b;
}
.choices{
    position:relative;
    outline:none;
    cursor: pointer;
}
.q-a .contact-form .choices__list--dropdown {
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #D3DEE0;
  display: none;
  background: white;
  position: absolute;
  width: 100%;
}
.q-a .contact-form .choices__list--dropdown.is-active {
    display: block;
}
.q-a .contact-form .choices__list--dropdown .choices__item--selectable.is-highlighted, .q-a .contact-form .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: #F2F9FF;
}
.q-a .contact-form .choices__list--dropdown .choices__item, .q-a .contact-form .choices__list[aria-expanded] .choices__item {
  font-size: 16px;
  padding: 12px 10px;
  color: #272828;
}
.q-a .contact-form .is-open {
  transition: all 1s ease;
}
.q-a .contact-form .choices__placeholder {
  opacity: 1;
  color: #75758b;
}
.q-a .contact-form .choices__list--dropdown .choices__placeholder {
  display: none;
}
.q-a .contact-form .choices[data-type*=select-one]::after {
  height: 9px;
  width: 9px;
  z-index: 3;
  border: 2px solid #006CD2;
  border-width: 0 0 2px 2px;
  top: 57%;
  right: 5%;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}
.q-a .contact-form .choices[data-type*=select-one].is-open::after {
  transform: rotate(135deg);
  top: 48px;
}
.q-a .contact-form label {
  padding-left: 1rem;
  color: #A2A7B4;
  transform: translateY(36px);
  transform-origin: left top;
  cursor: text;
  transition: all 0.3s;
}
.q-a .contact-form input:not(:-moz-placeholder-shown) ~ label {
  transform: translateY(3px) scale(0.8);
}
.q-a .contact-form input:focus ~ label,
.q-a .contact-form input:not(:placeholder-shown) ~ label {
  transform: translateY(3px) scale(0.8);
}
.q-a .contact-form .mark {
  font-size: 16px;
  color: #A2A7B4;
}
.q-a .contact-form .send-mail {
  border-radius: 8px;
  background: #006CD2;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 80px;
}
.q-a .contact-form .send-mail span {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px; /* 150% */
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .q-a .contact-form .send-mail {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .q-a .contact-form {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .q-a .contact-form form {
    width: 100%;
    max-width: 100%;
  }
}

.employees {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  display: none;
}
.employees .employees-item {
  border-radius: 10px;
  border: 1px solid #D3DEE0;
  background: #FFF;
  padding: 8px 16px 8px 16px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  margin: 0 10px;
  margin-bottom: 25px;
}
.employees .employees-item .develper {
  color: #006CD2;
  font-size: 18px;
  font-weight: 500;
  line-height: 124%; /* 22.32px */
}
.employees .employees-item span {
  color: #272828;
  font-size: 18px;
  font-weight: 400;
  line-height: 124%;
}
.employees .item1,
.employees .item5 {
  width: 65%;
}
@media (max-width: 1232px) {
  .employees .item1,
  .employees .item5 {
    width: 64%;
  }
}
@media (max-width: 940px) {
  .employees .item1,
  .employees .item5 {
    width: 63%;
  }
}
.employees .item2,
.employees .item6 {
  width: 31.7%;
}
.employees .item3,
.employees .item7 {
  width: 39.8%;
}
@media (max-width: 1232px) {
  .employees .item3,
  .employees .item7 {
    width: 38.8%;
  }
}
@media (max-width: 940px) {
  .employees .item3,
  .employees .item7 {
    width: 37.8%;
  }
}
.employees .item4,
.employees .item8 {
  width: 56.8%;
}

@media screen and (max-width: 765px) {
  .tabs-hide {
    display: none;
  }
  .employees {
    display: block;
    flex-direction: column;
    margin: 0;
  }
  .employees .employees-item {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
  }
  .employees .employees-item .develper {
    border-radius: 10px;
    color: #7C808C;
    font-weight: 500;
    width: 100%;
    font-size: 14px;
    padding: 10px 12px 10px 32px;
    cursor: pointer;
    background: transparent;
    position: relative;
  }
  .employees .employees-item .develper.active {
    padding: 10px 12px 10px 32px;
    background: #006CD2;
    color: white;
    position: relative;
  }
  .employees .employees-item .develper:before {
    content: "";
    width: 9px;
    height: 9px;
    border-bottom: 3px solid #006CD2;
    border-left: 3px solid #006CD2;
    background-color: #fff;
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(226deg);
  }
  .employees .employees-item .develper.active:before {
    transform: rotate(312deg);
    left: 11px;
    top: 12px;
    border-bottom: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    background: none;
  }
  .employees .employees-item .dev-about {
    border-radius: 10px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: white;
  }
  .employees .employees-item .dev-about .dev-about__content {
    border-radius: 10px;
    border: 1px solid #d3dee0;
    padding: 20px;
    margin-top: 10px;
  }
  .employees .employees-item .dev-about p {
    margin-top: 20px;
    font-size: 15px;
    color: #272828;
    font-weight: 400;
    line-height: 124%; /* 19.84px */
  }
}
@media (max-width: 992px) {
  .tabs__nav {
    width: 50%;
  }
  .tabs__content {
    margin-left: 35px;
  }
}
@media (max-width: 750px) {
  .create-product {
    background-size: auto;
    background-position: left;
  }
  .development {
    margin-top: 20px;
  }
  .development .show-img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .development .show-img img {
    width: 100%;
  }
  .development .developmen__info .developmen-image img {
    display: none;
  }
  .development .developmen__info {
    display: block;
  }
  .development .developmen-text {
    width: 100% !important;
  }
  .development .developmen__info .developmen-text h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .development .developmen__info .developmen-text p {
    font-size: 16px;
  }
  .create-product .create-product__wrap {
    margin-top: 50px;
  }
  .create-product .create-product__wrap h1 {
    font-size: 20px;
  }
  .create-product .create-product__wrap .steps {
    flex-direction: column;
    margin: 0;
  }
  .create-product .create-product__wrap .steps .steps-item {
    margin: 0;
    width: 100% !important;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .create-product .create-product__wrap .steps .steps-item .num-step {
    position: absolute;
  }
  .create-product .create-product__wrap .steps .steps-item p {
    padding-left: 40px;
  }
  .step1, .step4 {
    padding-top: 28px !important;
  }
  .create-product .create-product__wrap .steps .steps-item div span {
    margin: 0;
    margin-right: 10px;
  }
  .tabs {
    flex-direction: column;
  }
  .tabs__nav {
    width: 100%;
  }
  .tabs__nav-btn {
    font-size: 14px;
    padding: 10px 12px 10px 30px;
    position: relative;
  }
  .tabs__nav-btn::before {
    content: " > ";
    color: #006CD2;
    padding-right: 5px;
    transform: rotate(0deg);
    position: absolute;
    left: 10px;
  }
  .tabs__nav-btn.active {
    padding: 10px 12px 10px 30px;
    position: relative;
  }
  .tabs__nav-btn.active::before {
    transform: rotate(90deg);
    color: #FFF;
    position: absolute;
    left: 11px;
    top: 12px;
  }
  .dev-steps .dev-steps__wraper {
    margin-top: 30px;
    padding: 20px 15px;
  }
  .tabs__content {
    margin: 0;
  }
  .tabs__content p {
    font-size: 16px;
  }
}
.dev-contact-form-sent {
  display: none;
  max-width: 1020px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  border-radius: 40px;
  margin-top: 40px;
  background: linear-gradient(0deg, rgba(176, 205, 211, 0.1) 0%, rgba(176, 205, 211, 0.1) 100%), #FFF;
}
.dev-contact-form-sent .dev-contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 60px 40px;
  flex-direction: column;
}
.dev-contact-form-sent .dev-contact-form img {
  margin-bottom: 40px;
}
.dev-contact-form-sent .dev-contact-form p {
  color: #7C808C;
  font-size: 20px;
  font-weight: 400;
  line-height: 114%; /* 22.8px */
  margin-bottom: 20px;
}
.dev-contact-form-sent .dev-contact-form button {
  color: #006CD2;
  font-size: 14px;
  font-weight: 800;
  line-height: 24px; /* 171.429% */
  text-transform: uppercase;
}

.contact-form-sent_show {
  display: block !important;
}
.contact-form-sent{
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 750px) {
  .form-leftline,
  .form-rightline {
    display: none;
  }
  .dev-contact-form-sent {
    background: none;
  }
  .dev-contact-form-sent .dev-contact-form {
    padding: 0px;
  }
  .dev-contact-form-sent .dev-contact-form p {
    font-size: 16px;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=developmen.css.map */