.branding-page .banner-float-support {
  margin-left: -13px;
  margin-top: -3px;
}

.logo-development-page .main-banner .col-12 {
  position: relative;
}

/* animations */
.logo-development-page .banner-float-support {
  display: none;
}

.banner-float-support__mb {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 20px 0 50px 0;
}

.animated-banner-image {
  width: 800px;
  height: 800px;
  max-width: 100%;
  position: relative;
}

.animated-banner-image > div img {
  width: 100%;
  height: 100%;
}

.animated-banner-image .animated-banner-image__main {
  height: 100%;
  width: auto;
  position: relative;
  z-index: 2;
}

.animated-banner-image > div {
  position: absolute;
}

.animated-banner-image .a-rup {
  width: 250px;
  height: 270px;
  top: 125px;
  left: 15px;
  z-index: 1;
}

.animated-banner-image .a-req1 {
  width: 600px;
  height: 600px;
  top: 50px;
  left: 100px;
  z-index: 2;
  animation: 8s ease-in-out .1s normal none infinite running req;
}

.animated-banner-image .a-req2 {
  width: 400px;
  height: 400px;
  top: 150px;
  left: 200px;
  z-index: 2;
  animation: 8s ease-in-out .4s normal none infinite running req;
}

.animated-banner-image .a-req3 {
  width: 200px;
  height: 200px;
  top: 250px;
  left: 300px;
  z-index: 2;
  animation: 8s ease-in-out .7s normal none infinite running req;
}

.animated-banner-image .a-star {
  width: 40px;
  height: 40px;
  left: 0;
  top: 420px;
  z-index: 3;
  animation: 2s ease-in-out 0s normal none infinite running star2;
}

.animated-banner-image .a-star2 {
  width: 80px;
  height: 80px;
  left: 70px;
  top: 310px;
  z-index: 3;
  animation: 4s ease-in-out 0s normal none infinite running star2;
}

.animated-banner-image .a-star3 {
  width: 40px;
  height: 40px;
  left: 250px;
  top: 120px;
  z-index: 3;
  animation: .7s ease-in-out 0s normal none infinite running star2;
}

.animated-banner-image .a-bubble {
  width: 120px;
  height: 80px;
  left: 500px;
  bottom: 650px;
  z-index: 3;
  animation: 4s ease-in-out 0s normal none infinite running bubble;
}

.animated-banner-image .a-hert {
  width: 80px;
  height: 80px;
  right: 330px;
  top: 130px;
  z-index: 3;
  animation: 2s ease-in-out .4s normal none infinite running heart;
}

.animated-banner-image .a-pip {
  width: 200px;
  height: 160px;
  right: 70px;
  top: 110px;
  z-index: 3;
  animation: 4s ease-in-out 0s normal none infinite running pip;
}

.animated-banner-image .a-beep {
  width: 150px;
  height: 140px;
  right: 0;
  bottom: 370px;
  z-index: 3;
  animation: 4s ease-in-out 0s normal none infinite running beep;
}

.animated-banner-image .a-sphere {
  width: 170px;
  height: 170px;
  top: 210px;
  left: 270px;
  z-index: 4;
  animation: 4s ease-in-out 0s normal none infinite running sphere;
}

.animated-banner-image .a-planet {
  width: 250px;
  height: 250px;
  right: 100px;
  bottom: 150px;
  z-index: 4;
  animation: 4s ease-in-out 0s normal none infinite running planet;
}

.animated-banner-image .a-hand {
  width: 180px;
  height: 150px;
  right: 30px;
  bottom: 80px;
  z-index: 5;
  animation: 4s ease-in-out 0s normal none infinite running hand-a;
}

@keyframes hand-a {
  0% {
    transform: translateY(0) translateX(0);
  }
  20% {
    transform: translateY(30px) translateX(30px);
  }
  50% {
    transform: translateY(-40px) translateX(45px);
  }
  80% {
    transform: translateY(30px) translateX(30px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes pip {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(30px) translateX(-30px);
  }
  52% {
    transform: translateY(30px) translateX(-30px) scale(1.1);
  }
  54% {
    transform: translateY(30px) translateX(-30px) scale(1);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes beep {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes sphere {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes planet {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(130deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes bubble {
  0% {
    height: 0;
    width: 0;
  }
  50% {
    transform: scale(1.1);
    width: 120px;
    height: 80px;
  }
  60% {
    transform: scale(1);
    width: 120px;
    height: 80px;
  }
  100% {
    width: 0;
    height: 0;
  }
}

@keyframes star2 {
  0% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(.7);
  }
  100% {
    transform: scale(1.3);
  }
}

@keyframes heart {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.3);
  }
  36% {
    transform: scale(1.1);
  }
  44% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes req {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* animations */
.logo-development-page .banner-float-support {
  height: max-content;
  width: max-content;
  pointer-events: none;
}

.logo-development-page .image-block-before {
  margin-top: 50px;
  margin-bottom: 50px
}

.logo-development-block-analytics .image-block-before {
  margin-top: 0;
}

.logo-development-block-analytics .image-block-before img {
  max-width: 290px;
  margin-left: -10px;
  margin-top: 10px;
}

.logo-development-block-analytics .image-block-before .float-circles:before {
  top: calc(18% - 50px);
  left: calc(96% - 30px);
}

.logo-development-block-analytics .image-block-before .float-circles:after {
  left: calc(0% - 20px);
  top: 45%;
}

.logo-development-page .main-banner ul.list-dotted {
  max-width: unset;
  position: relative;
  z-index: 1;
  padding-top: 12px;
  display: flex;
  align-items: center;
}

ul.list-dotted li {
  padding: 0;
  font-weight: 500;
}

ul.list-dotted li:first-child {
  margin-right: 50px;
}

ul.list-dotted li:before {
  display: none;
}

@media (min-width: 768px) {
  .banner-float-support__mb {
    display: none;
  }

  .logo-development-page .main-banner .heading-1 {
    max-width: 500px;
  }

  .logo-development-page .main-banner .text {
    max-width: 710px;
  }

  .logo-development-page .banner-float-support {
    margin-left: -40px;
  }

  .logo-development-block-analytics .image-block-before img {
    max-width: 383px;
    margin-left: -15px;
    margin-top: -25px;
  }

  .logo-development-block-analytics .image-block-before .float-circles:before {
    top: calc(0% - 50px);
    left: calc(22% - 30px);
  }

  .logo-development-block-analytics .image-block-before .float-circles:after {
    left: calc(0% - 20px);
    top: 45%;
    width: 51px;
    height: 51px;
  }
}

@media (min-width: 992px) {
  .logo-development-page .main-banner .text {
    max-width: 420px;
  }
}

.developments-icons__block > div img {
  max-width: max-content;
  transition: all .5s;
  width: 100%;
}

.developments-icons__block > div {
  padding-bottom: 25px;
  padding-top: 25px;
}

.logo-development-block-icons {
  padding-bottom: 50px;
}

.logo-development-block-icons .button-case {
  margin-top: 20px;
}

.developments-icons__block > div:hover img {
  transform: scale(1.11);
}

.logo-development-block__logobook {
  background: #F2F4FF;
  margin-top: 80px;
  padding: 50px 0 !important;
}

.logo-development-block__what-in-logobook {
  padding-top: 0 !important;
  padding-bottom: 50px;
}

.what-in-logobook__image {
  width: 100%;
  overflow: hidden;
  display: flex;
  height: 400px;
  justify-content: flex-end;
}

.what-in-logobook__image img {
  max-width: max-content;
  height: 100%;
  max-height: 720px;
}

.what-in-logobook__inner > div:nth-child(1) {
  order: 2;
}

.what-in-logobook__inner > div:nth-child(2) {
  order: 1;
  margin-bottom: 21px;
}

.logo-development-block__logobook .image-block-before:before {
  background: #fff;
}

.what-in-logobook__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.what-in-logobook__inner .button-case {
  width: max-content;
  margin-top: 40px;
}

.what-in-logobook__content {
  width: 100%;
  padding: 50px 16px 30px;
}

.logo-development-block__you-get .image-block-before .float-circles:after {
  top: calc(90%);
  left: calc(70% - 50px);
  z-index: 1;
}

.logo-development-block__you-get .image-block-before .float-circles:before {
  top: calc(35%);
  left: -40px;
  z-index: 1;
}

@media (min-width: 768px) {
  .logo-development-block__what-in-logobook {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .what-in-logobook__content {
    width: 39%;
    padding: 0 15px 57px 70px;
  }

  .logo-development-block__logobook .image-block-before .float-circles:after {
    top: calc(0% - 25px);
    left: calc(61% - 20px);
    z-index: 1;
  }

  .logo-development-block__logobook .image-block-before .float-circles:before {
    top: calc(94% - 30px);
    left: calc(37% - 30px);
    z-index: 1;
  }

  .developments-icons__block > div {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .logo-development-page .banner-float-support {
    right: -25.6%;
    top: -15%;
  }

  .logo-development-block-analytics .image-block-before img {
    max-width: 522px;
    margin-left: 0;
    margin-top: 0;
  }

  .logo-development-block-analytics .image-block-before .float-circles:before {
    top: calc(0% - 50px);
    left: calc(61% - 30px);
  }

  .logo-development-block-analytics .image-block-before .float-circles:after {
    left: calc(0% - 20px);
    top: 45%;
    width: 40px;
    height: 40px;
  }

  .what-in-logobook__image img {
    max-height: 680px;
  }
}

@media (min-width: 1450px) {
  .logo-development-page .banner-float-support {
    right: -45%;
    top: -15%;
  }
}

/*--- block-advatages ---*/
@media (min-width: 768px) {
  .logo-development-page .banner-float-support {
    display: flex;
    justify-content: center;
    margin-bottom: -70px;
    margin-left: auto;
    margin-right: auto;
  }

  .what-in-logobook__content {
    width: 100%;
    padding: 50px 40px 30px;
  }

  .what-in-logobook__image {
    justify-content: center;
  }

  .what-in-logobook__inner > div:nth-child(2) {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .logo-development-page .banner-float-support {
    top: -85px;
    right: auto;
    left: 50%;
  }

  .logo-development-page .banner-float-support {
    transform: translate(-138px, -71px) scale(.6);
    margin: 0;
  }

  .logo-development-block-icons .button-case {
    margin-top: 0;
  }

  .developments-icons__block > div {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .what-in-logobook__inner > div:nth-child(2) {
    margin-bottom: 0;
  }

  .what-in-logobook__inner > div:nth-child(1) {
    order: unset;
  }

  .what-in-logobook__inner > div:nth-child(2) {
    order: unset;
  }

  .what-in-logobook__image {
    width: 50%;
    overflow: hidden;
    display: flex;
    height: 642px;
    justify-content: flex-end;
  }

  .what-in-logobook__inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    max-width: 1920px;
    margin: auto;
  }

  .what-in-logobook__content {
    width: 50%;
    /* padding: 0 22px 0 32px; */
  }

  .what-in-logobook__image {
    transform: translateX(-55px);
    opacity: 0;
  }

  .what-in-logobook__inner > div:nth-child(1) {
    height: 100%;
  }

  .scroll-here .what-in-logobook__image {
    transform: translateX(0);
    opacity: 1;
  }

  .scroll-here .developments-icons__block > div {
    transform: translateY(0);
    opacity: 1;
  }

  .developments-icons__block > div {
    transform: translateY(55px);
    opacity: 0;
  }
}

@media (min-width: 1200px) {
  .logo-development-page .banner-float-support {
    transform: translate(-138px, -1px) scale(.8);
  }

  .logo-development-block-icons {
    padding-bottom: 0;
  }
}

@media (min-width: 1450px) {
  .logo-development-page .banner-float-support {
    transform: translate(-118px, -51px) scale(1);
  }
}

/*--------------------*/
@media (max-width: 1449px) {
  .animated-banner-image .a-star {
    left: 45px;
  }
}

.what-in-logobook__mb {
  display: none;
}

@media (max-width: 1200px) {
  .logo-development-block__you-get .image-block-before img {
    height: 320px;
  }
}

.what-in-logobook__mb {
  display: none;
}

@media (max-width: 767px) {
  .logo-development-block__you-get .image-block-before .float-circles:after {
    top: calc(60%);
    left: calc(100% - 30px);
    z-index: 1;
  }

  .logo-development-block__you-get .image-block-before .float-circles:before {
    top: calc(35%);
    left: -10px;
    z-index: 1;
  }

  .logo-development-block__you-get .image-block-before img {
    height: 220px;
  }

  .logo-development-block__logobook .row > div:nth-child(1) {
    order: 2;
  }

  .logo-development-block__logobook .row > div:nth-child(2) {
    order: 1;
  }

  .what-in-logobook__mb {
    display: block;
    order: 3;
  }

  .what-in-logobook__content .button-case {
    display: none;
  }
}
