/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eee5e9;

  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 10.2rem;
}

.main-page {
  border-radius: 3px;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav {
  z-index: 9999;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
  border-radius: 3px;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #ffc107;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #372248;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #ffc107;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/* Banner */

.banner {
  background: #ffc107;
}

.banner__content {
  padding: 16px;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.banner__text {
  flex-grow: 1;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.banner__text,
.banner__close > span {
  color: #000000;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #eee5e9;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

/* ---------------------------------------------- */
/* ANIMATION */
/* ------------------------------------------------ */

.card {
  width: 80%;
}

.hero-animation {
  display: flex;
  flex-direction: column;
  height: 70vh;
  align-items: center;
  justify-content: center;
}

.card-1 {
  transform: translate(0, 96%);
  z-index: 4;
  animation: up 2s ease-in-out;
}

@keyframes up {
  0% {
    transform: translate(0, 150%);
  }
}

.card-2 {
  transform: translate(0, 32%);
  z-index: 3;
  animation: up-2 2s ease-in-out;
}

@keyframes up-2 {
  0% {
    transform: translate(0, 50%);
  }
}

.card-3 {
  transform: translate(0, -32%);
  z-index: 2;
  animation: down-3 2s ease-in-out;
}

@keyframes down-3 {
  0% {
    transform: translate(0, -50%);
  }
}

.card-4 {
  transform: translate(0, -96%);
  z-index: 1;
  animation: down-4 2s ease-in-out;
}

@keyframes down-4 {
  0% {
    transform: translate(0, -150%);
  }
}

/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 4.5rem;
  filter: brightness(0);
  opacity: 50%;
}

/**************************/
/* SERVICES SECTION */
/**************************/
.section-services {
  padding: 9.6rem 0;
}

.service-icon {
  color: #372248;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #eee5e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.service-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.main-service {
  font-weight: 700;
}

.service-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* SERVICES IND SECTION */
.service-text-blog {
  margin-bottom: 5rem;
}

.list-m {
  margin-bottom: 1rem;
}

.list-m-l {
  margin-bottom: 5rem;
}

/**************************/
/* BLOG SECTION */
/**************************/

.section-blog {
  padding: 4.8rem 0;
}

.post {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
}

.post-img {
  width: 100%;
}

.post-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.post-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.tag--ecom {
  background-color: #eee5e9;
}
.tag--smm {
  background-color: #eee5e9;
}
.tag--ad {
  background-color: #eee5e9;
}

.post-link,
.post-link:link,
.post-link:visited {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
}

.post-link:hover,
.post-link:active {
  color: #ffc107;
}

.post-clickable {
  text-decoration: none;
  border-radius: 11px;
}

.all-blog-posts,
.all-cases {
  text-align: center;
}

.container-post {
  width: 60%;
}
/**************************/
/* SINGLE CASE TESTIMONIAL */
/**************************/

.section-testimonials {
  background-color: #eee5e9;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.case-box-main {
  position: relative;
  height: 40rem;
}

.case-link-fixed {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 3rem;
}

.testimonial-author-fixed {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

/**************************/
/* CASES SECTION */
/**************************/

.section-cases {
  padding: 9.6rem 0;
  background-color: #eee5e9;
}

.grid-less-gap {
  display: grid;
  gap: 3rem;
}

.case-box {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;

  padding: 2.6rem 2rem;

  border-radius: 11px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.085);
  background-color: white;
  margin-bottom: 8rem;

  position: relative;
  height: 45rem;
}

.case-img {
  width: 20%;
  border-radius: 50%;
}

.case-link-fixed {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 3rem;
}

.case-link,
.case-link:link,
.case-link:visited {
  font-weight: 600;
  font-size: 2rem;
  color: #333;
  text-decoration: none;
  border-radius: 11px;
  transition: all 0.3s;
  padding: 1.6rem 3.2rem;
  background-color: #ffffff;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid #8b8b8b;
}

.case-link:hover,
.case-link:active {
  color: #ffc107;
}

.case-link-blog,
.case-link-blog:link,
.case-link-blog:visited {
  background-color: none;
  /* color: white; */
}

/**************************/
/* WHYUS SECTION */
/**************************/

.section-whyus {
  padding: 9.6rem 0;
}

/**************************/
/* PRICING SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0;
}

.pricing-plan {
  border-radius: 11px;
  width: 100%;
}

.plan-icon {
  color: #372248;
  height: 3.2rem;
  width: 3.2rem;
  /* background-color: #eee5e9; */
  /* margin-bottom: 3.2rem; */
  padding: 1.6rem;
  border-radius: 50%;
}

.pricing-plan--organic,
.pricing-plan--paid {
  border: 2px solid #eee5e9;
  padding: 4.6rem;
  position: relative;
}

.pricing-plan--organic r,
.pricing-plan--paid d {
  width: 12rem;
  height: 3.2rem;
  background-color: #ff3b3b;
  position: absolute;
  top: 5px;
  right: -15px;
  border-radius: 11px;
  border-bottom-right-radius: 0;
}

.pricing-plan--organic::after,
.pricing-plan--paid::after {
  content: "sale";
  background-color: #ff3b3b;
  position: absolute;
  top: 5px;
  right: -15px;
  border-radius: 11px;
  border-bottom-right-radius: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 43px;
}

.pricing-plan--organic r::before,
.pricing-plan--paid d::before {
  content: "";
  position: absolute;
  top: 3.2rem;
  right: 0px;

  width: 15px;
  height: 16px;
  background-color: #cc2f2f;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 2;
}

.pricing-plan--organic r::after,
.pricing-plan--paid d::after {
  content: "";
  position: absolute;
  top: 3.2rem;
  right: 0px;
  width: 15px;
  height: 8px;
  background: #ff3b3b;
}

.btn-plan {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 1rem;
}

.pricing-plan--custom {
  background-color: #eee5e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--custom::after {
  content: "Best value";
  position: absolute;
  top: 2%;
  right: -22%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #c0681a;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
  line-height: 2rem;
}

.plan-price-old {
  font-weight: 400;
  color: #999999;
  font-size: 5.2rem;
  margin-bottom: 30px;
}

.plan-price-old line-through {
  text-decoration: line-through;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  padding: 4.8rem 0 12.8rem;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #754b97, #372248);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #ffffff;
}

.cta .heading-secondary {
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(154, 94, 203, 0.35),
      rgba(89, 56, 115, 0.35)
    ),
    url("../img/connect.webp");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: black;
  border: none;
  background-color: #eee5e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
  line-height: 21px;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/**************************/
/* ABOUT US SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.step-img {
  width: 100%;
  border-radius: 11px;
  /* z-index: 10; */
}

/**************************/
/* SINGLE CASE PAGE */
/**************************/

.case-test-img {
  width: 100%;
}
.carousel {
    background: #372248;
}
.carousel-control-next, .carousel-control-prev {
top: auto !important;
    bottom: 15px !important;
    width: 8% !important;
}
.testimonial-section {
  color: #fff;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.testimonial-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.testimonial-box h2 {
  margin-bottom: 24px;
  /* 20 / 24 / 30 */
  font-size: 24px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: #e6fcf5;
}

.testimonial-text-main {
  color: black;
}

.testimonial-author {
  font-size: 12px;
  color: #ebd3ff;
}

.testimonial-author-main {
  font-size: 14px;
  color: #616161;
}

.list-item {
  display: grid;
  grid-template-columns: 10fr 90fr;
  font-size: 1.8rem;
  align-items: center;
  line-height: 1.2;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #372248;
}

.list-heading {
  font-size: 1.8rem;
  line-height: 1.2;
}

.sticky {
  position: sticky;
  top: 0;
  /* padding: 1rem; */
  margin-top: 1rem;
}

.step-description-case {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 1.5;
}

.keyresults {
  padding: 16px 0 16px;
  margin: 0 0 32px;
  color: #372248;
  border-bottom: 4px solid #372248;
}

/**************************/
/* CASES PAGE */
/**************************/
.post-case {
  background-color: white;
}

.post-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
}

/**************************/
/* SINGLE CASE PAGE NEW*/
/**************************/

.case-st-test-img {
  width: 8rem;
  border-radius: 50%;
}

.container-case-st {
  margin: 0 auto;
  width: 700px;
}

.heading-secondary-case-st {
  font-size: 3rem;
  padding: 4.8rem 0;
  color: #000000;
}

.case-st-testimonial {
  width: 100%;
  display: grid;
  column-gap: 2.4rem;
  grid-template-columns: 10fr 90fr;
  align-items: center;
  justify-items: center;

  padding: 3rem;

  background-color: #372248;
  border-radius: 9px;
}

.case-st-test-text-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  color: white;
}

.case-st-test-text {
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: 400;
}

.case-st-test-author {
  font-size: 1.2rem;
}
.circlewrap {
    height: 100%;
    position: relative;
    display: flex;
}


.circle {
  display: grid;
  grid-template-areas: "layer";
  place-items: center;
  border-radius: 50%;
  margin: auto;
  --radius: 40vmin;
  width: calc(2 * var(--radius));
  height: calc(2 * var(--radius));
}

.stat {
    grid-area: layer;
    width: 20vmin;
    height: auto;
    display: grid;
    place-items: center;
    background: #fff;
    color: #000;
    font-weight: bold;
    font-size: 2vmin;
    --d: calc(var(--i) / var(--total));
    --r-offset: -0.25turn;
    --r-amount: 1turn;
    --r: calc((var(--r-amount) * var(--d)) + var(--r-offset));
    --transform: rotate(var(--r)) translate(var(--radius))
    rotate(calc(-1 * var(--r)));
    transform: var(--transform);
    transition: transform 1.5s ease-in-out;
    transition-delay: calc(0.1s * var(--i));
	padding: 5px 0;
}
img.logostyle {
    position: absolute;
    left: 43%;
    top: 40%;
}
.hidden {
    display: none;
}
span.more {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 9px;
    padding: 3px 12px !important;
}
i.fa {
    font-size: 27px;
}




.main-container {
  min-height: 100vh;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 560px;
  overflow: hidden;
}
.mainANi {
    margin: 0px auto;
    width: 510px;
    height: 510px;
    position: relative;
}
.big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 1px solid #2b1b38;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 40s linear infinite;
  -webkit-animation: Rotate 40s linear infinite;
}
.icon-block {
  width: auto;
  height: 64px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  /* background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  box-shadow: 0 2px 4px 0 #3e5ada;
  -webkit-box-shadow: 0 2px 4px 0 #3e5ada; */
}
.icon-block .block {
    margin: 0px auto;
    width: 200px;
    animation: Rotate-reverse 40s linear infinite;
    -webkit-animation: Rotate-reverse 40s linear infinite;
    font-size: 20px;
    display: table;
    line-height: 0px;
}
.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(10%, -340%);
  -webkit-transform: translate(10%, -340%);
}
.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(70%, -380%);
  -webkit-transform: translate(70%, -380%);
}
.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(180%, 190%);
  -webkit-transform: translate(180%, 190%);
}
.icon-block:nth-child(5) {
  top: 50%;
  left: 0;
  transform: translate(75%, 330%);
  -webkit-transform: translate(75%, 330%);
}
.icon-block:nth-child(6) {
  top: 50%;
  left: 0;
  transform: translate(-15%, 200%);
  -webkit-transform: translate(-15%, 200%);
}
.icon-block:nth-child(7) {
  top: 50%;
  left: 0;
  transform: translate(-45%, 10%);
  -webkit-transform: translate(-45%, 10%);
}
.icon-block:nth-child(8) {
  top: 50%;
  left: 0;
  transform: translate(-45%, -208%);
  -webkit-transform: translate(-45%, -208%);
}
.icon-block:nth-child(9) {
  top: 50%;
  left: 0;
  transform: translate(10%, -358%);
  -webkit-transform: translate(10%, -358%);
}
/* circle content */
.circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 75%;
  height: 75%;
  border: 3px solid #6495f2;
  border-radius: 50%;
}
.circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}
/* center logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.center-logo img {
  max-width: 200px;
}

/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }
  to {
    -webkit-transform: rotate(-405deg);
  }
}
.mainANi i.fa {
    display: inline-grid;
    width: auto;
    font-size: 20px;
}
.icon-block .block img {
    width: 50px;
}