*::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
*:-moz-placeholder {
  color: #666;
  opacity: 1;
}
*::-moz-placeholder {
  color: #666;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
:root {
  --app-height: 100%;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  font-size: 10px;
  min-width: 320px;
  position: relative;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #3a3a3a;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url('/img/bg.jpg');
}
body.menu-opened {
  overflow: hidden;
}
.hidden {
  display: none;
}

a {
  color: #3d4edc;
}
.container {
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
.container.container-page {
  min-height: 60vh;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  color: #000;
  font-size: 18px;
  padding-bottom: 20px;
}

.container.container-page p {
  margin-bottom: 20px;
}
h1.pageHeader {
  color: #000;
  margin: 25px 0 40px;
  font-size: 30px;
  font-weight: 800;
}
.header-top {
  padding-top: 35px;
  padding-bottom: 10px;
  background: #fff;
  margin-bottom: 250px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_page .header-top {
  margin-bottom: 30px;
}
.header-top__logo img {
  width: 100%;
}
.header-top__nav {
  display: flex;
  column-gap: 30px;
}
@media only screen and (max-width: 1300px) {
  .header-top__nav {
    column-gap: 0;
  }
}
.header-top__nav a {
  display: block;
  position: relative;
  color: #3a3a3a;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  padding: 30px;
}

.header-top__nav a:hover {
  color: #3d4edc;
}
.header-top__email {
  display: block;
  position: relative;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
}
h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  margin-bottom: 25px;
}
.header-body {
  position: relative;
  width: 100%;
  padding-bottom: 300px;
  color: #fff;
}

.header-body h1 {
  max-width: 900px;
}
.header-body__description {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  max-width: 650px;
  margin-bottom: 100px;
}
.header-body__image {
  max-height: 570px;
  position: absolute;
  right: 0;
  top: -10%;
  z-index: -1;
}
@media only screen and (max-width: 1370px) {
  .header-body__image {
    max-height: 500px;
  }
}
.header-body__link {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border: 5px solid #fff;
  width: fit-content;
  transition: transform 0.2s ease-in;
}

.header-body__link:hover {
  transform: scale(1.03);
}

.container-page .header-body__link {
  margin: 40px auto;
  color: #000;
  border-color: #000;
}
.container-page .header-body__link:before {
  display: none;
}
.documentsList {
  list-style: none;
}
.documentItem {
  margin-bottom: 30px;
  padding-left: 25px;
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 24px;
}
.documentItem:hover {
  text-decoration: underline;
}
.documentItemPreview {
  display: block;
  width: 121px;
  height: 160px;
  background-image: url(/img/doc_icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  left: -30px;
  border: 2px solid #000;
  border-radius: 4px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  column-gap: 60px;
  margin-bottom: 150px;
}
#services.about-wrapper {
  grid-template-columns: repeat(2, 1fr);
}
.about-title {
  width: 100%;
  grid-column: span 3;
}
#services .about-title {
  grid-column: span 2;
}
.about-item {
  padding: 70px 30px;
  border: 5px solid #fff;
  border-radius: 20px;
}
.about-item__title {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.1;
  display: block;
  min-height: 85px;
  margin-bottom: 35px;
}
.about-item__text {
  font-size: 24px;
  line-height: 1.2;
}
.about-item--big {
  grid-column: span 3;
  border: none;
}
.about-item--big .about-item__text {
  display: block;
  margin-bottom: 70px;
}
.about-item__list {
  display: flex;
  justify-content: start;
}
.about-item__list-element {
  display: block;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 30px;
  padding-right: 60px;
}
@media only screen and (max-width: 1440px) {
  .about-item__list-element {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1280px) {
  .about-item__list-element {
    font-size: 20px;
  }
}
.about-item__list-element::after {
  content: '';
  position: absolute;
  left: -1px;
  bottom: 0;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: inset 0 0 1em 0 #fff, 0 0 1em 0 #fff;
  z-index: 2;
}
.about-item__list-element::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 5px;
  width: 105%;
  background-color: #fff;
  box-shadow: inset 0 0 1em 0 #fff, 0 0 1em 0 #fff;
  z-index: 1;
}
@media only screen and (max-width: 1440px) {
  .about-item__list-element::before {
    width: 120%;
  }
}
.about-item__list-element:nth-child(2):before {
  width: 120%;
}
@media only screen and (max-width: 1440px) {
  .about-item__list-element:nth-child(2):before {
    width: 135%;
  }
}
@media only screen and (max-width: 1370px) {
  .about-item__list-element:nth-child(3):before {
    width: 110%;
  }
}
@media only screen and (max-width: 1280px) {
  .about-item__list-element:nth-child(3):before {
    width: 110%;
  }
}

.about-item__ul {
  font-size: 24px;
  line-height: 1.2;
  margin-top: 40px;
  padding-left: 25px;
}

.about-item__ul li {
  margin-bottom: 10px;
}

.permission-wrapper {
  background-color: #fff;
  padding: 80px 0 120px 0;
}
h2 {
  font-size: 55px;
  font-weight: 500;
}
.permission-title {
  color: #475aee;
  margin-bottom: 60px;
}
.text-center {
  text-align: center;
}
.permission-container {
  display: flex;
  justify-content: space-between;
  column-gap: 150px;
  color: #000;
}
.permission-list {
  width: 50%;
}
.permission-list__item {
  font-size: 24px;
  line-height: 1.1;
  min-height: 85px;
  display: flex;
  align-items: center;
  padding-left: 75px;
  position: relative;
}
.permission-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 60px;
  background-image: url(/img/check_blue.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.permission-list__item ~ .permission-list__item {
  margin-top: 30px;
}
.company-wrapper {
  padding-top: 150px;
  padding-bottom: 150px;
  max-width: 850px;
  margin: auto;
  font-size: 24px;
  line-height: 1.2;
}
.company-title {
  margin-bottom: 25px;
  color: #475aee;
}
.why-wrapper {
  margin-top: 80px;
  margin-bottom: 160px;
}
.why-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 90px;
  margin-top: 170px;
}
.why-item {
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}
.why-item__icon {
  position: absolute;
  top: -75px;
  right: 50px;
}
.why-item__title {
  display: block;
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 50px;
  min-height: 70px;
}
.why-item__text {
  font-size: 20px;
}
.footer {
  background-image: url('/img/footer_bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 50px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
}
.footer-logo img {
  max-height: 70px;
}
.footer-logo a {
  margin-bottom: 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}
.footer-contact {
  grid-column: span 1;
}
.footer-containt-item {
  display: block;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  text-align: left;
}
.footer-containt-item:not(:last-child) {
  margin-bottom: 25px;
}
.footer-bottom {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer-bottom__text {
  font-size: 15px;
}
.footer-bottom__menu {
  display: flex;
  gap: 10px;
  width: 66%;
}
.footer_bottom__menuItem {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
}
.footer_bottom__menuItem:hover {
  text-decoration: underline;
}

.burger {
  stroke: #fff;
  position: relative;
  z-index: 99;
  display: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.burger #burger {
  width: 32px;
  height: 9px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}
.burger #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.burger #burger .bar.topBar {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}
.burger #burger .bar.btmBar {
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}
.menu-opened .burger #burger .bar {
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.menu-opened .burger #burger .bar.topBar {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
  background: #fff;
}
.menu-opened .burger #burger .bar.btmBar {
  -webkit-transform: translateY(3px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
  background: #fff;
}

.cookieNotification {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(3, 95, 199, 0.82);
  font-size: 14px;
  display: none;
}

.cookieNotification-show {
  display: block;
}

.cookieNotification a {
  color: #fff;
}

.cookieNotification__container {
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.cookieNotification__button {
  margin: 0;
  padding: 4px;
  line-height: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.1s ease;
}

.cookieNotification__button:hover {
  transform: scale(1.04);
}

.cookieNotification__button:active {
  transform: scale(0.98);
}

.cookieNotification__button svg {
  height: 32px;
  color: #0d6db4;
}
@media only screen and (max-width: 1200px) {
  .header-top__logo img {
    max-height: 40px;
  }
  .header-top__nav a {
    font-size: 12px;
    padding: 15px;
  }
  .header-top__nav a::after {
    border: 2px solid #fff;
  }
  .header-top__email {
    font-size: 16px;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .header-body__description {
    font-size: 18px;
    max-width: 500px;
  }
  .header-body__link {
    border: 2px solid #fff;
    font-size: 18px;
  }
  .about-item__list-element {
    line-height: 1;
  }
  .about-item__list-element:nth-child(3):before {
    width: 100%;
  }
  .container {
    width: auto;
  }
  .about-item {
    padding: 40px 15px;
  }
  .about-item__title {
    font-size: 24px;
    margin-bottom: 0;
  }
  .about-item__text {
    font-size: 16px;
  }
  .about-item__ul {
    font-size: 16px;
  }
  .permission-list__item {
    font-size: 20px;
  }
  .why-container,
  .about-wrapper {
    column-gap: 20px;
  }
  .permission-container {
    column-gap: 40px;
  }
  .why-item__title {
    font-size: 21px;
  }
  .why-item__icon img {
    max-height: 170px;
  }
  .why-item {
    padding: 120px 15px 40px;
  }
  .why-item__title {
    min-height: 50x;
    margin-bottom: 0;
  }
  .footer-bottom {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .footer-bottom__menu {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .burger {
    display: inline-block;
  }
  .header-top__email {
    display: none;
  }
  .header-top__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1e1344;
    z-index: 2;
    transform: translateX(101%);
    transition: 0.5s;
    height: var(--app-height);
  }
  .menu-opened .header-top__nav {
    transform: translateX(0);
  }
  .menu-opened .header-top__nav > a:not(.header-body__link) {
    font-size: 18px;
    padding: 15px 0;
    color: #fff;
  }
  .menu-opened .header-top__nav .header-body__link {
    margin-top: 40px;
    margin-left: 0;
    color: #fff;
  }
  .menu-opened .header-top__nav .header-body__link:before {
    content: none;
  }
  .header-body__image {
    max-height: 320px;
    top: -5%;
  }
  .about-wrapper,
  #services.about-wrapper {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .about-item--big {
    grid-column: span 1;
  }
  .about-title,
  #services .about-title {
    grid-column: span 1;
  }
  .permission-list {
    width: 100%;
  }
  .footer-bottom__menu {
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 568px) {
  .header {
    height: 100vh;
    position: relative;
  }
  .header_page {
    height: auto;
  }
  .header .container,
  .header .header-wrapper {
    height: 100%;
  }
  .header-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header-top {
    padding-top: 10px;
    margin-bottom: 120px;
    align-items: flex-start;
  }
  .header-top__logo img {
    max-height: 40px;
  }
  .container {
    width: auto;
    padding: 0 10px;
  }

  .header-top__nav a::after {
    content: none;
  }
  h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .header-body__description {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .header-body {
    height: 100%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  .header-body__image {
    width: 70%;
    position: static;
    margin: auto;
  }
  .header-body__link {
    width: auto;
    font-size: 18px;
    text-align: center;
    margin: 0;
    order: 4;
  }
  .header-body__link::before {
    content: none;
  }
  .about-wrapper {
    padding-top: 80px;
    grid-template-columns: 1fr;
    row-gap: 20px;
    column-gap: 0;
  }
  .about-item {
    padding: 20px 10px;
  }
  .about-item__text {
    font-size: 16px;
  }
  .about-item__title {
    font-size: 21px;
    min-height: auto;
    margin-bottom: 25px;
  }
  .about-item__list {
    flex-direction: column;
  }

  .permission-container {
    flex-direction: column;
    row-gap: 15px;
  }
  .why-container {
    grid-template-columns: 1fr;
    margin-top: 80px;
    row-gap: 90px;
  }
  .permission-wrapper {
    padding: 20px 10px 40px;
  }
  h2 {
    font-size: 32px;
  }
  .permission-title {
    margin-bottom: 25px;
  }
  .permission-list__item {
    padding-left: 30px;
    font-size: 16px;
    min-height: auto;
  }
  .permission-list__item::before {
    height: 20px;
    width: 20px;
  }
  .permission-list__item ~ .permission-list__item {
    margin-top: 15px;
  }
  .company-wrapper {
    width: 100%;
    font-size: 16px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .why-item__icon img {
    max-height: 150px;
  }
  .why-item {
    padding: 80px 10px 40px;
  }
  .why-item__title {
    min-height: auto;
    margin-bottom: 25px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-containt-item {
    text-align: center;
  }
  .footer-bottom {
    text-align: center;
  }
  .about-item__list-element {
    padding-bottom: 30px;
    padding-left: 15px;
    line-height: 1.1;
  }
  .about-item__list-element::after {
    bottom: auto;
    top: 0;
    height: 10px;
    width: 10px;
  }
  .about-item__list-element::before {
    width: 2px;
    height: 100%;
    bottom: auto;
    top: 0;
    left: 3px;
  }
  .about-item__list-element:nth-child(2):before {
    width: 2px;
  }
  .about-item__list-element:nth-child(3):before {
    width: 2px;
  }
  .about-item--big .about-item__text {
    text-align: left;
    margin-bottom: 40px;
  }
}

.techologies-wrapper {
  margin-bottom: 150px;
}
.techologies-wrapper h2 {
  margin-bottom: 60px;
}
.techologies-wrapper__list {
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 28px;
  column-gap: 25px;
  row-gap: 25px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.techologies-wrapper__list li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  color: #3d4edc;
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .techologies-wrapper__list {
    column-gap: 10px;
    row-gap: 10px;
    font-size: 21px;
  }
}
@media only screen and (max-width: 568px) {
  .techologies-wrapper h2 {
    margin-bottom: 30px;
  }
  .techologies-wrapper__list {
    column-gap: 10px;
    row-gap: 10px;
    font-size: 16px;
    justify-content: flex-start;
  }
  .techologies-wrapper__list li {
    width: 100%;
    text-align: center;
  }
}
