@charset "UTF-8";
@font-face {
  font-family: "Ubuntu";
  src: url("../font/Ubuntu/Ubuntu-Light.ttf"), url("fonts/EntezareZohoor2.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../font/Ubuntu/Ubuntu-Regular.ttf"), url("fonts/EntezareZohoor2.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../font/Ubuntu/Ubuntu-Medium.ttf"), url("fonts/EntezareZohoor2.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../font/Ubuntu/Ubuntu-Bold.ttf"), url("fonts/EntezareZohoor2.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-style: normal;
  line-height: normal;
  color: var(--text-color);
}

h1 {
  font-size: 2rem;
  color: white;
  font-weight: 700;
}

h2 {
  font-size: 1.7rem;
}

a,
p,
span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
}

button {
  cursor: pointer;
  display: block;
  max-width: 220px;
  padding: 18px 46px;
  margin: 0 auto;
  border-radius: 10px;
  border: none;
  background-color: var(--dedicated-color);
  color: white;
}

input {
  font-family: "Ubuntu";
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
  }
  h2 {
    font-size: 1.5rem;
  }
  a,
  p,
  span {
    font-size: 0.825rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 360px) {
  h1 {
    font-size: 1.4rem;
  }
}
.header {
  position: sticky;
  width: 100%;
  height: 120px;
  top: 0;
  background-color: white;
  z-index: 11;
  display: flex;
  align-items: center;
}
.header .hd-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .hd-content .header__left-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 550px;
  width: 100%;
}
.header .hd-content .header__left-block .logo {
  width: 106px;
  height: auto;
}
.header .hd-content .header__left-block nav {
  display: flex;
  gap: 35px;
}
.header .hd-content .header__left-block nav a {
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  font-weight: 400;
}
.header .hd-content .header__left-block nav a:hover {
  cursor: pointer;
  color: var(--text-color-hover);
}
.header .hd-content .header__right-block {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .hd-content .header__right-block .phone-number {
  color: var(--text-color);
  text-decoration: none;
}
.header .hd-content .header__right-block .tg-ico {
  width: 30px;
  height: 30px;
}
.header .hd-content .header__right-block .button {
  padding: 14px 16px;
  font-size: 0.875rem;
  cursor: pointer;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 30px;
  position: relative;
  z-index: 2;
}
.menu-btn span {
  width: 40px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #222222;
  transition: all 0.5s;
}
.menu-btn span:nth-last-of-type(1).active {
  opacity: 0;
}
.menu-btn span:nth-last-of-type(2) {
  top: calc(50% - 9px);
}
.menu-btn span:nth-last-of-type(2).active {
  transform: rotate(45deg);
  left: 0;
  top: 50%;
}
.menu-btn span:nth-last-of-type(3) {
  top: calc(50% + 9px);
}
.menu-btn span:nth-last-of-type(3).active {
  transform: rotate(-45deg);
  left: 0;
  top: 50%;
}

.menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  padding-bottom: 30px;
  background: var(--dedicated-color);
  transform: translateX(-100%);
  transition: transform 0.5s;
  z-index: 10;
}
.menu.active {
  transform: translateX(0);
}
.menu nav {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: 150px;
}
.menu nav a {
  text-decoration: none;
  color: white;
  border-bottom: 1px solid white;
  max-width: 100%;
  font-size: 1.2rem;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.menu .header__right-block {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin: auto;
  gap: 15px;
}
.menu .header__right-block .phone-number {
  color: white;
  text-decoration: none;
}
.menu .header__right-block .tg-ico {
  width: 30px;
  height: 30px;
}
.menu .header__right-block .button {
  padding: 9px 10px;
  max-width: 128px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.2509803922);
  color: white;
  border: none;
  border-radius: 10px;
}
.menu .header__right-block .button:hover {
  cursor: pointer;
}

@media screen and (max-width: 910px) {
  .header {
    height: 90px;
  }
  .header__left-block .logo {
    width: 65px !important;
  }
  .header__left-block nav {
    display: none !important;
  }
  .header .hd-content .header__right-block {
    display: none !important;
  }
  .menu-btn {
    display: block;
  }
}
/*шаблон выделенных блоков */
.selection {
  padding-top: 53px;
  padding-bottom: 53px;
  background-color: var(--dedicated-color);
  padding-left: 15px;
  padding-right: 15px;
}
.selection .title {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.representation .title {
  text-align: center;
}
.representation hr {
  max-width: 500px;
  width: 100%;
  border: 1px solid #fd950b;
  margin: 15px auto;
}
.representation .subtitle {
  color: white;
  text-align: center;
}

.activity {
  position: relative;
  overflow: hidden;
}
.activity .bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  z-index: -1;
}
.activity .activity__content {
  padding: 100px 0 80px 0;
}
.activity .activity__content .activity__content-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 55px auto;
}
.activity .activity__content .activity__content-actions .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 230px;
}
.activity .activity__content .activity__content-actions .action .description {
  text-align: center;
}
.activity .activity__content .activity__content-profits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 800px;
  margin: 0 auto;
}
.activity .activity__content .activity__content-profits .profit {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 147px;
}
.activity .activity__content .activity__content-profits .profit .title {
  color: var(--dedicated-color);
  margin: 5px 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.activity .activity__content .activity__content-profits .profit img {
  width: 42px;
  height: 42px;
}
.activity .activity__content .activity__content-profits .profit .description {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0;
}

.services .services__processes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 745px;
  margin: auto;
}
.services .services__processes .process {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 50%;
}
.services .services__processes .process img {
  width: 45px;
  height: 45px;
}
.services .services__processes .process .description {
  font-weight: 400;
  color: white;
}

.why-we {
  position: relative;
  overflow: hidden;
  padding: 60px 15px 80px 15px !important;
}
.why-we .bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  z-index: -1;
}
.why-we .title {
  text-align: center;
  margin-bottom: 45px;
}
.why-we .advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: auto;
}
.why-we .advantages .t {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  max-height: 870px;
}
.why-we .advantages .t .advantage {
  display: flex;
  align-items: center;
  max-width: 410px;
  gap: 15px;
}
.why-we .advantages .t .advantage .num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dedicated-color);
}

.howdoing {
  color: white;
}
.howdoing .howdoing__content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.howdoing .howdoing__content .sources .title {
  font-weight: 700;
}
.howdoing .howdoing__content .sources ul {
  padding-left: 30px;
  margin-top: 8px;
}
.howdoing .howdoing__content .profit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.howdoing .howdoing__content .profit .profit__step {
  display: flex;
  align-items: center;
  max-width: 180px;
}
.howdoing .howdoing__content .profit .profit__step .step-img {
  margin: 0 20px 0 20px;
}
.howdoing .howdoing__content .profit .profit__step .title {
  text-align: start;
  margin: 0;
}

.analitic .analitic__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 950px;
  margin: auto;
}
.analitic .analitic__content .item {
  display: flex;
  align-items: center;
  width: calc(50% - 20px);
}
.analitic .analitic__content .item .ico {
  margin-right: 15px;
}
.analitic .analitic__content .analitic__footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.analitic .analitic__content .analitic__footer img {
  margin-right: 20px;
}
.analitic .analitic__content .analitic__footer .title {
  margin: auto;
  text-align: center;
  font-weight: 400;
}
.analitic .analitic__content .analitic__footer .title span {
  font-size: 1.7rem;
}

.our-clients {
  position: relative;
  overflow: hidden;
}
.our-clients .bg {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  width: auto;
  z-index: -1;
}
.our-clients .title {
  text-align: center;
  margin: 40px 0;
}
.our-clients .our-clients__content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 60px 0;
}
.our-clients .our-clients__content img {
  width: 100%;
}
.our-clients .our-clients__content .category-clients {
  display: grid;
  grid-template-columns: repeat(6, 100px);
  grid-template-rows: repeat(4, 140px);
}
.our-clients .our-clients__content .category-clients .category {
  max-width: 186px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-clients .our-clients__content .category-clients .category img {
  width: 60px;
}
.our-clients .our-clients__content .category-clients .category p {
  text-align: center;
}
.our-clients .our-clients__content .category-clients .el1,
.our-clients .our-clients__content .category-clients .el2,
.our-clients .our-clients__content .category-clients .el3,
.our-clients .our-clients__content .category-clients .el4,
.our-clients .our-clients__content .category-clients .el5,
.our-clients .our-clients__content .category-clients .el6 {
  grid-column: span 2;
}
.our-clients .our-clients__content .category-clients .el7 {
  grid-column: 2/3;
  max-width: 290px;
}
.our-clients .our-clients__content .category-clients .el8 {
  grid-column: 5/6;
  max-width: 290px;
}
.our-clients .our-clients__content .category-clients .el9 {
  grid-column: span 6;
  max-width: 60%;
  margin: auto;
}

.nda-block {
  position: relative;
  padding: 60px 0 80px 0;
  background-color: #f2f2f2;
  overflow: hidden;
}
.nda-block .nda-content {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.nda-block .nda-content .bg-nda {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13vw;
  color: rgba(255, 255, 255, 0.2901960784);
  z-index: 0;
}
.nda-block .nda-content .nda-item {
  z-index: 1;
  display: flex;
  align-items: center;
}
.nda-block .nda-content .nda-item:nth-of-type(1) {
  grid-column: 1/4;
  margin: auto;
}
.nda-block .nda-content .nda-item .ico {
  width: 42px;
  height: 42px;
  margin-right: 10px;
}
.nda-block .nda-content .nda-item .info .title {
  font-size: 1.25rem;
  color: var(--dedicated-color);
}
.nda-block .nda-content .nda-item .info .description {
  margin: 5px 0;
}

.solutions .title {
  margin: 50px 0;
  text-align: center;
}
.solutions .solutions-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 50px 70px;
}
.solutions .solutions-content .solution {
  text-align: center;
  font-weight: 400;
  padding: 15px 20px;
  background-color: #f2f2f2;
  max-width: 180px;
  width: 100%;
  border-radius: 10px;
}
.solutions .solutions-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -50px;
}
.solutions .solutions-footer .sbg {
  max-width: 500px;
  width: 100%;
}
.solutions .solutions-footer .left-block {
  display: flex;
  align-items: center;
}
.solutions .solutions-footer .left-block .title {
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0 1rem;
}

.feedback {
  position: relative;
  margin-top: 150px;
}
.feedback .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(11, 116, 253, 0.0352941176);
  font-weight: 400;
  z-index: -1;
}
.feedback .feedback__content {
  max-width: 500px;
  margin: auto;
  margin-top: 50px;
}
.feedback .feedback__content * {
  text-align: center;
}
.feedback .feedback__content button {
  cursor: pointer;
  display: block;
  max-width: 220px;
  padding: 18px 46px;
  margin: 0 auto;
  border-radius: 10px;
  border: none;
  background-color: var(--dedicated-color);
  color: white;
}

@media (max-width: 1240px) {
  .profit {
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
  }
  .our-clients .our-clients__content .category-clients {
    margin-left: 20px;
    grid-template-columns: repeat(4, 111px);
  }
  .our-clients .our-clients__content .category-clients .el1,
  .our-clients .our-clients__content .category-clients .el2,
  .our-clients .our-clients__content .category-clients .el3,
  .our-clients .our-clients__content .category-clients .el4,
  .our-clients .our-clients__content .category-clients .el5,
  .our-clients .our-clients__content .category-clients .el6,
  .our-clients .our-clients__content .category-clients .el7,
  .our-clients .our-clients__content .category-clients .el8,
  .our-clients .our-clients__content .category-clients .el9 {
    grid-column: 1 span;
  }
  .our-clients .our-clients__content .category-clients .el9 {
    grid-column: 1/4 span;
  }
  .our-clients .our-clients__content .img-map {
    width: 80%;
  }
  .nda-block .nda-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .nda-block .nda-content .nda-item:nth-of-type(1) {
    grid-column: 1;
  }
  .nda-block .nda-content .nda-item {
    margin: auto;
  }
  .solutions .solutions-content {
    justify-content: space-around;
  }
  .solutions .solutions-footer {
    flex-direction: column;
    width: 100%;
    margin: 0;
    margin-top: 40px;
  }
  .solutions .solutions-footer .left-block {
    margin-bottom: 40px;
    display: flex;
    gap: 10px;
  }
  .solutions .solutions-footer .left-block .title {
    font-size: 1rem;
  }
}
@media (max-width: 950px) {
  .our-clients .our-clients__content {
    flex-direction: column;
  }
  .our-clients .our-clients__content .category-clients {
    margin-top: 40px;
    margin-left: 0;
    grid-template-columns: repeat(3, 1fr);
  }
  .our-clients .our-clients__content .category-clients .el9 {
    grid-column: 1 span;
  }
  .our-clients .our-clients__content .category-clients .category {
    margin: auto;
  }
  .activity .activity__content .activity__content-profits {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 770px) {
  .solutions .solutions-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .activity .activity__content .activity__content-profits {
    gap: 10px;
  }
  .activity .activity__content .activity__content-actions {
    justify-content: center;
  }
  .services .services__processes .process {
    width: 100%;
  }
  .why-we .advantages {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
  }
  .analitic .analitic__content .item {
    width: 100%;
  }
  .our-clients .our-clients__content .category-clients {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-clients .our-clients__content .category-clients .el7,
  .our-clients .our-clients__content .category-clients .el8,
  .our-clients .our-clients__content .category-clients .el9 {
    grid-column: 2 span;
  }
  .howdoing .howdoing__content {
    flex-direction: column;
    justify-content: start;
  }
  .howdoing .howdoing__content .profit {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .howdoing .howdoing__content .profit__step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }
  .howdoing .howdoing__content .profit__step .step-img {
    display: block;
    transform: rotate(90deg);
  }
  .howdoing .howdoing__content .profit__step .title {
    text-align: center;
  }
  .nda-block .nda-content {
    grid-template-columns: 1fr;
    max-width: 90%;
    margin: auto;
  }
  .nda-block .nda-content .nda-item {
    margin: 0 !important;
  }
  .solutions .solutions-content {
    gap: 12px;
  }
  .analitic .analiticcontent .analiticfooter .title {
    font-size: 1rem;
  }
  .analitic .analiticcontent .analiticfooter .title span {
    font-size: 1rem;
  }
  .wrapper {
    padding: 0 10px;
  }
  .analitic .analitic__content .item .ico {
    max-width: 50px;
  }
}
@media screen and (max-width: 460px) {
  .activity .activity__content .activity__content-actions {
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .solutions .solutions-content .solution {
    max-width: 140px;
    height: 44px;
    margin: auto;
    font-size: 0.825rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .solutions .solutions-footer .left-block .title {
    font-size: 0.875rem;
    margin: 0 0.5rem;
  }
  .solutions .solutions-footer .left-block .plus {
    width: 14px;
    height: 14px;
  }
  .solutions .solutions-footer .left-block .equally {
    display: block;
    width: 18px;
    height: 14px;
  }
  .analitic .analitic__content .analitic__footer {
    display: block;
  }
  .analitic .analitic__content .analitic__footer img {
    display: block;
    margin: auto;
    max-width: 30%;
  }
}
.footer {
  text-align: center;
  background-color: var(--dedicated-color);
  padding: 32px 15px;
  margin-top: 80px;
  color: rgba(255, 255, 255, 0.5);
}

:root {
  --text-color: #252c43;
  --text-color-hover: #757575;
  --button-color: #4472c4;
  --dedicated-color: rgb(13, 117, 253);
}

:hover {
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}/*# sourceMappingURL=style.css.map */