* {
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  *,
  *:before,
  *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  :focus,
  :active {
    outline: none;
  }
  
  a:focus,
  a:active {
    outline: none;
  }
  
  nav,
  footer,
  header,
  aside {
    display: block;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  input,
  button,
  textarea {
    font-family: inherit;
  }
  
  input::-ms-clear {
    display: none;
  }
  
  button {
    cursor: pointer;
  }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  
  a,
  a:visited {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  ul li {
    list-style: none;
  }
  
  img {
    vertical-align: top;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  
  body {
     font-family: "Montserrat", sans-serif;
    font-weight: 200;
  }
  .wrapper {
    min-height: 100%;
    overflow: hidden;
  }
  ._container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
      box-sizing: content-box;
  }
  .header {
    position: fixed;
      width: 100%;
      left: 0;
      top: 0;
      z-index: 50;
    transition: background-color 2s;
   }
   .header.scrolled{
    background-color: #f4f9fb;
  }
  .header__container {
    max-width: 1300px;
    display: flex;
      min-height: 75px;
      align-items: center;
      padding: 0 30px;
      justify-content: space-between;
   }
   
  .header__logo {
    padding: 13px 20px;
    background-color: #181a38;
    border-radius: 50%;
    z-index: 5;
      position: relative;
   }
  .header__menu { }
  .menu__icon {
      display: none;
   }
  .menu__body { }
  .menu__list {
    display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
   }
   .menu__link{
    font-size: 20px;
    line-height: 70px;
    font-weight: 400;
    color: #181a38;
      text-align: right;
   }
   .lang{
    font-size: 16px;
    border: 1px solid #181a38;
    border-radius: 50%;
    padding: 10px;
   }
   .menu__link:hover {
    color: rgb(102, 102, 102);
    text-shadow: 2px 2px 20px #0c1dff;
    text-decoration: underline;
  }
  /* .srv__link{
    color: rgb(102, 102, 102);
    text-decoration: underline;
  } */
  .menu__list li {
      margin: 0 0 0 45px;
  }
  
  .menu__arrow {
    display: none;
   }
  .header__button {
    padding: 15px 40px;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    color: #181a38;
    border-radius: 35px;
    border: 1px solid #181a38;
    background-color: rgba(208, 214, 238, 0.301);
    letter-spacing: 1px;
   }
  .header__button:hover{
    border: 1.5px solid #181a38;
    padding: 14px 40px;
    background-color: rgba(128, 156, 255, 0.301);
  }
  @media (max-width:992px) {
      .menu__icon {
          z-index: 5;
          display: block;
          position: relative;
          width: 30px;
          height: 18px;
          cursor: pointer;
      }
  
      .menu__icon span,
      .menu__icon::before,
      .menu__icon::after {
          left: 0;
          position: absolute;
          height: 10%;
          width: 100%;
          transition: all 0.5s ease 0s;
          background-color: #4460eb;
      }
  
      .menu__icon::before,
      .menu__icon::after {
          content: '';
      }
  
      .menu__icon::before {
          top: 0;
      }
  
      .menu__icon::after {
          bottom: 0;
      }
  
      .menu__icon span {
          top: 50%;
          transform: scale(1) translate(0px, -50%);
      }
  
      .menu__icon._active span {
          transform: scale(0) translate(0px, -50%);
      }
  
      .menu__icon._active::before {
          top: 50%;
          transform: rotate(-45deg) translate(0px, -50%);
      }
  
      .menu__icon._active::after {
          bottom: 50%;
          transform: rotate(45deg) translate(0px, 50%);
      }
  
      .menu__body {
          position: fixed;
          top: 0;
          right: -100%;
          width: 100%;
          height: 100%;
          background: #181a38f0;
          padding: 100px 30px 30px 35px;
          transition: right 0.5s ease 0s;
          overflow: auto;
      }
  
      .menu__body._active {
          right: 0;
      }
  
      .menu__body::before {
          content: "";
          position: fixed;
          width: 100%;
          top: 0;
          left: 0;
          height: 70px;
          z-index: 2;
      }
  
      .menu__list>li {
          flex-wrap: wrap;
          margin: 0 0 20px 0;
          flex: 1 1 100%;
      }
  
      .menu__list>li._active {
          display: block;
      }
      .menu__list>li:last-child {
          margin-bottom: 0;
      }
  
      .menu__link {
          font-size: 24px;
          color: white;
  line-height: 60px;

      }
      .header__button {
          font-size: 24px;
          color: white;
      }
  }
  /* ========================================================================== */
.services {
    /* background-color: #fff; */
    background-color: #f4f9fb;
    position: relative;
   }
  .services__container {
    max-width: 1300px;
   }
  ._container { }
  .services__body {
    justify-content: center;
      text-align: center;
      align-items: center;
      z-index: 2;
      /*margin: 80px 0 80px 0;*/
    margin: 0 auto;
   }
  .services__subtitle {
    padding: 80px 0 10px 0;
   }
   .services__subtitle.element-animation{
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
  }
  .services__subtitle.element-animation.element-show{
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  .services__title {
    margin: 0 0 40px 0;
   }
   .services__title.element-animation{
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
  }
  .services__title.element-animation.element-show{
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  ._title {
    font-size: 46px;
    color: #181a38;
    font-weight: 600;
      text-shadow: 0 0 20px #aab5ea;
  }
  ._subtitle {
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    color: #4460eb;
  }
  .services__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 0 70px 0;
   }
  .services__column {
    flex: 0 1 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
   }
   .services__column.element-animation{
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1.25s;
    -o-transition: all 1.25s;
    transition: all 1.25s;
  }
  .services__column.element-animation.element-show{
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  .services__column.element-animation:nth-of-type(2).element-show{
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .services__column.element-animation:nth-of-type(3).element-show{
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  
  .services__column.element-animation:nth-of-type(5).element-show{
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .services__column.element-animation:nth-of-type(6).element-show{
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .services__column.element-animation:nth-of-type(8).element-show{
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .services__column.element-animation:nth-of-type(9).element-show{
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .services__column.element-animation:nth-of-type(11).element-show{
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .services__column.element-animation:nth-of-type(12).element-show{
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .services__column.element-animation:nth-of-type(14).element-show{
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .services__column.element-animation:nth-of-type(15).element-show{
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  
   .services__column-item {
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    background-color: #ffffff;
      filter: drop-shadow(0 0 28.5px rgba(129, 130, 133, 0.41));
    text-align: left;
    height: 100%;
    transition: all 1s ease;
  
   }
   .services__column:hover{
    .services__column-item{
    background-color: #4460eb;
    transition: all 0.8s ease;
  
    }
  .services__item-subtitle {
    color: aliceblue;
  }
  .services__item-title {
    color: #ffffff;
  }
  .services__item-text {
    color: #000000;
    font-weight: normal;
  }
  .services__column-item {
      filter: drop-shadow(0 0 38.5px rgba(32, 40, 63, 0.41));
  }
   }
  .sr-item-column-1{
    flex: 0 1 25%;
  }
  .sr-item-column-2{
    flex: 0 1 75%;
  }
  .services__item-image img{
    width:100%;
    height: 60%;
    padding: 15px;
    border-radius: 5px;
      filter: drop-shadow(0 0 5px rgba(44, 59, 103, 0.81));
  
   }
  .services__item-subtitle {
      margin: 0px 20px 0 30px;
      font-size: 12px;
      letter-spacing: 0px;
      line-height: 35px;
      color: orangered;
    font-style: italic;
      font-weight: 500;
   }
  .services__item-title {
    position: relative;
    margin: 0px 30px;
      font-size: 20px;
      letter-spacing: 0px;
      line-height: 26px;
      color: #181a38;
      font-weight: 700;
  }
  .services__item-title:hover{
    text-shadow: 0 0 10px #181a38;
  }
  .services__item-title:after{
    position: absolute;
    content: '';
    top: -5%;
    left: 0;
    width: 70%;
    border-bottom: 1px solid #181a38;
  }
  .services__item-text {
      margin: 15px 30px 30px 30px;
      font-size: 12px;
      letter-spacing: 0px;
      line-height: 14px;
      color: #000000;
      font-weight: 400;
   }
  
  @media(max-width:992px){
    ._title {
        font-size: 40px;
        line-height: 45px;
      }
      ._subtitle {
        font-size: 18px;
      }
    .services__column {
      flex: 0 1 100%;
      padding: 10px 10px;
     }
    .services__item-subtitle {
      margin: 0px 5px 0 10px;
      font-size: 10px;
      line-height: 25px;
     }
    .services__item-title {
      margin: 0px 10px;
      font-size: 16px;
      line-height: 24px;
    }
    .services__item-text {
      margin: 15px 10px 30px 10px;
      font-size: 10px;
      line-height: 14px;
     }
  }
  @media(max-width:767px){
    ._title {
        font-size: 28px;
        line-height: 35px;
      }
      ._subtitle {
        font-size: 16px;
      }
    .services__column {
      flex: 0 1 100%;
      padding: 5px 10px;
     }
     .sr-item-column-1{
        flex: 0 1 100%;
      }
      .sr-item-column-2{
        flex: 0 1 100%;
      }
      .services__item-image img{
        width:100%;
        height: 60%;
       }
    .services__item-subtitle {
      margin: 0px 5px 0 10px;
      font-size: 10px;
      line-height: 25px;
     }
    .services__item-title {
      margin: 0px 10px;
      font-size: 16px;
      line-height: 24px;
    }
    .services__item-text {
      margin: 15px 10px 30px 10px;
      font-size: 10px;
      line-height: 14px;
     }
  }
  @media(max-width:550px){
    ._title {
        font-size: 24px;
        line-height: 30px;
      }
     ._subtitle {
        font-size: 12px;
      }
    .services__column {
      flex: 0 1 100%;
      padding: 10px 5px;
     }
    .services__item-subtitle {
      margin: 0px 5px 0 10px;
      font-size: 10px;
      line-height: 25px;
     }
    .services__item-title {
      margin: 0px 10px;
      font-size: 16px;
      line-height: 24px;
    }
    .services__item-text {
      margin: 15px 10px 30px 10px;
      font-size: 10px;
      line-height: 14px;
     }
  }
  .footer {
    height: 100%;
    background-color: #181a38;
   }
  .footer__container { }
  ._container { }
  .footer__body {
     padding: 80px 0 0 0;
     display: flex;
   }
  .footer__column-1 {
    flex: 0 0 50%;
   }
  .footer__icon {
    font-size: 32px;
    color: #f5f5f5;
    line-height: 40px;
    background: url(../images/logo-bird_small.png) 0 0px no-repeat;
    padding: 0 0 0px 35px;
   }
  .footer__column-1-body {
    display: flex;
    padding: 20px 0 0 0;
   }
  .footer-column-1-1 {
    flex: 0 0 40%;
   }
  .footer-column-1-1__list a{
    color: #f5f5f5;
    font-size: 24px;
    line-height: 40px;
   }
   .footer-column-1-1__list a:hover{
    text-decoration: underline;
   }
  .footer-column-1-2 {
    flex: 0 0 60%;
   }
  .footer-column-1-2__list a{
    color: #f5f5f5;
    font-size: 24px;
    line-height: 40px;
   }
   .footer-column-1-2__list a:hover{
    text-decoration: underline;
   }
  .footer__column-2 {
    flex: 0 0 50%;
   }
  .footer-column-2__title {
    color: #f5f5f5;
    padding: 0 0 50px 0;
    font-size: 50px; 
    font-weight: 600;
    letter-spacing: -2px;
   }
  .footer__column-2__text {
    color: grey;
    font-size: 16px;
   }
  .footer__column-2__subtitle {
    color: #f5f5f5;
    font-size: 20px;
    line-height: 30px;
    padding: 0 0 10px 0;
   }
   .footer__column-2__subtitle a{
    color: #f5f5f5;
   }
   .footer__column-2__subtitle a:hover{
    color: #4460eb;
   }
  
   @media(max-width:767px){
    .footer__icon {
      font-size: 26px;
      line-height: 40px;
      background: url(../images/logo-bird_small.png) 0 0px no-repeat;
  
   }
   .footer-column-1-1__list a{
    font-size: 16px;
    line-height: 25px;
   }
   .footer-column-1-2__list a{
    font-size: 16px;
    line-height: 25px;
   }
   .footer-column-2__title {
    padding: 0 0 30px 0;
    font-size: 40px; 
   }
   .footer__column-2__text {
    font-size: 14px;
   }
   .footer__column-2__subtitle {
    font-size: 16px;
    line-height: 25px;
    padding: 0 0 5px 0;
   }
  }
  @media(max-width:550px){
    .footer__body {
      flex-wrap: wrap;
    }
    .footer__column-1 {
      flex: 0 0 100%;
      margin-bottom: 30px;
     }
    .footer__column-2 {
      flex: 0 0 100%;
     }
  }
