/*@font-face {
  font-display: swap;
  font-weight: normal;
  font-family: 'Open Sans';
  src: url(fonts/OpenSans/OpenSans-Regular.ttf); }

@font-face {
  font-display: swap;
  font-weight: bold;
  font-family: 'Open Sans';
  src: url(fonts/OpenSans/OpenSans-SemiBold.ttf); }*/

  body {
    overflow-y: scroll;
    color: unset;
  }
  
  h2 {
    margin: unset;
  }
  
  *::selection {
    background: #1fc4b0;
    color: #191919;
  }
  
  /* scroll */
  /*body {
      scrollbar-width: none; 
  }
  body::-webkit-scrollbar { 
      width: 0;
      height: 0;
  }*/
  /* end scroll */
  .mouse-parallax {
    position: relative;
    overflow: hidden;
  }
  
  .mouse-parallax-bg {
    transition: all 0.1s ease;
  }
  
  /* .max-width-2 {
    max-width: 1350px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  } */
  /* @media (max-width: 1500px) {
    .max-width-2 {
      max-width: 1200px;
    }
  } */
  
  .cursor-body {
    background-color: #1fc3b0;
    opacity: 0.5;
    /*width: 50px;
      height: 50px;*/
    border-radius: 50%;
    position: fixed;
    z-index: 5;
    transform: translate(-50%, -50%);
  }
  
  .cursor-body:before {
    display: block;
    content: "";
    width: 50px;
    height: 50px;
    background-color: #1fc3b0;
    border-radius: 50%;
  }
  
  /* ----------------------------
  
    cursor styles
  
  --------------------------- */
  .cursor {
    pointer-events: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    display: block;
    /*styles applied for showing / hiding cursor - do not touch*/
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
    opacity: 0;
    /*element width*/
    /*width: 6px;
      height: 6px;*/
  }
  
  .cursor.moving {
    opacity: 1;
  }
  
  .cursor::before {
    content: " ";
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    top: 0;
    left: 0;
    /* transitions animations*/
    opacity: 1;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
  }
  
  /* expand is the class you assigned with the plugin to cursor when a selected element is hovered*/
  .cursor.expand::before {
    opacity: 0;
  }
  
  /* ----------------------------
  
    node styles
  
  --------------------------- */
  .node {
    pointer-events: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.5;
    /*styles applied for showing / hiding cursor - do not touch*/
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
    opacity: 0;
    /*element width*/
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
  }
  
  .node.moving {
    opacity: 1;
  }
  
  .node::before {
    content: " ";
    height: 100%;
    width: 100%;
    position: absolute;
    /*background-color: transparent;*/
    background-color: #1fc3b0;
    border-radius: 50%;
    top: 0;
    left: 0;
    /*border: 1px solid #ffffff;*/
    /*states and transitions animations*/
    transform: scale(1.5);
    opacity: 0.5;
    -webkit-transition: opacity 300ms linear, transform 300ms linear,
      border 300ms linear, background-color 300ms linear;
    -moz-transition: opacity 300ms linear, transform 300ms linear,
      border 300ms linear, background-color 300ms linear;
    -o-transition: opacity 300ms linear, transform 300ms linear,
      border 300ms linear, background-color 300ms linear;
    transition: opacity 300ms linear, transform 300ms linear, border 300ms linear,
      background-color 300ms linear;
  }
  
  /* expand is the class you assigned with the plugin to cursor when a selected element is hovered*/
  .node.expand::before {
    transform: scale(3);
    background-color: #ffffff;
    opacity: 0.2;
  }
  
  .node.hover-image {
    opacity: 0;
  }
  
  .node.node-invert::before {
    background-color: white;
    opacity: 0.3;
  }
  
  /*.node.reduce {
      transform: scale(1);
      background-color: #ffffff;
  }*/
  .hover__btn {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    outline: none;
    text-transform: uppercase;
    cursor: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  /* end */
  /* header-top */
  .header-top {
    font-family: Montserrat;
    background: #181818;
    padding: 45px 0;
    width: 100%;
  }
  
  .header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .header-menu-btn {
    border: none;
    padding: 0;
    background: transparent;
    position: absolute;
    left: -120px;
  }
  .header-menu-btn:focus,
  .header-menu-btn:hover {
    outline: none;
  }
  .header-menu-btn:focus path,
  .header-menu-btn:hover path {
    fill: #1fc3b0;
  }
  
  .header-menu-icon path {
    transition: fill 0.5s ease;
  }
  
  .header-logo {
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    margin-right: auto;
  }
  .header-logo span {
    transition: color 0.5s ease;
  }
  .header-logo:focus,
  .header-logo:hover {
    outline: none;
    text-decoration: none;
    color: white;
  }
  .header-logo:focus span,
  .header-logo:hover span {
    color: #1fc4b0;
  }
  
  .header-top-phone {
    margin-right: 40px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #929292;
    transition: color 0.5s ease;
  }
  .header-top-phone:focus,
  .header-top-phone:hover {
    outline: none;
    text-decoration: none;
    color: #1fc3b0;
  }
  
  .header-top-btn-form {
    border: none;
    background: transparent;
    padding: 0;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    color: white;
    transition: color 0.5s ease;
  }
  .header-top-btn-form:focus,
  .header-top-btn-form:hover {
    outline: none;
    text-decoration: none;
    color: #1fc3b0;
  }
  
  @media (max-width: 1800px) {
    .header-menu-btn {
      position: static;
      margin-right: 60px;
    }
  }
  
  @media (max-width: 1300px) {
    .header-menu-btn {
      margin-right: 40px;
    }
    .header-top-btn-form {
      color: #1fc3b0;
    }
  }
  
  /* end header-top */
  /* site-dev-header */
  .site-dev-header {
    font-family: Montserrat, "Open Sans", sans-serif;
    min-height: calc(100vh - 139px);
    background: #181818;
    display: flex;
    position: relative;
  }
  .logged-in .site-dev-header {
    min-height: calc(100vh - 172px);
  }
  @media (max-width: 900px) {
    .site-dev-header {
      /*min-height: calc(100vh - 75px);*/
      min-height: auto;
    }
    .logged-in .site-dev-header {
      min-height: auto;
    }
    /*.logged-in .site-dev-header{
      min-height: calc(100vh - 107px);
    }*/
  }
  
  .site-dev-header__container {
    margin-left: auto;
    width: calc(50% + 660px);
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 15px;
    /*overflow-x: hidden;*/
  }
  @media (max-width: 1500px) {
    .site-dev-header__container {
      width: calc(50% + 600px);
    }
  }
  .top-seo {
    font-weight: 500;
    max-width: 400px;
    background-image: url("../../img/codex-top-1.svg");
    margin-bottom: 30px;
    margin-top: 60px;
  }
  @media (max-width: 1500px) {
    .top-seo {
      margin-top: 20px;
      margin-bottom: 10px;
    }
  }
  .site-dev-header__h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    color: #ffffff;
    margin: 0 0 30px;
    /*background-position: right top;
      background-image: url('images/assets/code.svg');
      background-repeat: no-repeat;*/
    padding: 0;
    position: relative;
  }
  .site-dev-header__h1:after {
    content: "";
    display: block;
    background-image: url("images/assets/code.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: -52px;
    top: -67px;
    bottom: calc(100% - 67px);
    /*animation-name: site-dev-header__h1;*/
    animation-duration: 1.5s;
  }
  @media (max-width: 1500px) {
    .site-dev-header__h1:after {
      top: 0;
    }
  }
  @media (max-width: 991px) {
    .site-dev-header__h1 {
      margin: 70px 0 40pxv;
    }
  }
  
  @keyframes site-dev-header__h1 {
    from {
      bottom: 100vh;
    }
    to {
      bottom: calc(100% - 67px);
    }
  }
  
  .site-dev-header__desc {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 26px;
    color: #d8d8d8;
    max-width: 730px;
  }
  
  .site-dev-header-image-container {
    margin-left: 150px;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  #header-canvas {
    position: absolute;
    top: 0;
    /* bottom: 0; */
    left: 0;
    /* right: 0; */
    width: 100%;
    height: 100%;
  }
  
  .site-dev-header-image__main {
    /*animation-name: site-dev-header__img;*/
    animation-duration: 1.5s;
    position: relative;
    object-fit: contain;
  }
  
  @keyframes site-dev-header__img {
    from {
      left: 100%;
    }
    to {
      left: 0%;
    }
  }
  
  .header_icon_1 {
    position: absolute;
    top: 55%;
    left: 800px;
    z-index: 1;
    /*animation-delay: .3s;*/
    animation-duration: 1s;
    animation-name: header_icon_1__anim;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  
  @keyframes header_icon_1__anim {
    from {
      left: 800px;
    }
    to {
      left: -105px;
    }
  }
  
  .header_icon_2 {
    position: absolute;
    top: 74%;
    left: 800px;
    z-index: 1;
    animation-duration: 0.8s;
    animation-name: header_icon_2__anim;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  
  .site-dev-header-image__main {
    z-index: 2;
    position: relative;
    left: 15px;
  }
  
  @keyframes header_icon_2__anim {
    from {
      left: 800px;
    }
    to {
      left: -80px;
    }
  }
  
  .site-dev-header__info {
    max-width: 780px;
    /*padding: 0 15px;*/
    padding: 0 15px 0 0;
    min-width: 770px;
  }
  
  .site-dev-header__btn {
    padding: 16px 45px;
    border: 1px solid #5c5c5c;
    background: transparent;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 25px;
    display: inline-block;
    transition: background 0.5s ease, color 0.5s ease;
    margin-bottom: 85px;
  }
  .site-dev-header__btn:hover,
  .site-dev-header__btn:focus {
    background: #4bdbb1;
    color: #191919;
  }
  
  .site-dev-scroll {
    width: 145px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #282828;
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    transition: height 0.8s ease;
  }
  .site-dev-scroll:hover,
  .site-dev-scroll:focus {
    height: 210px;
  }
  
  @media (min-width: 1100px) and (max-width: 1700px) {
    .site-dev-scroll {
      display: none;
    }
  }
  
  @media (max-width: 1500px) {
    .site-dev-header__info {
      max-width: 500px;
      min-width: 500px;
    }
    .site-dev-header__h1 {
      margin-top: 0;
      line-height: 90px;
      font-size: 50px;
      line-height: 60px;
    }
  }
  
  @media (max-width: 568px) {
    .site-dev-header__h1 {
      line-height: inherit;
      font-size: 36px;
    }
  }
  
  @media (max-width: 1100px) {
    .site-dev-header {
      min-height: unset;
    }
    .site-dev-header__container {
      flex-direction: column;
      justify-content: flex-start;
    }
    .site-dev-header__info {
      margin-bottom: 60px;
      max-width: 800px;
    }
    .site-dev-header-image-container {
      margin-left: auto;
      margin-bottom: 100px;
      max-width: 65%;
    }
    .site-dev-header__desc {
      margin-bottom: 40px;
    }
    .site-dev-header__btn {
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 800px) {
    .site-dev-scroll {
      display: none;
    }
  }
  
  @media (max-width: 640px) {
    .site-dev-header-image-container {
      display: none;
    }
    .site-dev-header__desc {
      margin-bottom: 45px;
    }
    .site-dev-header__info {
      min-width: unset;
      align-self: flex-start;
    }
  }
  
  @media (max-width: 400px) {
    .site-dev-header__btn {
      width: 100%;
    }
  }
  
  [data-animate-flight] {
    transition: top 0.5s ease, left 0.5s ease;
  }
  
  /* end site-dev-header */
  /* site-dev-block-2 */
  .site-dev-block-2 {
    background: #282828;
    padding: 80px 0;
  }
  
  .site-dev-block-2__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-dev-block-2__title {
    font-family: Montserrat, "Open Sans", sans-serif;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 48px;
    line-height: 52px;
    color: #ffffff;
    max-width: 440px;
  }
  
  .site-dev-block-2__title:before {
    background: #616161;
    content: "";
    display: block;
    height: 3px;
    width: 68px;
    margin-bottom: 25px;
  }
  
  .site-dev-block-2__desc {
    font-family: Montserrat, "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #c5c5c5;
    max-width: 645px;
  }
  
  .site-dev-block-2__2 {
    margin-left: 100px;
  }
  
  @media (max-width: 991px) {
    .site-dev-block-2__title {
      font-size: 30px;
      line-height: 40px;
    }
  }
  
  @media (max-width: 800px) {
    .site-dev-block-2__desc {
      line-height: 26px;
    }
    .site-dev-block-2__container {
      flex-direction: column;
      align-items: flex-start;
    }
    .site-dev-block-2__1 {
      margin-bottom: 40px;
    }
    .site-dev-block-2__2 {
      margin: 0;
    }
    .site-dev-block-2__2 img {
      max-width: 260px;
    }
    .site-dev-block-2__title {
      margin-bottom: 20px;
    }
    .site-dev-block-2 {
      padding: 50px 0;
    }
  }
  
  /* end site-dev-block-2 */
  /* site-dev-tariffs */
  .site-dev-tariffs {
    background: #fafafa;
    padding: 80px 0;
  }
  
  .site-dev-tariffs__title {
    margin-bottom: 15px;
    font-family: Montserrat, "Open Sans", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #191919;
    max-width: 700px;
  }
  .site-dev-tariffs__title:before {
    content: "";
    display: block;
    width: 68px;
    height: 3px;
    background: #5c5c5c;
    margin-bottom: 25px;
  }
  
  .site-dev-tariffs__desc {
    margin-bottom: 60px;
    font-family: Montserrat, "Open Sans", sans-serif;
    color: #848484;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    max-width: 600px;
  }
  
  .site-dev-list {
    font-family: Montserrat, "Open Sans", sans-serif;
    display: flex;
    justify-content: space-between;
    /*margin-left: -10px;
      margin-right: -10px;*/
  }
  
  .site-dev-list-item {
    height: 100%;
    padding: 35px 20px 25px;
    background: #191919;
    border-radius: 10px;
    min-width: 315px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: background 1s ease;
    /*&:hover{
          background: #4BDBB1;
          .site-dev-list-item__title{
              color: #191919;
          }
          .site-dev-list-item_desc{
              list-style-image: url('images/li-active.svg');
              color: #191919;
          }
          .site-dev-list-item__price{
              color: #191919;
          }
          .site-dev-list-item__btn{
              color: #191919;
              border-bottom-color: #686868;
          }
      }*/
  }
  
  .site-dev-list-item-form .wpcf7-response-output {
    display: none;
  }
  .site-dev-list-item-form-title {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 30px;
    color: white;
    font-weight: 500;
    font-weight: normal;
  }
  
  .site-dev-list-item-container {
    /*width: 25%!important;
      padding: 0 10px;*/
    overflow: hidden;
  }
  
  .swiper-slide.site-dev-list-item-container {
    height: auto;
    /*min-width: 335px;*/
    padding: 0 15px;
    opacity: 1 !important;
  }
  
  #site-dev-list.swiper-container-initialized {
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .site-dev-list-pagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
  }
  .site-dev-list-pagination.pagination-reverse-margin{
      margin-top: 0;
      margin-bottom: 40px;
  }
  
  .site-dev-list-item_active {
    /*background: #4BDBB1;*/
    background: #1fc4b0;
    padding-top: 25px;
  }
  .site-dev-list-item_active .site-dev-list-item__title {
    color: #191919;
    font-weight: 500;
  }
  .site-dev-list-item_active .site-dev-list-item__title:before {
    margin-bottom: 9px;
    width: 35px;
    height: 1px;
    background: #191919;
    content: "";
    display: block;
  }
  .site-dev-list-item_active .site-dev-list-item_desc {
    list-style-image: url("images/li-active.svg");
    color: #191919;
    margin-top: 8px;
  }
  .site-dev-list-item_active .site-dev-list-item__price {
    color: #191919;
    font-weight: bold;
  }
  .site-dev-list-item_active .site-dev-list-item__btn span {
    color: #191919;
    border-bottom-color: #686868;
  }
  .site-dev-list-item_active .site-dev-list-item__btn span:after {
    border-bottom-color: #191919;
  }
  .site-dev-list-item_active .site-dev-list-item__btn:focus span,
  .site-dev-list-item_active .site-dev-list-item__btn:hover span {
    /*color: #191919;*/
    color: white;
    /*color: #686868;*/
    border-bottom-color: #686868;
  }
  
  .site-dev-list-item__title {
    margin-bottom: 0px;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    height: 150px;
    font-weight: normal;
  }
  
  .site-dev-list-item_desc {
    list-style-image: url("images/li.svg");
    color: #a6a6a6;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    height: 174px;
    list-style-position: inside;
    padding: 0;
    margin-bottom: 25px;
  }
  .site-dev-list-item_desc li {
    margin-bottom: 7px;
  }
  .site-dev-list-item_desc li span {
    /*display: inline-block;*/
    display: inline;
    position: relative;
    top: -3px;
  }
  
  .site-dev-list-item__price {
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 25px;
  }
  
  .site-dev-list-item__btn {
    font-family: Montserrat, "Open Sans", sans-serif;
    padding: 15px 0 0;
    border: none;
    background-color: transparent;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    /*margin-top: auto;*/
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    /*width: 100%;*/
  }
  .site-dev-list-item__btn span {
    position: relative;
    display: block;
    /*border-bottom: 1px solid #686868;*/
    color: #686868;
    padding: 0 0 5px;
    width: 80px;
    min-width: min-content;
    transition: color 0.4s ease;
    /*border-bottom .5s ease,
              width 1s ease*/
  }
  .site-dev-list-item__btn span:before {
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    position: absolute;
    border-bottom: 1px solid #686868;
  }
  .site-dev-list-item__btn span:after {
    display: block;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    content: "";
    position: absolute;
    transform: scaleX(0);
    border-bottom: 1px solid white;
    transition: transform 0.4s ease;
    transform-origin: 0 50%;
  }
  .site-dev-list-item__btn:focus,
  .site-dev-list-item__btn:hover {
    outline: none;
  }
  .site-dev-list-item__btn:focus span,
  .site-dev-list-item__btn:hover span {
    color: white;
    /*border-bottom-color: white;*/
  }
  .site-dev-list-item__btn:focus span:after,
  .site-dev-list-item__btn:hover span:after {
    transform: scaleX(1);
  }
  
  .site-dev-animate {
    border-radius: 50%;
    border: 0 solid #1fc4b0;
    position: absolute;
    left: 60px;
    bottom: 40px;
    transform: translate(-50%, 50%);
    background-color: #1fc4b0;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-name: site-dev-animate;
    animation-timing-function: ease-in-out;
  }
  
  .site-dev-animate2 {
    background-color: #191919;
    border-radius: 50%;
    border: 0 solid #191919;
    position: absolute;
    left: 60px;
    bottom: 40px;
    transform: translate(-50%, 50%);
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-delay: 0.4s;
    animation-name: site-dev-animate;
    animation-timing-function: ease-in-out;
  }
  
  @keyframes site-dev-animate {
    from {
      border-width: 0px;
    }
    to {
      border-width: 533px;
    }
  }
  
  .site-dev-list-item-form .wpcf7-response-output {
    position: absolute;
    top: 0;
  }
  .site-dev-list-item-form .wpcf7 {
    height: 100%;
  }
  .site-dev-list-item-form .wpcf7-form {
    height: 100%;
  }
  .site-dev-list-item-form-container {
    height: 100%;
  }
  .site-dev-list-item-form-container .wpcf7-not-valid-tip {
    color: white;
  }
  .site-dev-list-item-form-container p {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 0;
    height: calc(100% - 70px);
  }
  .site-dev-list-item-form-container p .site-dev-list-item__btn {
    margin-top: auto;
  }
  .site-dev-list-item-form {
    position: absolute;
    top: 0;
    /*left: 10px;
    right: 10px;*/
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 20px 25px;
    border-radius: 6px;
    /*background: #1FC4B0;*/
    background: #191919;
    /*display: flex;*/
    display: none;
    flex-direction: column;
    opacity: 0;
    justify-content: space-between;
    animation-fill-mode: forwards;
    animation-duration: 0.4s;
    animation-name: item-form;
  }
  .site-dev-list-item-form input,
  .site-dev-list-item-form textarea {
    border-radius: 0;
  }
  .site-dev-list-item-form input:focus,
  .site-dev-list-item-form textarea:focus {
    border-bottom: 1px solid #1fc4b0;
  }
  .site-dev-list-item-form input:not([type="submit"]),
  .site-dev-list-item-form textarea {
    color: white;
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    padding: 10px 0;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 15px;
    transition: border 0.5s ease;
    width: 100%;
  }
  .site-dev-list-item-form input:not([type="submit"])::placeholder,
  .site-dev-list-item-form textarea::placeholder {
    color: #686868;
  }
  .site-dev-list-item-form input:not([type="submit"]):focus,
  .site-dev-list-item-form textarea:focus {
    outline: none;
    /*border-bottom: 1px solid #1FC3B0;*/
  }
  .site-dev-list-item-form input:not([type="submit"]):focus,
  .site-dev-list-item-form textarea:focus {
    border-bottom: 1px solid #1fc4b0;
  }
  .site-dev-list-item-form [type="submit"] {
    margin-top: auto;
  }
  .site-dev-list-item-form [type="submit"] span {
    color: #686868;
  }
  .site-dev-list-item-form [type="submit"] span:focus,
  .site-dev-list-item-form [type="submit"] span:hover {
    color: white;
  }
  
  @keyframes item-form {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /*.site-dev-animate-closing .site-dev-list-item-form{
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-name: item-form-close;
  }
  
  
  @keyframes item-form-close {
    from {
      opacity: 1; }
    to {
      opacity: 0; } }
  
  */
  
  .site-dev-list-item-form_closing {
    animation-fill-mode: forwards;
    animation-duration: 0.4s;
    animation-name: item-form-close;
  }
  
  @keyframes item-form-close {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  .swiper-pagination-bullets {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 1200px) and (max-width: 1500px) {
    .site-dev-list-item {
      min-width: 275px;
    }
    .site-dev-list-item__title {
      font-size: 23px;
    }
  }
  
  @media (min-width: 450px) {
    .swiper-slide.site-dev-list-item-container {
      width: 335px;
      padding: 0 10px;
    }
    /* .swiper-slide.site-dev-list-item-container:first-child {
      padding-left: 15px;
      width: 340px;
    } */
    .swiper-slide.site-dev-list-item-container:last-child {
      padding-right: 15px;
      width: 340px;
    }
  }
  
  @media (min-width: 1200px) {
    /*.site-dev-list{
          margin-right: -10px;
          margin-left: -10px;
      }*/
    /*.swiper-slide.site-dev-list-item-container:first-child,
      .swiper-slide.site-dev-list-item-container:last-child{
          padding: 0 10px;
          width: 335px;
      }*/
    .swiper-pagination-bullets {
      display: none;
    }
    /*#site-dev-list.swiper-container-initialized{
          margin-left: 0;
          margin-right: 0;
      }*/
  }
  
  @media (max-width: 991px) {
    .site-dev-tariffs {
      padding-bottom: 50px;
    }
    .site-dev-tariffs__title {
      font-size: 30px;
      line-height: 40px;
    }
    .site-dev-tariffs__title:before {
      margin-bottom: 20px;
    }
    .site-dev-tariffs__desc {
      line-height: 26px;
      margin-bottom: 40px;
    }
  }
  
  /* end site-dev-tariffs */
  /* site-dev-price */
  .site-dev-price {
    padding: 80px 0;
    font-family: Montserrat, "Open Sans", sans-serif;
  }
  
  .site-dev-price__container {
    display: flex;
    justify-content: space-between;
  }
  
  .site-dev-price__title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #191919;
  }
  .site-dev-price__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 23px;
  }
  
  .site-dev-price__desc {
    color: #858585;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  
  .site-dev-price__block {
    max-width: 430px;
    margin-right: 80px;
  }
  
  .site-dev-price-content {
    padding-top: 25px;
    max-width: 780px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .site-dev-price-item__title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #191919;
    background: url(images/marker.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
  }
  
  .site-dev-price-item__desc {
    padding-left: 30px;
    color: #858585;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  
  .site-dev-price-item {
    margin-bottom: 26px;
    width: calc(50% - 20px);
    padding: 0 0 0 15px;
  }
  
  @media (max-width: 1330px) {
    .site-dev-price__container {
      flex-direction: column;
    }
    .site-dev-price__block {
      width: 100%;
      max-width: 600px;
      margin: 0 0 20px;
    }
    .site-dev-price-content {
      width: 100%;
      max-width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 20px;
    }
    .site-dev-price-item {
      padding: 0;
      max-width: 400px;
      width: 100%;
    }
    .site-dev-price__title {
      max-width: 100%;
      width: 100%;
    }
  }
  
  @media (max-width: 991px) {
    .site-dev-price {
      padding: 80px 0 50px;
    }
    .site-dev-price__title {
      font-size: 30px;
      line-height: 40px;
    }
    .site-dev-price__title:before {
      margin-bottom: 20px;
    }
    .site-dev-price-content {
      padding-top: 20px;
      max-width: 100%;
      grid-template-columns: repeat(2, 1fr);
    }
    .site-dev-price__desc {
      line-height: 26px;
    }
    .site-dev-price-item__title {
      margin-bottom: 10px;
      font-size: 20px;
    }
    .site-dev-price-item__desc {
      line-height: 26px;
      max-width: 500px;
    }
    .site-dev-price-item {
      margin-bottom: 16px;
    }
  }
  
  @media (max-width: 650px) {
    .site-dev-price-content {
      display: flex;
      flex-direction: column;
    }
    .site-dev-price-item {
      max-width: 100%;
    }
  }
  
  /* end site-dev-price */
  /* site-dev-works */
  .site-dev-works {
    font-family: Montserrat, "Open Sans", sans-serif;
    background: #181818;
    padding: 80px 0 0;
  }
  
  .site-dev-works__title {
    margin: 0 0 15px;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #ffffff;
  }
  .site-dev-works__title:before {
    background: #616161;
    width: 68px;
    margin-bottom: 23px;
    height: 3px;
    display: block;
    content: "";
  }
  
  .site-dev-works__desc {
    color: #858585;
    margin-bottom: 60px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    max-width: 580px;
  }
  
  .site-dev-works__content {
    display: flex;
    flex-wrap: wrap;
    padding: 0 130px 0 0;
    justify-content: space-between;
  }
  
  .site-dev-list-item-img {
    transition: transform 0.1s ease;
    outline-color: #1fc3b0;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 50px;
  }
  .site-dev-list-item-img img {
    transition: transform 0.1s ease;
    width: 440px;
    height: auto;
    border-radius: 6px;
  }
  .site-dev-list-item-img:hover ~ .site-dev-works-item__link {
    text-decoration: none;
  }
  .site-dev-list-item-img:hover ~ .site-dev-works-item__link span:after {
    transform: scaleX(1);
  }
  
  .site-dev-works-item {
    margin-bottom: 115px;
  }
  
  /*.site-dev-works-item:nth-child(2n-1){
      margin-right: 300px;
  }*/
  .site-dev-works-item__title {
    margin-bottom: 25px;
    color: #ffffff;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
  }
  .site-dev-works-item__title:after {
    width: 40px;
    height: 1px;
    background-color: white;
    content: "";
    display: inline-block;
    margin: 0 0 5px 10px;
  }
  
  .site-dev-works-item__type {
    margin-bottom: 15px;
    color: #ffffff;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    /*line-height: 18px;*/
    line-height: 34px;
  }
  
  .site-dev-works-item__link {
    padding-top: 15px;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    display: block;
    width: 100%;
  }
  .site-dev-works-item__link span {
    color: #ffffff;
    padding-bottom: 5px;
    display: block;
    width: 180px;
    min-width: max-content;
    position: relative;
    transition: color 0.5s ease, border-bottom-color 0.5s ease, width 1s ease;
  }
  .site-dev-works-item__link span:before {
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    position: absolute;
    border-bottom: 1px solid #686868;
  }
  .site-dev-works-item__link span:after {
    display: block;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    content: "";
    position: absolute;
    transform: scaleX(0);
    border-bottom: 1px solid white;
    transition: transform 0.5s ease;
    transform-origin: 0 50%;
  }
  .site-dev-works-item__link:focus,
  .site-dev-works-item__link:hover {
    outline: none;
    text-decoration: none;
  }
  .site-dev-works-item__link:focus span:after,
  .site-dev-works-item__link:hover span:after {
    transform: scaleX(1);
  }
  
  @media (max-width: 1150px) {
    .site-dev-list-item-img {
      margin-bottom: 20px;
    }
    .site-dev-list-item-img img {
      width: 330px;
    }
  }
  
  @media (max-width: 991px) {
    .site-dev-works__title {
      font-size: 30px;
      line-height: 40px;
    }
    .site-dev-works__desc {
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 940px) {
    .site-dev-works__content {
      padding-right: 60px;
    }
  }
  
  @media (max-width: 840px) {
    .site-dev-works {
      padding: 50px 0 0;
    }
    .site-dev-works-item {
      margin-bottom: 60px;
    }
    .site-dev-works__content {
      padding-right: 30px;
    }
  }
  
  @media (max-width: 750px) {
    .site-dev-works-item {
      max-width: 40%;
    }
  }
  
  @media (max-width: 600px) {
    .site-dev-works-item {
      max-width: 100%;
      width: 100%;
    }
    .site-dev-list-item-img img {
      width: 100%;
    }
    .site-dev-works__content {
      padding: 0;
    }
  }
  
  /* end site-dev-works */
  /* site-dev-stages */
  .site-dev-stages {
    padding: 80px 0 38px;
    font-family: Montserrat, "Open Sans", sans-serif;
    background: #fafafa;
  }
  
  .site-dev-stages__container {
    display: flex;
    justify-content: space-between;
  }
  
  .site-dev-stages__title {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #191919;
  }
  .site-dev-stages__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 23px;
  }
  
  .site-dev-stages__desc {
    color: #858585;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  
  .site-dev-stages__block {
    max-width: 430px;
    margin-right: 80px;
  }
  
  .site-dev-stages-content {
    padding-top: 25px;
    max-width: 780px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .site-dev-stages-item {
    margin-bottom: 34px;
  }
  
  .site-dev-stages-item__title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #191919;
  }
  .site-dev-stages-item__title h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
    margin: 0;
  }
  .site-dev-stages-item__title span {
    margin-right: 15px;
    font-weight: bold;
    font-size: 70px;
    line-height: 55px;
    font-style: normal;
    color: #1fc3b0;
  }
  
  .site-dev-stages-item__desc {
    color: #858585;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  
  .site-dev-stages-item {
    margin-bottom: 26px;
    width: calc(50% - 20px);
    padding: 0 0 0 15px;
  }
  
  @media (max-width: 1330px) {
    .site-dev-stages__container {
      flex-direction: column;
    }
    .site-dev-stages__block {
      width: 100%;
      max-width: 600px;
      margin: 0 0 20px;
    }
    .site-dev-stages-content {
      width: 100%;
      max-width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 20px;
    }
    .site-dev-stages-item {
      padding: 0;
      max-width: 400px;
      width: 100%;
    }
    .site-dev-stages__title {
      max-width: 100%;
      width: 100%;
    }
  }
  
  @media (max-width: 991px) {
    .site-dev-stages {
      padding: 50px 0 20px;
    }
    .site-dev-stages__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 20px;
    }
    .site-dev-stages__title:before {
      margin-bottom: 20px;
    }
    .site-dev-stages-content {
      padding-top: 20px;
      max-width: 100%;
      grid-template-columns: repeat(2, 1fr);
    }
    .site-dev-stages__desc {
      line-height: 26px;
    }
    .site-dev-stages-item__title {
      margin-bottom: 10px;
      font-size: 20px;
    }
    .site-dev-stages-item__desc {
      line-height: 26px;
      max-width: 500px;
    }
    .site-dev-stages-item {
      margin-bottom: 24px;
    }
  }
  
  @media (max-width: 650px) {
    .site-dev-stages-content {
      display: flex;
      flex-direction: column;
    }
    .site-dev-stages-item {
      max-width: 100%;
      margin-bottom: 14px;
    }
  }
  
  /* end site-dev-stages */
  /* site-dev-order */
  .site-dev-comment {
    border: 1px solid #dbe0ec;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 24px;
  }
  
  .site-dev-comment:focus {
    /*outline-color:#1FC3B0;*/
    outline: none;
  }
  
  .site-dev-order {
    padding: 80px 0 75px;
    font-family: Montserrat, "Open Sans", sans-serif;
  }
  
  .site-dev-order__title {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #191919;
    max-width: 462px;
  }
  .site-dev-order__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 23px;
  }
  
  .site-dev-order__desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #5c5c5c;
  }
  
  .site-dev-order__block {
    margin-bottom: 40px;
    margin-right: 100px;
    min-width: 460px;
  }
  
  #site-dev-order-calculate {
    max-width: 660px;
    width: 100%;
    margin-right: 0;
  }
  #site-dev-order-calculate .swiper-wrapper {
    margin-bottom: 20px;
  }
  
  .site-dev-order-item__title {
    display: flex;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
  }
  .site-dev-order-item__title span {
    margin-right: 10px;
  }
  
  .site-dev-order-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .site-dev-order-item-content {
    max-width: 660px;
    width: 100%;
  }
  .site-dev-order-item-content label {
    color: #858585;
    display: block;
    margin-bottom: 20px;
    transition: color 0.4s ease;
  }
  .site-dev-order-item-content label:hover,
  .site-dev-order-item-content label:focus {
    color: #191919;
    cursor: pointer;
  }
  .site-dev-order-item-content label:hover span:after,
  .site-dev-order-item-content label:focus span:after {
    display: block;
    content: "";
    opacity: 0.3;
  }
  .site-dev-order-item-content label span:after {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 20px;
    background: #1fc3b0;
    position: absolute;
    top: 8px;
    opacity: 0;
    left: 5px;
    transition: opacity 0.3s ease;
  }
  .site-dev-order-item-content label input {
    display: none;
  }
  .site-dev-order-item-content label input + span {
    display: block;
    position: relative;
    padding-left: 40px;
    min-height: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  .site-dev-order-item-content label input + span:before {
    position: absolute;
    top: 3px;
    left: 0;
    opacity: 1;
    width: 20px;
    height: 20px;
    border: 1px solid #dbe0ec;
    border-radius: 50%;
    content: "";
    display: block;
    margin-right: 20px;
  }
  .site-dev-order-item-content label input:checked + span:after {
    display: block;
    content: "";
    opacity: 1;
  }
  .site-dev-order-item-content-flex {
    display: flex;
    justify-content: space-between;
  }
  .site-dev-order-item-content-flex > * {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .site-dev-order-item-content-flex input {
    margin-bottom: 10px;
    border: none;
    max-width: 100%;
    border-radius: 0;
    border-bottom: 1px solid #dbe0ec;
    transition: border 0.4s ease;
    /*width: calc(50% - 10px);*/
  }
  .site-dev-order-item-content-flex input:focus {
    border-bottom: 1px solid #1fc3b0;
  }
  .site-dev-order-item-content textarea {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #dbe0ec;
    width: 100%;
    transition: border 0.4s ease;
  }
  .site-dev-order-item-content textarea:focus {
    border-bottom: 1px solid #1fc3b0;
  }
  
  .site-dev-order__container .wpcf7 form .wpcf7-response-output {
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    margin-left: 100px;
    margin-top: 20px;
    color: #1fc3b0;
  }
  @media (max-width: 1950px) {
    .site-dev-order__container .wpcf7 form .wpcf7-response-output {
      margin-left: 0;
    }
  }
  .site-dev-order__container {
    display: flex;
    justify-content: space-between;
  }
  
  .site-dev-order-item-pagination {
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #686868;
    margin-left: 30px;
    white-space: nowrap;
  }
  .site-dev-order-item-pagination span {
    color: #191919;
  }
  
  #site-dev-order-next-submit,
  #site-dev-order-next {
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    margin-left: auto;
    display: flex;
    align-items: center;
    width: max-content;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    color: #5c5c5c;
    transition: color 0.5s ease;
  }
  #site-dev-order-next-submit path,
  #site-dev-order-next path {
    transition: fill 0.5s ease;
  }
  
  #site-dev-order-next-submit:hover,
  #site-dev-order-next:hover {
    color: #1fc3b0;
  }
  
  #site-dev-order-next-submit:hover path,
  #site-dev-order-next:hover path {
    fill: #1fc3b0;
  }
  
  #site-dev-order-next-submit span,
  #site-dev-order-next span {
    margin-right: 10px;
    display: inline-block;
  }
  
  #site-dev-order-next-submit {
    display: none;
  }
  
  @media (max-width: 1300px) {
    .site-dev-order__container {
      flex-direction: column;
    }
    #site-dev-order-calculate {
      max-width: 100%;
    }
  }
  
  @media (max-width: 991px) {
    .site-dev-order__container {
      flex-direction: column;
    }
    #site-dev-order-calculate {
      width: 100%;
      max-width: 100%;
    }
    .site-dev-order__title {
      font-size: 30px;
      line-height: 40px;
      max-width: 400px;
      margin: 0 0 20px;
    }
    .site-dev-order__title:before {
      margin-bottom: 20px;
    }
    .site-dev-order__block {
      min-width: unset;
    }
  }
  
  @media (max-width: 650px) {
    .site-dev-order-item-header {
      flex-direction: column-reverse;
      align-items: flex-start;
    }
    .site-dev-order-item-pagination {
      margin: 0 0 30px;
    }
  }
  
  @media (max-width: 450px) {
    .site-dev-order__title {
      max-width: 100%;
    }
  }
  
  /* end site-dev-order */
  /* site-dev-results */
  .site-dev-results {
    font-family: Montserrat, "Open Sans", sans-serif;
    display: flex;
    margin-left: auto;
    width: calc(75% + 330px);
    padding: 80px 0;
    border-radius: 6px 0 0 6px;
    background: #fafafa;
  }
  @media (max-width: 1500px) {
    .site-dev-results {
      width: calc(75% + 255px);
    }
  }
  
  .site-dev-results-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1320px;
    margin-left: calc(25vw - 330px);
  }
  @media (max-width: 1500px) {
    .site-dev-results-container {
      max-width: 1170px;
    }
  }
  
  .site-dev-results__title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #1a1a1a;
    margin: 0 15px 0 0;
    max-width: 465px;
  }
  .site-dev-results__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-results__desc {
    padding: 35px 0 0;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #5c5c5c;
    list-style-image: url("images/marker.svg");
    list-style-position: inside;
  }
  .site-dev-results__desc li {
    margin-bottom: 10px;
  }
  
  @media (max-width: 1500px) {
    .site-dev-results-container {
      flex-direction: column;
    }
  }
  
  @media (max-width: 1400px) {
    .site-dev-results {
      margin: 0;
      width: 100%;
      padding: 80px 15px;
    }
    .site-dev-results-container {
      margin: 0 auto;
    }
    .site-dev-results__desc {
      padding: 40px 0 0;
    }
  }
  
  @media (max-width: 991px) {
    .site-dev-results {
      padding: 50px 15px 35px;
    }
    .site-dev-results__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 40px;
    }
    .site-dev-results__title:before {
      margin-bottom: 20px;
    }
    .site-dev-results__desc {
      margin-bottom: 0;
      padding: 0;
    }
    .site-dev-results__desc li {
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 700px) {
    .site-dev-results__desc li {
      margin-bottom: 30px;
    }
  }
  
  /* end site-dev-results */
  /* site-dev-plus */
  .site-dev-plus {
    font-family: Montserrat, "Open Sans", sans-serif;
    padding-top: 80px;
  }
  
  .site-dev-plus__block {
    margin-bottom: 60px;
  }
  
  .site-dev-plus__title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #1a1a1a;
    margin: 0 0 15px;
    max-width: 555px;
  }
  .site-dev-plus__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-plus__desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #5c5c5c;
    max-width: 515px;
  }
  
  .site-dev-plus-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    max-width: 1244px;
  }
  
  .site-dev-plus-item {
    width: 340px;
  }
  
  .site-dev-plus-item-img {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    height: 50px;
  }
  
  .site-dev-plus-item__title {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
  }
  
  .site-dev-plus-item__desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #848484;
  }
  
  @media (max-width: 1100px) {
    .site-dev-plus__block {
      margin-bottom: 40px;
    }
    .site-dev-plus-content {
      flex-wrap: wrap;
    }
    .site-dev-plus-item {
      width: calc(50% - 45px);
      margin-right: 45px;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 991px) {
    .site-dev-plus__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 40px;
    }
    .site-dev-plus__title:before {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 700px) {
    .site-dev-plus-content {
      flex-direction: column;
    }
    .site-dev-plus-item {
      /*margin: 0 0 40px;*/
      margin: 0 0 30px;
      width: 100%;
      max-width: 500px;
    }
    .site-dev-plus-item-img {
      margin-bottom: 15px;
    }
  }
  
  /* end site-dev-plus */
  /* site-dev-themes */
  .site-dev-themes {
    margin-left: auto;
    width: calc(75% + 330px);
    padding: 105px 0 60px;
    border-radius: 6px 0 0 6px;
    background: #fafafa;
    font-family: Montserrat, "Open Sans", sans-serif;
  }
  
  .site-dev-themes__container {
    width: 100%;
    max-width: 1320px;
    margin-left: calc(25vw - 330px);
  }
  
  .site-dev-themes__title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #191919;
    margin: 0 0 55px;
    max-width: 555px;
  }
  .site-dev-themes__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-themes__content {
    display: flex;
    flex-wrap: wrap;
  }
  
  .site-dev-themes-item {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #191919;
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid #5c5c5c;
    margin: 0 20px 20px 0;
    transition: background 0.5s ease, border 0.5s ease;
  }
  .site-dev-themes-item:focus,
  .site-dev-themes-item:hover {
    outline: none;
    color: #191919;
    text-decoration: none;
    background: #1fc3b0;
    border-color: #1fc3b0;
  }
  
  @media (max-width: 1500px) {
    .site-dev-themes__container {
      margin: 0 auto;
      width: 100%;
      max-width: 1200px;
    }
  }
  
  @media (max-width: 1400px) {
    .site-dev-themes {
      margin-left: 0;
      width: 100%;
      padding: 50px 15px;
    }
  }
  
  @media (max-width: 991px) {
    .site-dev-themes__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 40px;
    }
    .site-dev-themes__title:before {
      margin-bottom: 20px;
    }
  }
  
  /* end site-dev-themes */
  /* site-dev-reviews */
  .site-dev-reviews {
    font-family: Montserrat, "Open Sans", sans-serif;
    background-color: #181818;
    padding: 80px 0;
  }
  
  .site-dev-reviews__title {
    font-size: 48px;
    line-height: 55px;
    color: #ffffff;
    margin: 0 0 15px;
    max-width: 555px;
  }
  .site-dev-reviews__title:before {
    background: #616161;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-reviews__desc {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #d6d6d6;
    margin-bottom: 95px;
  }
  
  .site-dev-trust {
    margin-top: 140px;
  }
  
  .site-dev-trust__title {
    font-size: 48px;
    line-height: 55px;
    color: #ffffff;
    margin: 0 0 60px;
    max-width: 555px;
  }
  .site-dev-trust__title:before {
    background: #616161;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-trust__content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    grid-column-gap: 80px;
    grid-row-gap: 30px;
  }
  
  #site-dev-reviews {
    margin: 0 0 0 auto;
    /*width: calc(50% + 675px);*/
    width: calc(50% + 660px);
  }
  @media (max-width: 1500px) {
    #site-dev-reviews {
      width: calc(50% + 585px);
    }
  }
  
  .site-dev-reviews-item {
    /*padding: 0 15px;*/
    padding: 0 30px 0 0;
    max-width: 780px;
  }
  @media (max-width: 810px) {
    .site-dev-reviews-item {
      padding: 0 15px;
    }
  }
  
  .site-dev-reviews-item-header {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
  }
  
  .site-dev-reviews-item__img {
    margin-right: 20px;
  }
  
  .site-dev-reviews-item__img img {
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
  }
  
  .site-dev-reviews-item__name {
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
  }
  
  .site-dev-reviews-item__post {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #d6d6d6;
  }
  
  .site-dev-reviews-item__body {
    /*font-weight: 600;*/
    font-size: 16px;
    line-height: 26px;
    color: #fafafa;
  }
  
  #site-dev-reviews .swiper-wrapper {
    margin-bottom: 75px;
  }
  
  .site-dev-reviews__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    top: 25px;
  }
  
  .site-dev-reviews-item-prev,
  .site-dev-reviews-item-next {
    background: transparent;
    border: none;
    padding: 10px 0;
  }
  .site-dev-reviews-item-prev path,
  .site-dev-reviews-item-next path {
    transition: fill 0.3s ease;
    fill: #fafafa;
  }
  .site-dev-reviews-item-prev.swiper-button-disabled path,
  .site-dev-reviews-item-next.swiper-button-disabled path {
    fill: #5c5c5c;
  }
  .site-dev-reviews-item-prev:not(.swiper-button-disabled):hover,
  .site-dev-reviews-item-prev:not(.swiper-button-disabled):focus,
  .site-dev-reviews-item-next:not(.swiper-button-disabled):hover,
  .site-dev-reviews-item-next:not(.swiper-button-disabled):focus {
    outline: none;
  }
  .site-dev-reviews-item-prev:not(.swiper-button-disabled):hover path,
  .site-dev-reviews-item-prev:not(.swiper-button-disabled):focus path,
  .site-dev-reviews-item-next:not(.swiper-button-disabled):hover path,
  .site-dev-reviews-item-next:not(.swiper-button-disabled):focus path {
    fill: #1fc3b0;
  }
  
  .site-dev-trust__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .site-dev-trust__logo img {
    max-width: 100%;
    object-fit: contain;
    /*transition: filter .4s ease;*/
    transition: opacity 0.4s ease;
  }
  /*.site-dev-trust__logo img:not(:hover):not(:focus),
  .site-dev-trust__logo img:not(:hover){
    filter: grayscale(100%);
  }*/
  .site-dev-trust__logo img:not(.site-dev-trust__logo-gray) {
    opacity: 0;
    position: absolute;
  }
  .site-dev-trust__logo:hover img:not(.site-dev-trust__logo-gray),
  .site-dev-trust__logo:focus img:not(.site-dev-trust__logo-gray) {
    opacity: 1;
  }
  .site-dev-trust__logo:hover .site-dev-trust__logo-gray {
    opacity: 0;
  }
  .site-dev-trust__logo:focus .site-dev-trust__logo-gray {
    opacity: 0;
  }
  @media (max-width: 1200px) {
    #site-dev-reviews {
      width: calc(100% - 15px);
      margin-left: 15px;
    }
  }
  
  @media (max-width: 991px) {
    #site-dev-reviews .swiper-wrapper {
      margin-bottom: 30px;
    }
    .site-dev-reviews {
      padding: 50px 0;
    }
    .site-dev-reviews__desc {
      margin-bottom: 40px;
    }
    .site-dev-reviews__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 7px;
    }
    .site-dev-reviews__title:before {
      margin-bottom: 20px;
    }
    .site-dev-trust__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 40px;
    }
    .site-dev-trust__title:before {
      margin-bottom: 20px;
    }
    .site-dev-trust {
      margin-top: 80px;
    }
  }
  
  @media (max-width: 900px) {
    .site-dev-reviews-item {
      width: 100%;
      max-width: 100%;
    }
    .site-dev-trust__content {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 750px) {
    .site-dev-trust__content {
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 60px;
    }
  }
  
  @media (max-width: 500px) {
    .site-dev-trust__content {
      grid-template-columns: repeat(2, 1fr);
    }
    .site-dev-reviews__title {
      margin-bottom: 20px;
    }
    .site-dev-reviews__btn {
      display: none;
    }
  }
  
  /* end site-dev-reviews */
  /* site-dev-questions */
  .site-dev-questions {
    padding: 80px 0 0;
    font-family: Montserrat, "Open Sans", sans-serif;
    margin-bottom: 160px;
  }
  
  .site-dev-questions__title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #1a1a1a;
    margin: 0 0 15px;
    max-width: 555px;
  }
  .site-dev-questions__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-questions__desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #848484;
    max-width: 515px;
  }
  
  .site-dev-questions__block {
    margin-bottom: 40px;
  }
  
  .site-dev-collapse-item {
    border-bottom: 2px solid #f2f2f2;
    margin-bottom: 20px;
  }
  
  .site-dev-collapsed {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: transparent;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
    font-family: Montserrat, "Open Sans", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
  }
  .site-dev-collapsed svg {
    transition: transform 0.5s ease;
    transform: rotate(-45deg);
    min-width: 30px;
    margin-left: 20px;
  }
  .site-dev-collapsed svg path {
    transition: fill 0.5s ease;
  }
  .site-dev-collapsed.collapsed svg {
    transform: rotate(0deg);
  }
  .site-dev-collapsed h3 {
    margin: 0;
    font-size: 24px;
    line-height: 27px;
    font-weight: 500;
    color: #000;
    transition: color 0.5s ease;
  }
  .site-dev-collapsed:not(.collapsed) {
    /*color: #1FC3B0;*/
    /*font-weight: bold;*/
  }
  .site-dev-collapsed:not(.collapsed) svg path {
    stroke: #1fc3b0;
  }
  .site-dev-collapsed:hover,
  .site-dev-collapsed:focus,
  .site-dev-collapsed:hover h3,
  .site-dev-collapsed:focus h3 {
    color: #1fc3b0;
    outline: none;
  }
  
  .site-dev-collapse-body {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #848484;
    padding: 5px 0 20px;
  }
  
  @media (max-width: 991px) {
    .site-dev-questions__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 20px;
    }
    .site-dev-questions__title:before {
      margin-bottom: 20px;
    }
    .site-dev-questions__block {
      margin-bottom: 20px;
    }
    .site-dev-collapsed {
      font-size: 20px;
      line-height: 27px;
    }
    .site-dev-questions {
      margin-bottom: 60px;
    }
  }
  
  /* end site-dev-questions */
  /* site-dev-blog */
  .site-dev-blog {
    padding: 0;
    font-family: Montserrat, "Open Sans", sans-serif;
    margin-bottom: 95px;
  }
  
  .site-dev-blog__title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: #1a1a1a;
    margin: 0 0 15px;
    max-width: 555px;
  }
  .site-dev-blog__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-blog__desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #848484;
    max-width: 515px;
  }
  
  .site-dev-blog-container {
    display: flex;
    justify-content: space-between;
  }
  
  .site-dev-blog-list {
    padding: 25px 0 0;
    margin-left: 50px;
    max-width: 515px;
  }
  
  .site-dev-blog-item {
    margin-bottom: 50px;
  }
  
  .site-dev-blog-item__img {
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    /*filter: invert(1);*/
  }
  
  .site-dev-blog-item__img-container {
    display: block;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0.8;
    transition: height 0.5s ease-out, width 0.5s ease-out;
    z-index: 1;
    mix-blend-mode: exclusion;
  }
  .site-dev-blog-item__img-container.active {
    display: block;
    height: 150px;
    width: 150px;
  }
  
  .site-dev-blog-item__title {
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #191919;
    display: block;
    transition: 0.5s ease;
  }
  .site-dev-blog-item__title:hover {
    outline: none;
    /*color: #1FC3B0;*/
    text-decoration: none;
  }
  .site-dev-blog-item__title:hover:before {
    width: 100%;
  }
  
  .site-dev-blog-item__title-text {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #191919;
    display: inline;
  }
  
  .site-dev-blog-item__date {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #848484;
    z-index: 1;
    position: relative;
  }
  
  @media (max-width: 991px) {
    /*.site-dev-blog-container{
          flex-direction: column;
      }*/
    .site-dev-blog {
      margin-bottom: 80px;
    }
    .site-dev-blog-list {
      max-width: 360px;
    }
    .site-dev-blog__title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 20px;
    }
    .site-dev-blog__title:before {
      margin-bottom: 20px;
    }
    .site-dev-blog__block {
      max-width: 330px;
    }
    .site-dev-blog-item {
      margin-bottom: 30px;
    }
    .site-dev-blog-item__title {
      margin-bottom: 150x;
      font-size: 20px;
      line-height: 26px;
    }
  }
  
  @media (max-width: 560px) {
    .site-dev-blog-container {
      flex-direction: column;
    }
    .site-dev-blog__block {
      max-width: 100%;
      margin-bottom: 40px;
    }
    .site-dev-blog-list {
      margin: 0;
      padding: 0;
    }
  }
  
  /* end site-dev-blog */
  /* site-dev-project */
  .site-dev-project {
    padding: 80px 0 100px;
    background: #181818;
    font-family: Montserrat, "Open Sans", sans-serif;
  }
  .site-dev-project .wpcf7 .wpcf7-response-output {
    border: none;
    background: transparent;
    color: #1fc3b0;
    margin: 0;
    padding: 0;
  }
  .site-dev-project .wpcf7-form-control-wrap.msg {
    width: 100%;
    margin-bottom: 0;
  }
  .site-dev-project .wpcf7-form-control-wrap {
    display: block;
    width: calc(50% - 30px);
    margin-bottom: 45px;
  }
  .site-dev-project .wpcf7-form-control-wrap input:not([type="submit"]) {
    width: 100%;
    margin-bottom: 20px;
  }
  .site-dev-budget .wpcf7-form-control-wrap {
    display: inline-block;
  }
  .site-dev-project__title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 55px;
    color: white;
    margin: 0 0 15px;
    max-width: 555px;
  }
  .site-dev-project__title:before {
    background: #5c5c5c;
    display: block;
    content: "";
    width: 68px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .site-dev-project__desc {
    color: #848484;
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  
  .site-dev-project-form {
    max-width: 780px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-dev-project-form textarea {
    border-radius: 0;
  }
  .site-dev-project-form input {
    border-radius: 0;
  }
  .site-dev-project-form input:not([type="submit"]) {
    color: white;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    padding: 20px 0;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 65px;
    transition: border 0.5s ease;
    width: calc(50% - 30px);
  }
  .site-dev-project-form input:not([type="submit"])::placeholder {
    color: #939393;
  }
  .site-dev-project-form input:not([type="submit"]):focus {
    outline: none;
    border-bottom: 1px solid #1fc3b0;
  }
  .site-dev-project-form textarea {
    color: white;
    /*margin: 55px 0 23px;*/
    margin: 0 0 23px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
    font-size: 14px;
    line-height: 17px;
    padding: 0;
  }
  .site-dev-project-form textarea::placeholder {
    color: #939393;
  }
  .site-dev-project-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #1fc3b0;
    transition: border 0.5s ease;
  }
  
  .site-dev-project-range-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .site-dev-project-range-container .range-bar {
    width: calc(50% - 30px);
    background-color: #383838;
    height: 3px;
    margin-top: 9px;
  }
  
  .site-dev-project-range-container .range-bar .range-handle {
    transition: background-color 0.2s ease;
  }
  .site-dev-project-range-container .range-bar.unselectable .range-handle {
    background-color: #1fc3b0;
  }
  .site-dev-project-range-container .range-bar .range-quantity {
    transition: background-color 0.2s ease;
  }
  .site-dev-project-range-container .range-bar.unselectable .range-quantity {
    background-color: #1fc3b0;
  }
  
  .site-dev-project-range-container .range-handle {
    height: 23px;
    width: 23px;
    cursor: pointer;
    box-shadow: none;
    top: -9px;
  }
  .site-dev-project-range-container .range-max,
  .site-dev-project-range-container .range-min {
    display: none;
  }
  .site-dev-project-range-container .range-quantity {
    background-color: white;
  }
  
  .site-dev-budget {
    width: calc(50% - 30px);
    font-size: 14px;
    line-height: 17px;
    color: #939393;
  }
  input:not([type="submit"]).site-dev-budget-input {
    /*width: calc(50% - 30px);*/
    font-size: 21px;
    /*color: #939393;*/
    color: white;
    padding: 0;
    border: none;
    border-radius: 0;
    margin-left: 10px;
  }
  input:not([type="submit"]):focus.site-dev-budget-input {
    border-bottom: 1px solid white;
  }
  .site-dev-budget span {
    font-size: 21px;
    color: white;
    width: unset;
    white-space: nowrap;
  }
  
  .dev-site-privacy {
    margin-bottom: 40px;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #939393;
  }
  .dev-site-privacy a {
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
    color: #939393;
  }
  .dev-site-privacy a:hover,
  .dev-site-privacy a:focus {
    color: #1fc3b0;
    text-decoration: underline;
  }
  .site-dev-project-form p {
    width: 100%;
    margin: 0;
  }
  .site-dev-project-form input.dev-site-submit {
    display: block;
    margin-top: 40px;
    border: 1px solid #5c5c5c;
    box-sizing: border-box;
    border-radius: 50px;
    padding: 16px 65px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: transparent;
    transition: background-color 0.5s ease, border 0.5s ease;
  }
  .site-dev-project-form input.dev-site-submit:focus,
  .site-dev-project-form input.dev-site-submit:hover {
    -webkit-appearance: none;
    display: block !important;
    margin-top: 40px !important;
    box-sizing: border-box !important;
    border-radius: 50px !important;
    padding: 16px 65px !important;
    color: #ffffff !important;
    letter-spacing: 1px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
  
    background: #1fc4b0 !important;
    border: 1px solid #1fc4b0 !important;
  }
  
  @media (max-width: 991px) {
    .site-dev-project__title {
      font-size: 30px;
      line-height: 40px;
      color: white;
      margin: 0 0 20px;
    }
    .site-dev-project__title:before {
      margin-bottom: 20px;
    }
    .site-dev-project__desc {
      margin-bottom: 20px;
      max-width: 330px;
    }
    .site-dev-project {
      padding: 50px 0;
    }
  }
  
  @media (max-width: 768px) {
    input:not([type="submit"]).site-dev-budget-input {
      margin-bottom: 0;
    }
    .range-bar {
      width: 100%;
    }
    .site-dev-project-range-container {
      margin-bottom: 30px;
      flex-direction: column-reverse;
    }
    .site-dev-project-range-container .range-bar {
      width: 100%;
    }
    .site-dev-budget {
      margin-bottom: 30px;
      width: 100%;
    }
    .site-dev-project-form {
      margin-top: 50px;
    }
  }
  
  @media (max-width: 567px) {
    .site-dev-project .wpcf7-form-control-wrap {
      margin-bottom: 10px;
      width: 100%;
    }
    .site-dev-project-form input:not([type="submit"]) {
      width: 100%;
      margin-bottom: 30px;
    }
    input:not([type="submit"]).site-dev-budget-input {
      width: calc(50% - 30px);
    }
  }
  
  /* end site-dev-project */
  /* img-parallax */
  .img-parallax-container {
    /*min-height: 730px;*/
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .img-parallax {
    width: 100vmax;
    z-index: -1;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    pointer-events: none;
  }
  
  /* end img-parallax */
  
  /* site-dev-output  */
  .site-dev-output {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .site-dev-output-title {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
    margin-top: auto;
  }
  .site-dev-output-desc {
    color: #9d9d9d;
    font-size: 18px;
    line-height: 24px;
    margin-top: 0;
  }
  
  .site-dev-success {
    width: 150px;
    height: 150px;
    display: block;
    margin: 40px auto 0;
  }
  
  .site-dev-success .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
  .site-dev-success .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
  }
  .site-dev-success .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
  }
  .site-dev-success .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
  }
  
  @keyframes dash {
    0% {
      stroke-dashoffset: 1000;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  @keyframes dash-check {
    0% {
      stroke-dashoffset: -100;
    }
    100% {
      stroke-dashoffset: 900;
    }
  }
  
  .swiper-button-prev {
    background: transparent;
    border: none;
    width: max-content;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    color: #5c5c5c;
    transition: color 0.5s ease;
    display: none;
  }
  .site-dev-order-buttons {
    display: flex;
    justify-content: space-between;
  }
  /* end site-dev-output */
  
  .c-footer {
    margin-top: 0;
  }