@font-face {
    font-family: 'Roboto';
    src: local('Roboto Thin'), local('Roboto-Thin'), url('Robotothin.woff2') format('woff2'), url('Robotothin.woff') format('woff'), url('Robotothin.ttf') format('truetype');
    font-weight: 100;
   font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Light'), local('Roboto-Light'), url('Robotolight.woff2') format('woff2'), url('Robotolight.woff') format('woff'), url('Robotolight.ttf') format('truetype');
    font-weight: 300;
   font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'), url('Roboto.woff2') format('woff2'), url('Roboto.woff') format('woff'), url('Roboto.ttf') format('truetype');
    font-weight: 400;
   font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'), url('Robotomedium.woff2') format('woff2'), url('Robotomedium.woff') format('woff'), url('Robotomedium.ttf') format('truetype');
    font-weight: 500;
   font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold'), local('Roboto-Bold'), url('Robotobold.woff2') format('woff2'), url('Robotobold.woff') format('woff'), url('Robotobold.ttf') format('truetype');
    font-weight: 700;
   font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Black'), local('Roboto-Black'), url('Robotoblack.woff2') format('woff2'), url('Robotoblack.woff') format('woff'), url('Robotoblack.ttf') format('truetype');
    font-weight: 900;
   font-style: normal; font-display: swap;
}


html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}


.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.flex-fill {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.justify-content-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.align-items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align-content-start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.align-content-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.align-content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.align-content-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.align-content-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.align-self-auto {
  -ms-flex-item-align: auto;
      align-self: auto;
}

.align-self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.align-self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align-self-center {
  -ms-flex-item-align: center;
      align-self: center;
}

.align-self-baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.m-0 {
  margin: 0;
}

.mt-0,
.my-0 {
  margin-top: 0;
}

.mr-0,
.mx-0 {
  margin-right: 0;
}

.mb-0,
.my-0 {
  margin-bottom: 0;
}

.ml-0,
.mx-0 {
  margin-left: 0;
}

.m-1 {
  margin: 0.25rem;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.mt-3,
.my-3 {
  margin-top: 1rem;
}

.mr-3,
.mx-3 {
  margin-right: 1rem;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem;
}

.ml-3,
.mx-3 {
  margin-left: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.mt-5,
.my-5 {
  margin-top: 3rem;
}

.mr-5,
.mx-5 {
  margin-right: 3rem;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem;
}

.ml-5,
.mx-5 {
  margin-left: 3rem;
}

.p-0 {
  padding: 0;
}

.pt-0,
.py-0 {
  padding-top: 0;
}

.pr-0,
.px-0 {
  padding-right: 0;
}

.pb-0,
.py-0 {
  padding-bottom: 0;
}

.pl-0,
.px-0 {
  padding-left: 0;
}

.p-1 {
  padding: 0.25rem;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.pt-3,
.py-3 {
  padding-top: 1rem;
}

.pr-3,
.px-3 {
  padding-right: 1rem;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem;
}

.pl-3,
.px-3 {
  padding-left: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.pt-5,
.py-5 {
  padding-top: 3rem;
}

.pr-5,
.px-5 {
  padding-right: 3rem;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem;
}

.pl-5,
.px-5 {
  padding-left: 3rem;
}

.m-auto {
  margin: auto;
}

.mt-auto,
.my-auto {
  margin-top: auto;
}

.mr-auto,
.mx-auto {
  margin-right: auto;
}

.mb-auto,
.my-auto {
  margin-bottom: auto;
}

.ml-auto,
.mx-auto {
  margin-left: auto;
}

.text-justify {
  text-align: justify;
}

.text-wrap {
  white-space: normal;
}

.text-nowrap {
  white-space: nowrap;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-white {
  color: #fff;
}

.text-dark {
  color: black;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416;
}


.text-muted {
  color: #6c757d;
}

.text-decoration-none {
  text-decoration: none;
}

.text-break {
  word-break: break-word;
  overflow-wrap: break-word;
}

.w-100 {
  width: 100%;
}

.w-750 {
    max-width: 750px;
}

.w-auto {
  width: auto;
}

.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}
/* Slider */

.slides .slick-slide img {
    max-width: 250px;
}

.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');*/

html {
    font-size: 16px;
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
    background-color: #edf0f5;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

* {
    box-sizing: border-box;
    outline: none;
}

h1, h2 {
    font-size: 36px;
}

p {
    margin: 10px 0;
}

ul, ol {
    padding-left: 20px;
}

#header_main {
    z-index: 9;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 100px;
}

.mini-nav {

    transition: background-color 0.1s ease-in-out 0s;
    -webkit-transition: background-color 0.1s ease-in-out 0s;
    position: fixed !important;
    left: 0;
    right: 0;
    top: 0;
    z-index: 200;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    padding: 0 100px;
    background-color: #edf0f5;
}

.wrapper {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1900px;
    height: 100%;
    z-index: 2;
}

.first-screen {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%), #EDF0F5; /*#EDF0F5*/
    max-height: 650px;
    min-height: 500px;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 100px;
}

.inner-first-screen {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 25%), url('../../templates/images/sky.png') no-repeat, #EDF0F5;
    background-attachment: fixed;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    padding-top: 100px;
}

.project-first-screen {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 25%), url('../../templates/images/sky.png') no-repeat, #EDF0F5;
    background-attachment: fixed;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.f-white {
    color: white;
}

.f-14 {
    font-size: 0.875rem;
}

.f-18 {
    font-size: 1.125rem;
}

.f-36 {
    font-size: 2.25rem;
}

.f-bold {
    font-weight: bold;
}

.f-blue {
    color: #22B4EE;
}

.button-main {
    background-color: #2bbaf0;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px 0;
    display: inline-block;
}

.button-main:hover {
    opacity: 0.8;
}

.button-blue {
    background: linear-gradient(270deg, #22B4EE 0%, #71EAFD 100%), #22B4EE;
    border-radius: 30px;
    border: none;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    display: block;
}

.button-blue:hover {
    background: linear-gradient(270deg, #71EAFD 0%, #22B4EE 100%), #71EAFD;
}


.button-blue:disabled,
.button-blue:disabled:hover
{
    background: #22B4EE;
    opacity: 0.8;
    cursor: not-allowed;
}

.button-bluebord {
    border: 1px solid #22B4EE;
    background-color: white;
    border-radius: 30px;
    padding: 15px 20px;
    color: #22B4EE;
    font-weight: bold;
    cursor: pointer;
    transition: .3s linear;
}

.button-bluebord:hover {
    color: white;
    background-color: #22B4EE;
}

.link-blue {
    color: #22B4EE;
    text-decoration: none;
}

.link-blue:hover {
    text-decoration: none;
}

.link-black {
    color: black;
    text-decoration: none;
}

.heaven {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    align-items: flex-start;
    display: flex;
    justify-content: space-around;
}

.menu-item {
    margin-right: 30px;
    margin-left: 10px;
    color: black;
    border-bottom: 1px dotted;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    box-sizing: border-box;
}

.main-menu div {
    margin-left: -10px;
    padding-left: 10px;
}

.menuinner .first .up {
    margin-left: 0;
}

#main {
    margin-top: 110px;
}

.heaven img:nth-child(1) {
    margin-top: 20%;
}

.heaven img:nth-child(2) {
    margin-top: 10%;
    margin-left: -15%;
}

.heaven img:nth-child(3) {
    width: 10%;
    margin-right: -15%;
}

.heaven img:nth-child(4) {
    margin-top: 25%;
}

.heaven img:nth-child(5) {
    margin-top: 15%;
    margin-left: -10%;
}

.heaven img:nth-child(6) {
    margin-top: 5%;
    margin-left: -5px;
}

.rocket-img {
    z-index: 9;
    position: relative;
    height: 260px;
    width: 125px;
}


.smoke {
    height: 400px;
    width: 100px;
    position: absolute;
    bottom: -50px;
    margin: 0 auto;
    z-index: 1;
    right: 0;
    left: 0;

}

.track {
    height: 50vh;
    width: 100px;
    position: absolute;
    bottom: 0;
    top: 240px;
    margin: 0 auto;
    z-index: 1;
    right: 0;
    left: 0;
}

.track:before {
    content: '';
    height: 50vh;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    z-index: 1;
    right: 0;
    left: 0;
    border-bottom: 50vh solid white;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    width: 80px;
}

.dev-block {
    background-position-x: center;
    background-position-y: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

h1 span, h2 span {
    color: #22B4EE;
}

.smoke-block {
    position: absolute;
    bottom: 0;
    display: flex;
    left: -35px;
}

.smoke div {
    width: 160px;
    height: 150px;
    position: absolute;
    border-radius: 100%;
    background-color: white;
}


.smoke div:before {
    content: '';
    width: 160px;
    height: 150px;
    position: absolute;
    border-radius: 100%;
    background-color: white;
}

.smoke span {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 100%;
    background-color: white;
    z-index: 9;
    top: 50%;
}

#main, #head {
    position: relative;
}

#head, .logotype {
    z-index: 9;
}

#main {
    z-index: 3;
}

.rocket-block {
    height: 100%;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.rocket {
    transform: scale(0.85);
}

.astronaut-block {
    position: absolute;
    bottom: -15px;
    width: 100%;
}

.serv-list {
    max-width: 1000px;
}

.serv-link {
    color: #F16449;
    text-decoration: none;
    display: flex;
}

.active .serv-link:before {
    content: url('../../templates/images/lilarrow.png');
    position: absolute;
    margin-left: -25px;
}

.serv-link:hover:before {
    content: url('../../templates/images/lilarrow.png');
    position: absolute;
    margin-left: -25px;
}

.link-main {
    color: #F16449;
    text-decoration: none;
    font-weight: 600;
}

.link-main:hover {
    text-decoration: underline;
}

strong {
    font-size: 18px;
    margin-top: 10px;
}

.cause-block p {
    font-size: 14px;
}

.cause {
    padding-top: 26px;
    width: 120px;
    margin-left: -140px;
}

.cause-item {
    max-width: 250px;
}

.bg-white {
    background-color: white;
}

.main-form input {
    background: white;
    border: 1px solid #22B4EE;
    border-radius: 30px;
    height: 46px;
    padding: 0 20px;
}

.quest-form input {
    border: 1px solid #949494;
    border-radius: 20px;
    padding: 15px;
}

.type-item {
    border: 1px solid #22B4EE;
    border-radius: 10px;
    width: 170px;
    height: 220px;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
    color: black;
    margin: 0 15px 20px 0;
}

.type-item span {
    font-weight: bold;
    margin-top: 30px;
    height: 50px;
}

.type-item p {
    margin-top: 0;
}

.type-item:hover {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.order-block {
    background: url("../../templates/images/sky.png");
    background-attachment: fixed;
}


.space-block {
    background: url("../../templates/images/sky.png");
    background-position: bottom;
}



.steps-block {
    min-height: 580px;
    background-repeat: no-repeat;
    background-position: right;
    background-color: white;
    position: relative;
}

.linear-block {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.tabs {
    max-width: 1000px;
}

.tabs-caption {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin: -1px 0 0 -1px;
}

.tabs-caption li:last-child:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: -2px;
    z-index: -1;
    height: 5px;
    background: #7DCA86;
}

.tabs-caption:after {
    content: '';
    display: table;
    clear: both;
}

.tabs-caption li {
    padding: 15px 0;
    margin: 1px 0 0 1px;
    color: #22B4EE;
    position: relative;
    border-width: 2px 2px 0;
    border-radius: 5px 5px 0 0;
}

.tabs-caption li:not(.active) {
    cursor: pointer;
}

.tabs-caption li:not(.active):hover {
    color: black;
}

.tabs-caption .active {
    color: #000;
    border-color: #22B4EE;
}

.tabs-caption .active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: #FFF;
}

.tabs-content {
    display: none;
    max-width: 500px;
}

.tabs-content.active {
    display: block;
}

.vertical .tabs-caption {
    float: left;
    display: block;
    max-width: 340px;
    width: 100%;
}

.vertical .tabs-caption li:last-child:before {
    display: none;
}

.vertical .tabs-caption .active:after {
    left: auto;
    top: 0;
    right: -2px;
    bottom: 0;
    width: 2px;
    height: auto;
}

.vertical .tabs-content {
    overflow: hidden;
}

.accordion-container {
    position: relative;
    max-width: 750px;
    height: auto;
}

.faq, .accord {
    position: relative;
    width: 100%;
    height: auto;
}

.faq.active, .accord.active{
    background-color: white;
    border-radius: 20px;
}

.question {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.answer, .acinner {
    position: relative;
    width: 100%;
    display: none;
    padding: 0 15px 15px 45px;
    margin: 0;
}

.quest-block {
    background: url("../../templates/images/planet.png") no-repeat;
    background-size: cover;
    background-position-x: left;
    background-position-y: bottom;
    background-attachment: fixed;
}


.quest {
    max-width: 600px;
    border-radius: 20px;
    bottom: 0;
}


.sign {
    color: white;
    background-color: #22B4EE;
    font-weight: normal;
    min-width: 20px;
    font-size: 16px !important;
    text-align: center;
    margin-right: 10px;
}

.ico-plus:after {
    content: '+';
}

.ico-minus:after {
    content: '-';
}

.slider-block h2 {
    display: inline-block;
    margin-bottom: 15px;
}

.slider {
    background: #0000000d;
    height: 220px;
}

.slides {
    padding-bottom: 30px;
}

.col-2 {
    -webkit-box-flex: 0;
    max-width: 16.6667%;
    flex: 0 0 16.6667%;
}

.container {
    max-width: 1270px;
}

.text {
    max-width: 550px;
}

.sup-text {
    max-width: 750px;
}

.info-item {
    max-width: 350px;
}

.br-20 {
    border-radius: 20px;
}

.spinner {
    transition: all .3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #22B4EE;
}

.horizontal {
    transition: all .3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 5px
}

.diagonal.part-1 {
    position: relative;
    transition: all .3s;
    box-sizing: border-box;
    float: left
}

.diagonal.part-2 {
    transition: all .3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 5px
}

.open .horizontal {
    transition: all .3s;
    box-sizing: border-box;
    opacity: 0
}

.open .diagonal.part-1 {
    transition: all .3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px
}

.open .diagonal.part-2 {
    transition: all .3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px
}

.menu-toggle {
    width: 40px;
    height: 30px;
    padding: 6px 7px 7px;
    border-radius: 6px;
    z-index: 10;
}

.side-item:first-of-type {
    max-width: 150px;
    position: absolute;
    margin-left: -150px;
    left: 0;
}

.slidenav {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.slidenav:hover {
    filter: drop-shadow(1px 2px 4px lightgrey);
}

.prv {
    left: 25px;
}

.nxt {
    right: 0;
    top: 0;
}

.modal-fade {
    display: none;
    position: absolute;
}

.modal-fade:before {
    content: '';
    background: #00000070;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 9999;
}

.form-block {
    background-image: url("../../templates/images/cloudsbg2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
    border: 1px solid #FFFFFF;
    background-position-y: 50px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.modal {
    position: fixed;
    right: 0;
    left: 0;
    top: 15%;
    display: block;
    padding: 3rem 3rem 2rem;
    width: 450px;
    border-radius: 30px;
    margin: auto;
    z-index: 99999;
    opacity: 1;
    max-width: 100%;
    overflow-y: auto;
    max-height: 100vh;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #22B4EE;
    font-weight: 300;
    text-decoration: none;
}

.modal-form {
    margin-top: 1rem;
}

.form-block input {
    background: #ffffffa3;
    border: 1px solid lightgrey;
    border-radius: 30px;
    height: 46px;
    padding: 0 20px;
}

textarea {
    border-radius: 20px;
    padding: 20px;
    border: 1px solid lightgrey;
    background: #ffffffa3;
}

textarea::placeholder, input::placeholder {
    font-family: 'Roboto', sans-serif;
    color: #949494;
}

#jGrowl {
    display: none !important;
}

.alert {
    display: inline-block;
    color: white;
    position: absolute;
    border-radius: 30px;
    border: none;
    padding: 15px;
    margin: auto;
    font-size: 12px;
    max-width: 210px;
    width: 100%;
    text-align: center;
}

.alert-success {
    background: #1fac30;

}

.alert-danger {
    background: #ae3434;
}

span.error {
    font-size: 10px !important;
    padding-top: 10px;
    padding-left: 10px;
    text-align: center;
    width: 100%;
}

.element-item {
    width: 33%;
    text-decoration: none;
}

#blog_one .element-item p {
    padding: 20px;
    display: block;
    margin-right: 10px;
    background: aliceblue;

    color: black;
    border-radius: 50px;
}

.case-item {

    margin: 10px;
}

.case-row {
    margin: 0 -10px;
}

.case-row .parent > a {
    font-size: 28px;
    color: black;
    text-decoration: none;
}

.case-item:hover .case-info {
    display: flex;
}


/* Common style */
.cards figure {
    position: relative;
    overflow: hidden;
    max-height: 350px;
    background: #3085a3;
    cursor: pointer;
    border-radius: 10px;
}

.cards figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.cards figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cards figure figcaption::before,
.cards figure figcaption::after {
    pointer-events: none;
}

.cards figure figcaption,
.cards figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    display: flex;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.cards figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.cards figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.cards figure h2 span {
    font-weight: 800;
}

.cards figure h2,
.cards figure p {
    margin: 0;
}

.cards figure p {
    letter-spacing: 1px;
    font-size: 18px;
    color: white;
}

figure.effect-roxy {
    background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
    background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
}

figure.effect-roxy img {
    max-width: none;
    /*
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-30px,0,0);
    transform: translate3d(-30px,0,0);

     */
}

figure.effect-roxy figcaption::before {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border: 1px solid #fff;
    content: '';
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.35s, transform 0.35s;;
    /*  transform: translate3d(0,-20px,0);*/
    background: #20424f5e;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
}

figure.effect-roxy figcaption {
    padding: 3em;
    text-align: left;
}

figure.effect-roxy h2 {
    padding: 30% 0 10px 0;
}


figure.effect-roxy p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

figure.effect-roxy:hover img {
    opacity: 0.7;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.effect-roxy:hover figcaption::before,
figure.effect-roxy:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.tabs .tab {
    background: #2cbaf0;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.tabs .tab.active {
    background: #ed90dc;
}

.tabs .tab:hover {
    opacity: 0.8;
}


.button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 7px;
    border: none;
    background: #2cbaf0;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin: 10px;
}

.button:hover {
    background-color: #8CF;
}

.button:active,
.button.is-checked {
    background: #598cd6;
}

.button.is-checked {
    color: white;
}

/* ---- button-group ---- */

.button-group {
    width: 15%;
    display: inline-flex;
    flex-direction: column;
    position: fixed;
}

.button-group:after {
    content: '';
    display: block;
    clear: both;
}

.button-group .button {
    float: left;
}


/* clear fix */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

.grid {
    width: 80%;
    float: right;
}

.project-block img {
    border-radius: 10px;
}

#sup_one, #con_one {
    max-height: 650px !important;
}

.row3-item {
    width: calc(33% - 20px);
    margin: 20px 20px 20px 0;
}

ul.main-list {
    list-style: none;
    margin: 0;
}

ul.main-list li {
    padding-bottom: 15px;
}

.tariff-item-first {
    min-height: 70px;
}

.tariff-item {
    flex-grow: 1;
}

.tariff-item.first div {
    text-align: left !important;
    justify-content: flex-start !important;
}

.mark.plus:before {
    content: '+';
    padding: 0 5px;
    color: white;
    display: inline-block;
    border-radius: 100%;
    background-color: #0F9047;
    width: 20px;
    height: 20px;
    font-size: 16px;
}

.mark.minus:before {
    content: '\2013';
    padding: 1px 4px;
    color: white;
    display: inline-block;
    border-radius: 100%;
    background-color: #F16449;
    width: 20px;
    height: 20px;
    font-size: 16px;
}

.tariff-caption {
    font-size: 14px;
}

.col1 {
    max-width: 240px;
}

.tariff-item.first {
    font-size: 14px;
}

.tariff-item > div {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    margin: 1px;
    text-align: center;
    min-height: 50px;

}

.tariff-item-first {
    display: flex;
    flex-direction: column;
}

.form-line input {
    background: #FFFFFF;
    border: 1px solid #949494;
    border-radius: 10px;
    padding: 15px 20px;
    width: 100%;
}

.form-line input.error {
    border: 1px solid darkred;
}

.form-line .form-group {
    margin-right: 20px;
    margin-bottom: 20px;
}

.mini-nav .logotype {
    flex-direction: row;
    align-items: center;
    max-width: unset;
    flex: unset;
    position: relative;
}

.icon-block b {
    color: #22B4EE;
}

.main-menu .active a {
    color: #22B4EE;
    border-bottom: none;
}

.numlist {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
}

.numlist div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
}

.numlist span {
    color: #22B4EE;
    font-weight: 700;
    font-size: 24px;
    background: #FFFFFF;
    border: 2px solid #22B4EE;
    border-radius: 20px;
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numlist p{
    max-width: 250px;
    padding:  0 10px;
}

.seoprice-block {
    justify-content: space-between;
}

.seoprice-block .seoprice-item  {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.row3 {
    flex-wrap: wrap;
}

.iconlist-item p {
    max-width: 230px;
}

.mini-nav .logotel {
    position: absolute;
    left: 105%;
    white-space: nowrap;
}

.nowrap {
    flex-wrap: nowrap !important;
}

.cause-icon {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 14px;
}

.cause-icon span {
    padding-top: 10px;
}

.arr:after {
    position: absolute;
    top: 0;
    font-family: monospace;
    color: white;
    font-size: 30px;
    z-index: 3;
    padding: 10px;
}

.trf-nxt:after {
    content: "\203A";
    right: 0;
    padding: 10px 5px 10px 10px;
    background: #00000017;
    border-radius: 30px 0 0 30px;
}

.trf-prv:after {
    content: "\2039";
    left: 0;
    padding: 10px 10px 10px 5px;
    background: #00000017;
    border-radius: 0 30px 30px 0;
}

.tariff-block {
    width: 100%;
}

.info-item {
    padding-bottom: 20px;
    display: flex;
}

.inform-item {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}

.inform-item svg {
    position: relative;
    margin-right: 6px;
}

.contact-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.map {
    width: 60%;
    background-image: url("../../templates/images/map.jpg");
    background-position: center;
    background-size: cover;
}

.promo-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.promo-item {
    max-width: 270px;
    text-align: center;
}

.promo-link {
    font-size: 20px;
}

input[name="message-key"], input[name="surname"],
.lastname
{
    display: block;
    width: 2px;
    height: 3px;
    margin-bottom: -3px;
    opacity: 0;
    padding: 0;
}

.cat-menu .menu-item {
    margin-left: 0;
}

.cat-menu {
    margin-top: 20px;
    display: flex;
}

.cat-menu .active .menu-item {
    margin-left: 0;
    color: #22B4EE;
}

.cat-text {
    max-width: 770px;
    min-height: 100px;
}

.cat-inner {
    display: flex;
    flex-direction: column;
}



.main-slider {
    display: none;
}

.main-slider.slick-initialized {
    display: block;
}

.slides .slick-slide {
    height: 250px;
}

.slides .slick-slide .imgwrap {
    width: 100%;
    height: 100%;
    background-size: cover;
    display: block;
}

.dropdown:hover .dropmenu {
    display: block;
}

input[name="phone"]::placeholder {
    color: #a92323;
}
/*
input[name="phone"] {
    border: 1px solid #a92323;
}
*/
input.novalid {
    border: 2px solid #c90b0b;
}

input.valid {
    border: 2px solid green;
}

.smoke div:before {
    animation: rotation 2s infinite linear;
}


@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(-359deg)
    }
}


.rocket{
    display: block;
    position: absolute;
    width: 125px;
    height: 100%;
    /*
    -webkit-animation: x 1s;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-delay: 0.5s;*/
    z-index: 2;
}
/*
@keyframes x {
    to {
        top: 100px;
    }
    from {
        top: 70%;
    }
}
/*
.astronaut {
    display: block;
    position: absolute;
    width: 125px;
    -webkit-animation: astro 1s;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-delay: 0.5s;
    z-index: 2;
    line-height: 0;
}

@keyframes astro {
    to {
        bottom: 0;
    }
    from {
        bottom: -500px;
    }
}
*/
.heaven img:nth-child(1) {
    animation: cloud 20s infinite linear;
}

.heaven img:nth-child(2) {
    animation: cloud 13s infinite linear;
}

.heaven img:nth-child(3) {
    animation: cloud 22s infinite linear;
}

.heaven img:nth-child(4) {
    animation: cloud 17s infinite linear;
}

.heaven img:nth-child(5) {
    animation: cloud 25s infinite linear;
}

.heaven img:nth-child(6) {
    animation: cloud 10s infinite linear;
}

@keyframes cloud {
    from {
        transform: translateY(-50vh);
    }
    to {
        transform: translateY(100vh);
    }
}


@keyframes cloud3 {
    0% {
        transform: translateY(15%);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes cloud4 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes cloud5 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes cloud6 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}
/*
.rocket-img:hover {
    animation: rocks 0.1s infinite linear;
    animation-iteration-count: 2;
}

.rocket-img {
    animation: rock 0.1s linear;
    animation-iteration-count: 3;
}

 */


@keyframes rock {
    0% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(5px);
    }
}


@keyframes rocks {
    0% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(5px);
    }
}



.smoke-block img {
    animation: smok 2s linear;
}

@keyframes smok {
    0% {
        transform: translateY(100%);
        visibility: visible
    }
    100% {
        transform: translateY(0)
    }
}

.smoke div:nth-child(1) {
    transform: translateY(220%) translateX(-200%) rotate(-360deg);
}

.smoke div:nth-child(2) {
    transform: translateY(190%) translateX(-120%) rotate(-360deg);
}

.smoke div:nth-child(3) {
    transform: translateY(95%) translateX(-45%) rotate(-50deg);
}

.smoke div:nth-child(4) {
    transform: translateY(50%) translateX(-10%) rotate(360deg);
}

.smoke div:nth-child(5) {
    transform: translateY(100%) translateX(50%) rotate(-350deg);
}

.smoke div:nth-child(6) {
    transform: translateY(120%) translateX(-25%);
    border-radius: 50%;
    width: 500px;
    height: 200px;
}

.smoke div:nth-child(7) {
    transform: translateY(135%) translateX(75%) rotate(-340deg);

}

.smoke div:nth-child(8) {
    transform: translateY(230%) translateX(200%) rotate(-320deg);
}

.smoke div:nth-child(9) {
    transform: translateY(240%) translateX(250%) rotate(-360deg);
}

.smoke div:nth-child(10) {
    transform: translateY(230%) translateX(320%) rotate(-360deg);
}

.smoke div:nth-child(11) {
    transform: translateY(210%) translateX(370%) rotate(-360deg);
}

.smoke div:nth-child(12) {
    transform: translateY(200%) translateX(450%) rotate(-360deg);
}

.smoke {
    transform: translateY(0);
}

@keyframes sm13 {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes sm1 {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(220%) translateX(-200%) rotate(-360deg);
    }

}

@keyframes sm2 {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(190%) translateX(-120%) rotate(-360deg);
    }
}

@keyframes sm3 {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(95%) translateX(-45%) rotate(-50deg);
    }
}


@keyframes sm4 {
    0% {
        transform: translateY(0) translateX(-30%) rotate(0);
    }
    100% {
        transform: translateY(50%) translateX(-10%) rotate(360deg);
    }
}


@keyframes sm5 {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(100%) translateX(50%) rotate(-350deg);
    }
}


@keyframes sm6 {
    0% {
        transform: translateY(0) translateX(0);
        width: 170px;
    }
    100% {
        transform: translateY(120%) translateX(-25%);
        border-radius: 50%;
        width: 500px;
        height: 200px;
    }
}

@keyframes sm7 {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(135%) translateX(75%) rotate(-340deg);
    }
}


@keyframes sm8 {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(230%) translateX(200%) rotate(-320deg);
    }
}

@keyframes sm9 {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(240%) translateX(250%) rotate(-360deg);
    }
}

@keyframes sm10 {
    0% {
        transform: translateY(100%) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(230%) translateX(320%) rotate(-360deg);
    }
}

@keyframes sm11 {
    0% {
        transform: translateY(100%) translateX(0) rotate(0);
    }
    100% {
        transform: translateY(210%) translateX(370%) rotate(-360deg);
    }
}

@keyframes sm12 {
    0% {
        transform: translateY(100%) translateX(0) rotate(0);

    }
    100% {
        transform: translateY(200%) translateX(450%) rotate(-360deg);
    }
}

.smoke span {
    animation: dust 1s linear both 0.5s;
}


@keyframes dust {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-30%) translateX(-550%);
        width: 5px;
        height: 5px;
    }
}


.cause-block div:nth-child(2) img.icons {
    animation: icons 0.5s linear both 0.7s;
}

.cause-block div:nth-child(3) img.icons{
    animation: icons 1s linear both 0.7s;
}

.cause-block div:nth-child(4) img.icons{
    animation: icons 1.5s linear both 0.7s;
}

@keyframes icons {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0) ;
        opacity: 1;
    }
}


.arrow img.slide {
    animation: slide 1s linear both 0.5s;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0) ;
        opacity: 1;
    }
}


@media (max-width: 1680px) and (min-width: 1200px) {
    html {
        zoom: 0.9;
    }

    @-moz-document url-prefix() {
        html {
            transform: scale(0.9);
            transform-origin: left top;
            width: calc(100% / 0.9);
            height: calc(100% / 0.9);
        }
    }
}

@media (max-width: 1000px) {
    .order-row .text {
        max-width: 100% !important;
    }

    .order-row .arrow {
        margin-left: 0 !important;
    }

    .order-row {
        justify-content: flex-start;
    }
}

@media (max-width: 1200px) and (min-width: 999px) {

    html {
        zoom: 0.7;
    }

    @-moz-document url-prefix() {
        html {
            transform: scale(0.7);
            transform-origin: left top;
            width: calc(100% / 0.7);
            height: calc(100% / 0.7);
        }
    }


}

@media (max-width: 999px) and (min-width: 769px) {
    html {
        zoom: 0.5;
    }

    @-moz-document url-prefix() {
        html {
            transform: scale(0.5);
            transform-origin: left top;
            width: calc(100% / 0.5);
            height: calc(100% / 0.5);
        }
    }


}

@media (max-width: 1500px) {
    .side-item:first-of-type {
        max-width: 150px;
        position: unset;
        margin-left: unset;
        left: 0;
    }
}


@media (min-width: 769px) {
    .tariff-caption, .telmob {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .menu-item:hover {
        border-bottom: 1px solid;
    }

    .mob {
        display: none;
    }

    .dropdown {
        position: relative;
    }

    .dropmenu {
        display: none;
        position: absolute;
        width: 200px;
        background-color: white;
        padding: 10px;
        box-shadow: 0px 5px 10px rgb(0 0 0 / 15%);
        border-radius: 0 15px 15px 15px;
    }

    .dropmenu .menu-item {
        margin-right: 0;
    }

    .dropdown:hover .dropdowntoggle {
        background-color: white;
        padding: 10px 0  0 10px;
        box-shadow: 0px -2px 10px rgb(0 0 0 / 15%);
        border-radius: 15px 15px 0 0;
        margin-top: -10px;
        cursor: pointer;
    }

    .open .dropmenu {
        display: block;
    }
}

@media (max-width: 768px) {
    
    #category_two .main-slider {
        margin: 0 -15px;
    }

    #openform {
        margin: 20px 0;
    }

    .steps-block h2 {
        position: relative;
        z-index: 1;
    }

    #main_four.steps-block:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:url('../../../webp/assets/templates/images/dev-bg.png.webp');
        background-position: center;
    }

    .order-row {
        margin-bottom: 10px;
    }

    .heaven {
        display: none;
    }

    .map {
        width: 100%;
        height: 300px;
    }

    .form-block {
        margin:  0 auto 20px;
    }

    .contact-inner {
        display: block;
    }

    .iconlist-item {
        width: 33%;
    }

    .iconlist {
        justify-content: center;
    }

    p {
        font-size: 14px;
    }

    .numlist p {
        max-width: 200px;
    }

    .tariff-support div {
        height: unset;
        min-height: unset;
    }

    .desc {
        display: none;
    }

    .accordion-container {
        margin-bottom: 15px;
    }

    .info-list {
        padding-top: 0;
        justify-content: center;
        margin-top: 15px !important;
        align-items: baseline;
    }

    .info-item {
        width: calc(33% - 10px);
        margin-right: 10px;
    }

    .pr-5 {
        padding-right: 0;
    }

    .slides .slick-list {
        margin: 0 -15px;
    }

    .tabs-content {
        padding: 0;
        max-width: unset;
    }

    .head-line {
        justify-content: space-between;
    }

    .d-flex {
        flex-wrap: wrap;
    }

    .steps-block {
        background-position: right;
        min-height: unset;
        background-size: cover;
    }

    .logotel {
        display: none;
    }

    .telmob {
        background-image: url("../../templates/images/icons/phone.png");
        height: 25px;
        width: 25px;
        background-repeat: repeat;
        background-size: cover;
        margin-left: 10px;
        display: block;
        z-index: 99;
    }

    .slider-block h2 {
       margin: 20px 0 5px;
    }

    .slides {
        margin: 0 !important;
    }

    .mini-nav {
        padding: 0 20px;
    }

    .tariff-item > div:not(.tariff-item-first) {
        flex-direction: column;
        height: 70px;
        padding: 5px;
        font-size: 14px;
    }

    .tariff-item-first {
        min-height: unset;
        height: 55px !important;
    }

    .tariff-item p {
        margin: 5px 0;
    }

    .tariff-item.first {
        display: none;
    }

    .tariff-item-first {
        font-size: 14px !important;
    }

    .button-group, .cards {
        width: 100%;
        position: relative;
    }

    .cause-block {
        margin-top: 0px;
    }

    .type-list {
        justify-content: space-evenly;
        margin-bottom: 20px;
    }

    .first-screen {
        height: unset;
        padding-bottom: 0;
    }

    .active .serv-link:before {
        content: '';
    }

    .active .serv-link {
        text-decoration: underline;
    }

    .inform-item {
        align-items: center;
    }

    .slidenav.prv {
        display: none !important;
    }

    .slidenav {
        align-items: start;
        margin-top: -40px;
        height: unset;
    }

    .slidenav img {
        width: 50px;
    }

    .cause {
        width: 100%;
        margin-left: unset;
        position: unset;
        text-align: left;
        padding: 15px 0;
    }

    .sides {
        padding: 20px;
        display: inline-block;
        margin: 0;
    }

    .cause-item {
        padding-right: 10px;
        max-width: unset;
        margin-bottom: 15px;
    }

    .col-2 {
        max-width: unset;
    }

    .modal-open {
        margin: 0 auto;
    }

    .main-menu {
        overflow-y: auto;
        width: 100%;
        right: 0;
        left: 0;
        top: 0;
        padding-top: 70px;
        position: fixed;
        height: 100vh;
        text-align: center;
        transform: translateX(-100%);
        transition: transform 500ms ease-in-out;
        display: flex;
        flex-direction: column;
        background: url('../../templates/images/sky.png'), linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%), #EDF0F5;
        align-items: flex-start;
    }

    .menuinner {
        overflow: auto;
        padding-top: 30px;
    }

    .menu-toggle.open ~ .main-menu {
        transform: translateX(0);
    }

    .menu-item {
        margin-right: 0;
        color: #3b3c3d;
        border-bottom: unset;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
    }

    .main-menu .order {
        display: block;
    }

    .order {
        display: none;
    }

    .side-item:first-of-type {
        position: unset;
        margin-left: unset;
    }

    .desk {
        display: none;
    }

    .rocket-block, .astronaut-block {
        display: none;
    }

    .wrapper {
        padding: 0;
    }

    .offset-1, .offset-2, .offset-4 {
        margin-left: unset;
    }

    .mob {
        display: block;
    }

    .pl-3 {
        padding-left: 0 !important;
    }

    section {
        padding: 0 20px;
    }

    .serv-link {
        width: 100%;
    }

    .arrow img {
        display: none;
    }

    #main {
        margin-top: unset;
    }

    h1 {
        font-size: 26px;
    }

     h2, .heading {
        font-size: 24px;
    }

    .serv-list, .brief {
        padding-top: 0;
        display: none;
    }

    .side-item {
        width: 100%;
        max-width: unset !important;
        text-align: center;
    }

    .modal {
        padding: 30px;
        top: 0;
        border-radius: 0 0 30px 30px;
    }

    #header_main {
        padding: 0 20px;
        position: fixed !important;
        background: #EDF0F5;
        border-radius: 0px 0px 20px 20px;
        box-shadow: 0px 4px 15px rgb(0 0 0 / 25%);
    }

    .logotype {
        padding: 20px 0;
    }

    .main-menu div {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
    }

    .menu-item {
        margin-left: 0;
    }

    .pt-5 {
        padding-top: 20px;
    }

    .my-5 {
        margin: 0;
    }

    .tariff-block {
        display: flex;
        align-items: start;
        flex-wrap: nowrap;
    }

    ul.main-list {
        list-style: none;
        margin: 0 -10px;
        padding: 0;
        flex-wrap: wrap;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }

    ul.main-list li {
        width: calc(50% - 20px);
        background: white;
        border-radius: 10px;
        padding: 10px;
        margin: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .maintariff {
        margin-bottom: 20px;
    }

    .trf-head {
        font-size: 14px;
        font-weight: 500;
        padding-bottom: 15px;
    }

    strong {
        font-size: 16px;
    }

    .quest {
        margin-top: 20px;
    }

    .tariff-caption {
        font-size: 12px;
        font-weight: 600;
    }

    .row3-item img {
        max-width: 20px;
    }

    .price-context .tariff-caption {
        font-weight: 400;
    }

    .py-5 {
        padding-top: 15px;
    }

    .row3-inner {
        padding: 5px 5px 0;
        height: 100%;
        background-color: white;
        border-radius: 5px;
    }

    /*

    .center-slider .row3-inner {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        opacity: 0.9;
        transform: scale(0.9);
        transition: all 300ms ease;
    }

    .center-slider .slick-center .row3-inner {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
        transform: scale(1);
    }
*/
    .center-slider .row3-inner p {
        font-size: 11px !important;
        margin: 5px 0;
    }

    .center-slider .row3-inner img {
        margin: auto;
    }

    .center-slider .row3-inner {
        text-align: center;
        padding-bottom: 5px;
    }

    .center-slider .slick-track {
        display: flex;
    }

    .center-slider .slick-slide {
        height: inherit !important;
    }

    .project-block #main img {
        max-width: 100%;
    }

    #sup_two, #con_four, #seo_work {
        overflow: hidden;
    }

    .tariff-context {
        margin-bottom: 0;
    }

    .price-context {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .tabtoaccord .active .question{
        color: #22b4f0;
    }

    .tabtoaccord .faq:not(.active) .question{
        color: black;
    }

    .row3-item {
        width: calc(33% - 5px);
        margin: 5px 0;
    }

    .dropmenu {
        display: block;
        position: relative;
        background: transparent;
        box-shadow: none;
    }

    .first-screen {
        background-image: url("../../templates/images/astronaut.png");
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: 200px;
    }

    .cat-inner {
        flex-direction: column-reverse;
    }

    .cat-inner .inlineform {
        margin-top: 0;
        position: relative;
    }

    .inlineform .alert{
        bottom: 20px;
    }

    .cat-menu {
        margin-bottom: 20px;
        justify-content: center;
    }

    .first-screen {
        max-height: unset;
    }

    .cat-menu div {
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        padding: 5px;
        background: white;
        margin: 5px;
        border-radius: 5px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .steps-block h2 {
        margin: 0 0 15px;
    }

    .cards figure p {
        font-size: 10px;
        word-break: break-all;
    }

    .cards figure figcaption {
        padding: 20px 10px;
    }

    .slides {
        padding-bottom: 0 !important;
    }

    .info-item span {
        font-size: 14px;
    }

    .info-item p {
        font-size: 12px;
    }

    .numlist {
        justify-content: center;
    }

}

@media (max-width: 500px) {

    .cat-menu {
        flex-wrap: wrap;
    }

    .cat-menu div {
        width: calc(50% - 10px);
    }

    .promo-inner {
        flex-wrap: wrap;
    }

    .promo-item {
        padding: 10px;
        margin-bottom: 20px;
    }

    .row3-item {
        width: calc(50% - 5px);
        margin: 5px 0;
    }

    .numlist, .seoprice-block {
        justify-content: center;
    }

    .seoprice-item {
        margin: 10px !important;
    }

    .numlist span {
        font-size: 16px;
        width: 25px;
        height: 25px;
    }


    .tabs-caption li {
        -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .vertical .tabs-caption {
        float: none;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .vertical .tabs-caption li {
        border-width: 2px 2px 0;
        border-radius: 5px 5px 0 0;
        width: 100%;
    }

    .vertical .tabs-caption li:last-child:before {
        display: block;
    }

    .vertical .tabs-caption .active:after {
        top: auto;
        bottom: -5px;
        left: 0;
        right: 0;
        width: auto;
        height: 5px;
        background: #FFF;
    }

    .quest-form {
        justify-content: center;
    }

    .quest-form input {
        text-align: center;
        margin: auto;
    }

    .cause-icon {
        flex-direction: row;
        align-items: center;
    }

    .cause-block p, p, li {
        font-size: 12px;
    }

    .type-item {
        width: calc(50% - 10px);
        height: unset;
        margin: 10px 10px 0 0;
    }

    .form-line {
        flex-direction: column;
    }

    .form-line input, .form-line .form-group {
        width: 100%;
    }

    .form-line button {
        float: right;
    }

    .logoimg img {
        width: 150px;
    }

    h2, .heading {
        font-size: 22px;
    }

    h1, h2, h2 p, .heading {
        margin-bottom: 10px;
    }

    .py-5 {
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .my-5 {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .cause-icon span {
        padding-top: 0;
        padding-left: 5px;
    }

    .checkbox label {
        font-size: 12px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .type-item span {
        margin-top: 20px;
    }

    .question {
        font-size: 14px;
        padding: 15px 15px 5px;
    }


    .numlist div {
        margin-bottom: 5px;
        max-width: 50%;
    }

    .info-item {
        padding: 5px;
        width: 50%;
        margin: 0;
        text-align: center;
        align-items: center;

    }

    .info-item span {
        font-size: 12px;
    }

    .iconlist-item img {
        max-width: 30px;
        margin: auto;
    }

    .quest {
        text-align: center;
    }

    .info-item {
        width: 100%;
    }

    .info-item img {
        width: 20px;
    }

    .quest-form input, .quest-form button, .quest-form .form-group  {
        width: 100%;
    }


    .element-item {
        width: 50%;
        max-width: 50%;
    }

}

@media (max-width: 400px) {

    .cat-menu div a {
        font-size: 12px;
    }

    p, li {
        font-size: 12px;
    }

    h1, h2, h2 p, .heading {
        font-size: 20px;

    }

    .tariff-item > div {
        justify-content: center;
        padding: 5px 20px;
        flex-direction: column;
    }

    .serv-link {
        font-size: 14px;
    }

    .pt-5 {
        padding-top: 1rem;
    }

    .mt-5 {
        margin-top: 1rem;
    }

    section {
        padding: 0 15px;
    }

    .type-item {
        padding: 10px;
        font-size: 14px;
    }

    .modal {
        padding: 15px;
    }

    .type-item span {
        margin-top: 15px;
    }

    .tariff-caption {
        font-size: 10px;
    }


    .checkbox label {
        font-size: 10px;
    }
}