@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-VariableFont_wght.ttf");
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope";
  font-size: 16px;
  color: #232527;
}
@media (max-width: 800px) {
  html,
  body {
    width: 100%;
    /*overflow-x: hidden;*/
  }
}

p,
h1,
h2 {
  margin: 0;
  padding: 0;
}

input,
textarea {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #141516 !important;
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #1D81FD;
  border-radius: 12px;
  color: #ffffff;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  transition: 0.2s all;
}
.btn:hover {
  background-color: #0070FC;
}

.wrap {
  width: 1280px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .wrap {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    overflow-x: hidden;
  }
}
.wrap .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}
.wrap .header .logo img {
  height: 50px;
}
@media (max-width: 800px) {
  .wrap .header .logo img {
    height: 35px;
  }
}
.wrap .header .menu {
  display: flex;
  vertical-align: center;
  flex-direction: column;
  justify-content: center;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #A2A3A6;
}
@media (max-width: 800px) {
  .wrap .header .menu {
    display: none;
    visibility: hidden;
  }
}
.wrap .header .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
}
.wrap .header .menu ul li {
  margin: 0 25px 0 25px;
  padding: 0;
}
.wrap .header .menu ul li a {
  color: #A2A3A6;
  text-decoration: none;
  transition: 0.1s color;
}
.wrap .header .menu ul li a:hover {
  color: #232527;
}
.wrap .header .action {
  display: flex;
  vertical-align: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 800px) {
  .wrap .header .action {
    display: none;
    visibility: hidden;
  }
}
.wrap .header .mobile-menu-burger {
  display: none;
  visibility: hidden;
}
.wrap .header .mobile-menu-burger svg {
  height: 32px;
}
.wrap .header .mobile-menu-burger .line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wrap .header .mobile-menu-burger .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.wrap .header .mobile-menu-burger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.wrap .header .mobile-menu-burger .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.wrap .header .mobile-menu-burger .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.wrap .header .mobile-menu-burger .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.wrap .header .mobile-menu-burger .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
@media (max-width: 800px) {
  .wrap .header .mobile-menu-burger {
    display: flex;
    justify-content: flex-end;
    vertical-align: middle;
    align-items: enter;
    visibility: visible;
  }
}
.wrap .welcome {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 40px;
}
@media (max-width: 800px) {
  .wrap .welcome {
    flex-direction: column;
  }
}
.wrap .welcome .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrap .welcome .text h1 {
  margin: 0;
  padding: 0;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 115%;
  color: #232527;
}
@media (max-width: 800px) {
  .wrap .welcome .text h1 {
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 115%;
  }
}
.wrap .welcome .text p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #141516;
  padding: 32px 0;
}
@media (max-width: 800px) {
  .wrap .welcome .text p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 800px) {
  .wrap .welcome .text .action {
    display: none;
    visibility: hidden;
  }
}
.wrap .welcome .text .action .btn {
  box-sizing: border-box;
  width: 267px;
  height: 73px;
  font-size: 18px;
  line-height: 150%;
  font-weight: 500;
}
@media (max-width: 800px) {
  .wrap .welcome .pic {
    display: none;
    visibility: hidden;
  }
}
.wrap .welcome .mobile-pic {
  display: none;
  visibility: hidden;
  text-align: center;
}
@media (max-width: 800px) {
  .wrap .welcome .mobile-pic {
    display: block;
    visibility: visible;
  }
  .wrap .welcome .mobile-pic img {
    width: 100%;
    height: auto;
  }
}
.wrap .about {
  padding: 80px 0 80px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 800px) {
  .wrap .about {
    flex-direction: column;
    padding: 60px 0 30px 0;
  }
}
.wrap .about .text {
  width: 550px;
}
@media (max-width: 800px) {
  .wrap .about .text {
    width: 100%;
  }
}
.wrap .about .text h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #232527;
}
@media (max-width: 800px) {
  .wrap .about .text h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
}
.wrap .about .text .subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #141516;
  padding-top: 20px;
}
@media (max-width: 800px) {
  .wrap .about .text .subtitle {
    padding-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }
}
.wrap .about .row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 800px) {
  .wrap .about .row {
    flex-direction: column;
  }
}
.wrap .about .row .col {
  box-sizing: border-box;
  border-radius: 10px;
  width: 33%;
  padding: 40px;
}
@media (max-width: 800px) {
  .wrap .about .row .col {
    width: 100%;
    background: none !important;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    vertical-align: middle;
  }
}
.wrap .about .row .col img {
  height: 66px;
}
@media (max-width: 800px) {
  .wrap .about .row .col img {
    height: 60px;
  }
}
.wrap .about .row .col p {
  padding-top: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #232527;
}
@media (max-width: 800px) {
  .wrap .about .row .col p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    padding: 0;
  }
}
.wrap .about .row .col:nth-child(1) {
  background: #FFF8EA;
}
.wrap .about .row .col:nth-child(2) {
  background: #E8F2FF;
}
.wrap .about .row .col:nth-child(3) {
  background: #FFEAEA;
}
.wrap .services {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 800px) {
  .wrap .services {
    padding: 30px 0 30px 0;
  }
}
.wrap .services .title h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #232527;
}
@media (max-width: 800px) {
  .wrap .services .title h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
}
.wrap .services .row {
  padding-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .wrap .services .row {
    flex-direction: column;
  }
}
.wrap .services .row .col {
  box-sizing: border-box;
  padding: 30px;
  background: #F7F8FB;
  border-radius: 10px;
  width: 24%;
  font-size: 20px;
}
@media (max-width: 800px) {
  .wrap .services .row .col {
    background: none;
    padding: 0 0 20px 0;
    width: 100%;
  }
}
.wrap .services .row .col .icons {
  padding-bottom: 30px;
}
@media (max-width: 800px) {
  .wrap .services .row .col .icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.wrap .services .row .col .icons img {
  height: 66px;
  margin-right: 10px;
}
.wrap .services .row .col .icons img:last-child {
  margin: 0;
}
.wrap .services .row .col p {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #232527;
}
@media (max-width: 800px) {
  .wrap .services .row .col p {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
}
.wrap .services .row .col span {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #020927;
}
.wrap .flow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 800px) {
  .wrap .flow {
    flex-direction: column;
    padding: 30px 0 30px 0;
  }
}
.wrap .flow .left {
  width: 35%;
}
@media (max-width: 800px) {
  .wrap .flow .left {
    width: 100%;
    padding-bottom: 20px;
  }
}
.wrap .flow .left h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .wrap .flow .left h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
}
.wrap .flow .left p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  max-width: 80%;
}
@media (max-width: 800px) {
  .wrap .flow .left p {
    max-width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }
}
.wrap .flow .right {
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 800px) {
  .wrap .flow .right {
    flex-direction: column;
    width: 100%;
  }
}
.wrap .flow .right .block {
  background: #F2F2F4;
  border-radius: 10px;
  box-sizing: border-box;
  width: 239px;
  height: 153px;
  padding: 24px;
  transition: all 0.15s ease-in-out;
}
@media (max-width: 800px) {
  .wrap .flow .right .block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    height: auto;
    padding: 16px;
  }
}
.wrap .flow .right .block .num {
  color: #B3B8CF;
  opacity: 0.6;
  font-weight: 800;
  font-size: 60px;
  line-height: 115%;
}
@media (max-width: 800px) {
  .wrap .flow .right .block .num {
    font-weight: 800;
    font-size: 32px;
    line-height: 115%;
  }
}
.wrap .flow .right .block .text {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 800px) {
  .wrap .flow .right .block .text {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
}
.wrap .flow .right .block:hover {
  background: #FFBB40;
}
.wrap .flow .right .block:hover .num {
  color: #FFFFFF;
}
.wrap .flow .right .block:hover .text {
  color: #FFFFFF;
}
.wrap .portfolio {
  padding: 80px 0 80px 0;
}
@media (max-width: 800px) {
  .wrap .portfolio {
    padding: 30px 0 30px 0;
  }
}
.wrap .portfolio h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
}
@media (max-width: 800px) {
  .wrap .portfolio h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
}
.wrap .portfolio .catalog {
  padding-top: 32px;
}
.wrap .portfolio .catalog .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px rgba(162, 163, 166, 0.2) solid;
  padding: 0 0 24px 0;
  margin: 0 0 24px 0;
}
.wrap .portfolio .catalog .item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item {
    flex-direction: column;
    gap: 8px;
    border: 0;
    margin: 0;
    padding: 0 0 20px 0;
  }
}
.wrap .portfolio .catalog .item:last-child {
  border: 0;
}
.wrap .portfolio .catalog .item .image {
  width: 305px;
  cursor: pointer;
}
.wrap .portfolio .catalog .item .image img {
  height: 172px;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item .image {
    width: 100%;
  }
  .wrap .portfolio .catalog .item .image img {
    width: 100%;
    height: auto;
  }
}
.wrap .portfolio .catalog .item .content {
  flex-grow: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.wrap .portfolio .catalog .item .content .tags {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 12px;
}
.wrap .portfolio .catalog .item .content .tags span {
  padding: 8px 10px;
  border-radius: 54px;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item .content .tags {
    display: none;
    visibility: hidden;
  }
}
.wrap .portfolio .catalog .item .content .text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item .content .text {
    flex-direction: column;
    align-items: flex-start;
  }
}
.wrap .portfolio .catalog .item .content .text .about-item {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item .content .text .about-item {
    padding-top: 0;
  }
}
.wrap .portfolio .catalog .item .content .text .about-item .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  color: #232527;
  max-width: 410px;
  cursor: pointer;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item .content .text .about-item .title {
    max-width: 100%;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
  }
}
.wrap .portfolio .catalog .item .content .text .about-item .category {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #A2A3A6;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item .content .text .about-item .category {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.02em;
    padding-top: 4px;
  }
}
.wrap .portfolio .catalog .item .content .text .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #141516;
  width: 523px;
  text-align: justify;
}
@media (max-width: 800px) {
  .wrap .portfolio .catalog .item .content .text .description {
    display: none;
    visibility: hidden;
  }
}
.wrap .clients {
  padding: 80px 0 80px 0;
}
@media (max-width: 800px) {
  .wrap .clients {
    padding: 30px 0 30px 0;
  }
}
.wrap .clients h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
}
@media (max-width: 800px) {
  .wrap .clients h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
}
.wrap .clients .clients-list {
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .wrap .clients .clients-list {
    flex-direction: column;
    align-items: center;
  }
}
.wrap .footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 80px 0 60px 0;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 800px) {
  .wrap .footer {
    padding: 30px 0;
  }
}
.wrap .footer .logo {
  padding-right: 85px;
}
.wrap .footer .logo img {
  height: 50px;
}
@media (max-width: 800px) {
  .wrap .footer .logo img {
    height: 35px;
  }
}
@media (max-width: 800px) {
  .wrap .footer .menu {
    display: none;
    visibility: hidden;
  }
}
.wrap .footer .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.wrap .footer .menu ul li {
  margin-right: 30px;
}
.wrap .footer .menu ul li:last-child {
  margin: 0;
}
.wrap .footer .menu ul li a {
  color: #A2A3A6;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
}
.wrap .footer .menu ul li a:hover {
  color: #141516;
}
@media (max-width: 800px) {
  .wrap .footer .contacts {
    display: none;
    visibility: hidden;
  }
}
.wrap .footer .contacts a {
  text-decoration: none;
  color: #141516;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  padding-left: 30px;
  transition: all 0.1s ease-in-out;
}
.wrap .footer .contacts a:hover {
  color: #0070FC;
}
.wrap .footer .contacts a:first-child {
  margin-right: 32px;
}
.wrap .footer .contacts .email {
  background: url("/img/email.svg") no-repeat left;
}
.wrap .footer .contacts .telegram {
  background: url("/img/telegram.svg") no-repeat left;
}
.wrap .footer .mobile-btns {
  display: none;
  visibility: hidden;
}
@media (max-width: 800px) {
  .wrap .footer .mobile-btns {
    display: flex;
    visibility: visible;
    flex-direction: row;
    gap: 12px;
  }
}
.wrap .footer .mobile-btns img {
  width: 44px;
  height: 44px;
}

.contact {
  color: #FFFFFF;
  padding: 80px 0 80px 0;
  background: #1D81FD url("/img/tetris-bg.png") no-repeat center;
  background-position-y: 94px;
  background-position-x: center;
  width: 100%;
}
.contact h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 800px) {
  .contact h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    padding: 0 41px 0 41px;
  }
}
.contact .sub-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.02em;
  padding: 24px 0 32px 0;
}
@media (max-width: 800px) {
  .contact .sub-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    /* or 24px */
    text-align: center;
    letter-spacing: 0.02em;
    padding: 32px 30px;
  }
}
.contact .actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.contact .actions a {
  text-decoration: none;
}
@media (max-width: 800px) {
  .contact .actions {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
  }
}
.contact .actions .btn {
  box-sizing: border-box;
  background: none;
  border: 1px #ffffff solid;
  border-radius: 12px;
  width: 267px;
  height: 73px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 800px) {
  .contact .actions .btn {
    width: 100%;
  }
}
.contact .actions .btn:hover {
  background-color: #FFFFFF;
  color: #1D81FD;
}

.mobile-menu-container {
  position: absolute;
  top: 60px;
  padding: 15px;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #141516;
}
.mobile-menu-container a {
  text-decoration: none;
  color: #141516;
}
.mobile-menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-container ul li {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu-container ul li a {
  display: block;
  padding: 20px 0;
}
.mobile-menu-container h2 {
  padding-top: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}
.mobile-menu-container .links {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu-container .links a {
  padding-left: 32px;
}
.mobile-menu-container .links .email {
  background: url("/img/email.svg") no-repeat left;
}
.mobile-menu-container .links .telegram {
  background: url("/img/telegram.svg") no-repeat left;
}
.mobile-menu-container.hidden {
  display: none;
  visibility: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #141516;
  opacity: 0.6;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media (max-width: 800px) {
  .overlay {
    display: none;
    visibility: hidden;
  }
}

.overlay-animate-in {
  /* Safari, Chrome and Opera > 12.1 */
  /* Firefox < 16 */
  /* Internet Explorer */
  /* Opera < 12.1 */
  animation: fadein 0.5s;
}

.overlay-animate-out {
  /* Safari, Chrome and Opera > 12.1 */
  /* Firefox < 16 */
  /* Internet Explorer */
  /* Opera < 12.1 */
  animation: fadeout 0.5s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 */
/* Internet Explorer */
/* Opera < 12.1 */
@keyframes fadeout {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 0;
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 */
/* Internet Explorer */
/* Opera < 12.1 */
.contact-form {
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 528px;
  height: 680px;
  background: #FFFFFF;
  border-radius: 18px;
  box-sizing: border-box;
  padding: 50px;
  margin-left: -264px;
  margin-top: -267px;
  box-shadow: #747577 0px 0px 6px;
}
@media (max-width: 800px) {
  .contact-form {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
    overflow-y: scroll;
  }
}
.contact-form .field-contactform-verifycode {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.contact-form .field-contactform-verifycode img {
  width: 35%;
}
.contact-form .field-contactform-verifycode input {
  width: 65%;
  margin-top: 0;
}
.contact-form h2 {
  color: #000000;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  padding-bottom: 20px;
}
@media (max-width: 800px) {
  .contact-form h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
}
.contact-form p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
}
@media (max-width: 800px) {
  .contact-form p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}
.contact-form input {
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(131, 133, 135, 0.3);
  border-radius: 12px;
  background: #FFFFFF;
  width: 100%;
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
.contact-form input:focus {
  outline: none;
}
.contact-form button {
  margin-top: 40px;
  border: 0;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  padding: 23px 0 23px 0;
}
.contact-form .content {
  display: flex;
  flex-direction: column;
}
.contact-form .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  background: rgba(241, 241, 241, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
@media (max-width: 800px) {
  .contact-form .close-btn {
    position: relative;
    left: 100%;
    top: 0;
    margin-left: -50px;
  }
}
.contact-form .close-btn:hover {
  background: #1D81FD;
}
.contact-form .close-btn:hover:before, .contact-form .close-btn:hover:after {
  background-color: #F2F2F4;
}
.contact-form .close-btn:before, .contact-form .close-btn:after {
  position: absolute;
  left: 24px;
  top: 15px;
  content: " ";
  height: 20px;
  width: 1px;
  background-color: #333;
}
.contact-form .close-btn:before {
  transform: rotate(45deg);
}
.contact-form .close-btn:after {
  transform: rotate(-45deg);
}

.portfolio-preview {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 894px;
  min-height: 534px;
  margin-left: -447px;
  margin-top: -267px;
  background: #FFFFFF;
  border-radius: 18px;
  box-sizing: border-box;
  padding: 50px;
  box-shadow: #747577 0px 0px 6px;
}
@media (max-width: 800px) {
  .portfolio-preview {
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 15px;
    overflow-y: scroll;
  }
}
.portfolio-preview .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  background: rgba(241, 241, 241, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
@media (max-width: 800px) {
  .portfolio-preview .close-btn {
    position: relative;
    left: 100%;
    top: 0;
    margin-left: -50px;
  }
}
.portfolio-preview .close-btn:hover {
  background: #1D81FD;
}
.portfolio-preview .close-btn:hover:before, .portfolio-preview .close-btn:hover:after {
  background-color: #F2F2F4;
}
.portfolio-preview .close-btn:before, .portfolio-preview .close-btn:after {
  position: absolute;
  left: 24px;
  top: 15px;
  content: " ";
  height: 20px;
  width: 1px;
  background-color: #333;
}
.portfolio-preview .close-btn:before {
  transform: rotate(45deg);
}
.portfolio-preview .close-btn:after {
  transform: rotate(-45deg);
}
.portfolio-preview .content {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 800px) {
  .portfolio-preview .content {
    flex-direction: column;
    gap: 20px;
    padding-top: 15px;
  }
}
.portfolio-preview .content .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portfolio-preview .content .left .screen {
  width: 418px;
  text-align: center;
}
@media (max-width: 800px) {
  .portfolio-preview .content .left .screen {
    width: 100%;
  }
}
.portfolio-preview .content .left .screen img {
  height: 236px;
  border-radius: 10px;
}
@media (max-width: 800px) {
  .portfolio-preview .content .left .screen img {
    height: auto;
    width: 100%;
  }
}
.portfolio-preview .content .left .thumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  max-width: 418px;
  box-sizing: border-box;
  overflow-x: scroll;
}
.portfolio-preview .content .left .thumbs::-webkit-scrollbar {
  height: 10px;
}
.portfolio-preview .content .left .thumbs::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 4px;
}
.portfolio-preview .content .left .thumbs::-webkit-scrollbar-thumb {
  background-color: #5F8BFF;
  border-radius: 4px;
}
@media (max-width: 800px) {
  .portfolio-preview .content .left .thumbs {
    overflow-x: scroll;
  }
}
.portfolio-preview .content .left .thumbs img {
  height: 55px;
  border-radius: 6px;
  cursor: pointer;
  padding: 0 0 5px 0;
}
@media (max-width: 800px) {
  .portfolio-preview .content .left .thumbs img {
    height: 55px;
  }
}
.portfolio-preview .content .left .thumbs img:hover {
  opacity: 0.8;
  transition: all 0.1s ease-in-out;
}
@media (max-width: 800px) {
  .portfolio-preview .content .left .thumbs img:hover {
    opacity: 1;
  }
}
.portfolio-preview .content .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.portfolio-preview .content .right .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  color: #232527;
}
.portfolio-preview .content .right .category {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #A2A3A6;
}
.portfolio-preview .content .right .tags {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.portfolio-preview .content .right .tags .tag {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 8px 10px;
  border-radius: 54px;
}
.portfolio-preview .content .right .attrs {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.portfolio-preview .content .right .attrs .attr .name {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #141516;
}
.portfolio-preview .content .right .links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: auto;
}
@media (max-width: 800px) {
  .portfolio-preview .content .right .links {
    display: none;
    visibility: hidden;
  }
}
.portfolio-preview .content .right .links .google {
  cursor: pointer;
  width: 153px;
  height: 54px;
  background: url("/img/googleplay.png") no-repeat;
}
.portfolio-preview .content .right .links .apple {
  cursor: pointer;
  width: 153px;
  height: 54px;
  background: url("/img/appstore.png") no-repeat;
}
.portfolio-preview .description {
  margin-top: 40px;
}
.portfolio-preview .description h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #141516;
  margin: 0;
}
.portfolio-preview .description p {
  margin: 10px 0;
}
@media (max-width: 800px) {
  .portfolio-preview .description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }
}
.portfolio-preview .mobile-links {
  display: none;
  visibility: hidden;
  flex-direction: row;
  padding-top: 40px;
  gap: 10px;
}
@media (max-width: 800px) {
  .portfolio-preview .mobile-links {
    display: flex;
    visibility: visible;
  }
}
.portfolio-preview .mobile-links .google {
  height: 62px;
  width: 166px;
  background: url("/img/googleplay.png") no-repeat;
  background-size: contain;
}
.portfolio-preview .mobile-links .apple {
  height: 62px;
  width: 166px;
  background: url("/img/appstore.png") no-repeat;
  background-size: contain;
}

.brif-page {
  padding-top: 40px;
}
.brif-page fieldset {
  border: 0;
  outline: none;
}
.brif-page input[type=radio] {
  box-sizing: border-box;
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  border: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  border: 0.15em solid #A2A3A6;
  border-radius: 50%;
  margin-right: 10px;
}
.brif-page input[type=radio]:focus, .brif-page input[type=radio]:checked {
  outline: max(2px, 0.15em) solid #0070FC;
  border: 0;
  width: 10px;
  height: 10px;
  background: #0070FC;
  outline-offset: max(3px, 0.15em);
  transform: scale(0.9);
  margin: 3px;
  margin-right: 13px;
}
.brif-page input {
  margin: 0;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(131, 133, 135, 0.3);
  border-radius: 12px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  outline: none;
  box-sizing: border-box;
}
.brif-page label {
  padding-left: 4px;
}
.brif-page textarea {
  margin: 0;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(131, 133, 135, 0.3);
  border-radius: 12px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #A2A3A6;
  outline: none;
}
.brif-page button {
  padding: 16px 20px;
  background: #FFFFFF;
  cursor: pointer;
  border: 1px solid rgba(131, 133, 135, 0.3);
  border-radius: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #A2A3A6;
}
.brif-page button:hover {
  background: #1D81FD;
  color: #FFFFFF;
}
.brif-page h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #232527;
}
@media (max-width: 800px) {
  .brif-page h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
}
.brif-page h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #141516;
  margin: 40px 0 20px 0;
}
@media (max-width: 800px) {
  .brif-page h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
  }
}
.brif-page .sub-title {
  padding: 20px 0 0 0;
}
.brif-page .sub-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #141516;
}
@media (max-width: 800px) {
  .brif-page .sub-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }
}
.brif-page p.help {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #141516;
}
.brif-page .brif-form .client-info {
  width: 840px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.brif-page .brif-form .client-info label {
  display: none;
}
.brif-page .brif-form .client-info .form-group {
  position: relative;
}
.brif-page .brif-form .client-info .form-group:has(input:focus) label {
  display: block;
  position: absolute;
  top: 7px;
  left: 15px;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #A2A3A6;
  z-index: 100;
}
.brif-page .brif-form .client-info .form-group:has(input:focus) input::-moz-placeholder {
  visibility: hidden;
}
.brif-page .brif-form .client-info .form-group:has(input:focus) input::placeholder {
  visibility: hidden;
}
.brif-page .brif-form .client-info .form-group:has(input:focus) input {
  padding: 20px 18px 12px 18px;
}
.brif-page .brif-form .client-info input {
  width: 360px;
}
@media (max-width: 800px) {
  .brif-page .brif-form .client-info input {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .brif-page .brif-form .client-info {
    flex-direction: column;
    width: 100%;
  }
}
.brif-page .brif-form .project-type,
.brif-page .brif-form .platform {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.brif-page .brif-form .project-type div,
.brif-page .brif-form .platform div {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.brif-page .brif-form .project-type label,
.brif-page .brif-form .platform label {
  padding: 16px 20px;
  background: #FFFFFF;
  cursor: pointer;
  border: 1px solid rgba(131, 133, 135, 0.3);
  border-radius: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #A2A3A6;
}
.brif-page .brif-form .project-type input[type=checkbox],
.brif-page .brif-form .platform input[type=checkbox] {
  display: none;
}
.brif-page .brif-form .project-type label:has(> input[type=checkbox]:checked),
.brif-page .brif-form .platform label:has(> input[type=checkbox]:checked) {
  background: #1D81FD;
  color: #FFFFFF;
}
@media (max-width: 800px) {
  .brif-page .brif-form .project-type,
  .brif-page .brif-form .platform {
    flex-direction: column;
    gap: 16px;
  }
}
.brif-page .brif-form .cols {
  display: flex;
  flex-direction: row;
}
@media (max-width: 800px) {
  .brif-page .brif-form .cols {
    flex-direction: column;
  }
}
.brif-page .brif-form .cols .row {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 800px) {
  .brif-page .brif-form .cols .row {
    width: 100%;
  }
}
.brif-page .brif-form textarea {
  box-sizing: border-box;
  width: 100%;
}
.brif-page .brif-form .send {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 60px 0;
}
.brif-page .brif-form .send button {
  padding: 23px 52px;
  background: #1D81FD;
  color: #ffffff;
  transition: all 0.1s ease-in-out;
}
.brif-page .brif-form .send button:hover {
  background-color: #0070FC;
}

.help-block {
  font-size: 10px;
  color: #942222;
  padding-left: 1rem;
}

#brifform-starttime,
#brifform-deadline {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 800px) {
  #brifform-projecttype {
    flex-direction: column;
    width: 100%;
  }
  #brifform-projecttype label {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .project-type .form-group .help-block {
    display: none !important;
  }
}

.field-brifform-verifycode {
  display: flex;
  flex-direction: row;
  align-items: center;
}/*# sourceMappingURL=main.css.map */