* {
  padding: 0;
  margin: 0;
  -webkit-background-origin: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*  Tags  */

html {
  font-size: 14px;
}

img {
  width: 100%;
}

body {
  width: 100%;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.43rem;
  /*  20px  */
  font-weight: 400;
  color: #9caab2;

  overflow-x: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.21rem;
  /* 17px */
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

h1,
h2,
h3 {
  font-family: "Kristi", cursive;
  font-weight: 400;
  color: #323e45;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #323e45;
}

h1 {
  font-size: 15.6rem;
  /* 218px */
}

h2 {
  font-size: 10rem;
  /* 140px */
}

h3 {
  font-size: 8.57rem;
  /* 120px */
}

h4 {
  font-weight: 400;
  font-size: 1.57rem;
  /* 22px */
}

h5 {
  font-weight: 500;
  font-size: 1.43rem;
  /*  20px  */
}

h6 {
  font-weight: 400;
  font-size: 1.21rem;
  /* 17px */
}

/*  Containers  */

.main-wrap {
  overflow: hidden;
}

.container_fluid {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  width: 1590px;
  padding: 0 60px;
  margin: 0 auto;
}

.container_small {
  width: 1340px;
  padding: 0 60px;
  margin: 0 auto;
}

/*  Columns  */

.columns_wrap {
  margin-right: -30px;
}

.column {
  display: inline-block;
  vertical-align: top;
  padding-right: 30px;
  padding-bottom: 30px;
}

.column_1-2 {
  width: 50%;
}

.column_1-3 {
  width: 33.333333%;
}

.column_1-4 {
  width: 25%;
}

.column_1-6 {
  width: 16.6666666%;
}

.column_1-8 {
  width: 12.5%;
}

/* General Classes */

.white {
  color: #fff;
}

/* Header */

.header-wrap {
  background: #f1f4f7;
  width: 100%;
  height: 990px;
  padding: 30px;
  text-align: center;

  position: relative;

  overflow: hidden;
}

.menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  padding-left: 0.5rem;
}

.nav_link {
  font-size: 1.14rem;
  /* 16px */
  font-weight: 400;
  color: #2c363b;
  padding: 1.67rem 1.6rem;

  position: relative;
  z-index: 1;
}

.nav_link:hover {
  color: #fff;
}

.nav_link:before {
  position: absolute;
  top: 50%;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: #b68bdb;
  height: 70%;
  z-index: -1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav_link:after {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: #b68bdb;
  height: 70%;
  z-index: -1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav_link:hover:before,
.nav_link:hover:after {
  width: 51%;
}

.header_btn {
  margin-left: auto;
  font-size: 1.14rem;
  /* 16px */
  font-weight: 500;
  color: #fff;
  background: #b68bdb;
  padding: 1.67rem 2.1rem;
}

.header_btn:hover {
  background: #edd550;
  color: #fff;
}

.header_btn.btn_second {
  display: none;
}

/*  Nav toggle  */

.nav-toggle {
  display: none;

  position: absolute;
  top: 3.5rem;
  left: 3.5rem;
  z-index: 1000;
  width: 3rem;
  padding: 1.2rem 0;

  font-size: 0;
  color: transparent;

  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle:focus {
  outline: none;
}

.burger {
  display: block;
  width: 100%;
  height: 0.3rem;
  background-color: #b68bdb;

  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;

  transition: background 0.2s linear;
}

.burger:before,
.burger:after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: #b68bdb;
  position: absolute;
  left: 0;
  z-index: 1;

  transition: transform 0.2s linear;
}

.burger:before {
  top: -1rem;
}

.burger:after {
  bottom: -1rem;
}

.nav-toggle.active .burger {
  background: none;
}

.nav-toggle.active .burger:before {
  transform-origin: left top;
  transform: rotate(45deg);
}

.nav-toggle.active .burger:after {
  transform-origin: left bottom;
  transform: rotate(-45deg);
}

.header_content {
  text-align: center;
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
}

.header_content:before {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 16.2rem;
  height: 16.2rem;
  border-radius: 8rem;
  background: #edd550;
  z-index: 1;
}

.header_title {
  position: relative;
  z-index: 2;
}

.header_text {
  font-size: 2.83rem;
  line-height: 1.55em;
  color: #323e45;
  margin-top: 1.3rem;
  position: relative;
  z-index: 2;
}

.scroll_wrap {
  position: absolute;
  bottom: 24%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
}

.demo_scroll {
  width: 6rem;
  height: 6rem;
  color: #fff;
  border-radius: 50%;
  background: #b68bdb;
  font-size: 1.7rem;
  position: relative;
}

.arrow {
  display: block;
  position: absolute;

  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.demo_scroll:hover {
  color: #2c363b;
  background: #edd550;
}

.scroll_wrap p {
  font-size: 1.14rem;
  font-weight: 500;
  margin-top: 1rem;
  color: #323e45;
}

/* Home */

.home-wrap {
  background: #f1f4f7;
  width: 100%;

  padding-bottom: 8.3rem;
  position: relative;
  z-index: 5;
  overflow: visible;
}

.home_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 60px;
  margin-right: -60px;
  margin-top: -10rem;
}

.home_item.column {
  padding-right: 60px;
  text-align: center;
}

.home_item a {
  position: relative;
}

.home_item .badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  max-width: 174px;
  box-shadow: none !important;
}

.home_item img {
  margin-bottom: 2.2rem;

  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}

.home_item:hover a {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* top clients section */

.top_clients {
  background-color: #e6ecf1;
  padding-top: 8.9rem;
  padding-bottom: 10rem;
  --row-gap: 68px;
}

@media (min-width: 1440px) {
  .top_clients .container {
    max-width: 1470px;
  }
}

.top_clients_title {
  text-align: center;
  line-height: .95em;
}

.top_clients_grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 46px;
  margin-top: 2.9em;
}

.top_client_row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: calc(0px - var(--row-gap));
}

.top_client_row .item {
  flex: 0 1 50%;
  padding-right: var(--row-gap);
}

.top_client_row .content_wrap {
  max-width: 510px;
}

.top_clients_item_title {
  font-size: 3.93rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #323E45;
}

.top_clients_text {
  margin-top: 1.2em;
}

.top_clients_btn {
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  background-color: #B68BDB;
  transition: background-color 0.3s linear;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 9px;
  position: relative;
  margin-top: 1.4em;
}

.top_clients_btn:hover {
  background-color: #edd550;
}

.top_clients_btn::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 9px;
  background-image: url(../images/clients/earth.svg);
  position: relative;
  top: 0px;
}

.top_clients .img_wrap {
  position: relative;
  padding-top: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s linear;
  display: flex;
}

.clients_screen_dots {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 21px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3px;
}

.clients_screen_dots span {
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.clients_screen_dots span:nth-of-type(1) {
  background-color: #ff625a;
}

.clients_screen_dots span:nth-of-type(2) {
  background-color: #febd2e;
}

.clients_screen_dots span:nth-of-type(3) {
  background-color: #29ce42;
}


/* Edition */

.edition-wrap {
  background: url(../images/edition/bckgrnd.jpg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;

  padding: 10.4rem 0 7rem;
  overflow: hidden;
}

.edition_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.edition_img {
  width: 49.5%;
  position: relative;
  padding-top: 45%;
}

.absolute {
  position: absolute;
}

.edition_img-first {
  top: 0%;
  left: 1%;
  width: 52%;
  z-index: 2;
}

.edition_img-second {
  top: 18.7%;
  right: 1%;
  width: 75.5%;
  z-index: 1;
}

.edition_img-third {
  top: 6.1%;
  right: 10%;
  width: 44.6%;
  z-index: 3;
}

.edition_img-fourth {
  top: 62.3%;
  right: 15%;
  width: 45%;
  z-index: 4;

  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.16);
}

.edition_content {
  width: 40.4%;
  padding-top: 3.5rem;
  color: #fff;
}

.edition_title {
  white-space: nowrap;
  line-height: 0.95em;
  color: #fff;
}

.edition_text.content_text {
  line-height: 1.57em;
  margin: 2.5rem 0 4.5rem;
  padding-right: 0;
  max-width: 530px;
}

.edition_btn {
  background: #edd550;
  padding: 2.1rem 3.5rem;
  color: #fff;
}

.edition_btn:hover {
  background: #b68bdb;
}

/* Advanced */

.advanced-wrap {
  padding: 8.9rem 0 6.5rem;
  text-align: center;
  overflow: hidden;
}

.advanced_title {
  line-height: 0.95em;
}

.advanced_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 4rem 30px 0;
  margin: 0 auto;
  width: 100%;
}

.advanced_col {
  padding: 0 30px;
}

.advanced_item {
  width: 100%;
  padding-bottom: 4rem;
}

.advanced_item img {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);

  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.advanced_item:hover img {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Plugins */

.plugins-wrap {
  background: #2c363b;
  color: #fff;
  text-align: center;

  padding: 8.8rem 0 8rem;
  overflow: hidden;
}

.plugins_title {
  color: inherit;
  line-height: 0.95em;
  margin-bottom: 3.3rem;
}

.plugins_subtitle {
  font-size: 1.57rem;
  /* 22px */
  font-weight: 200;
  line-height: 1.5em;
}

.plugins_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-top: 4.9rem;
  margin-right: -100px;
}

.plugin {
  padding-right: 100px;
}

.plugin img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);

  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.plugin_caption {
  color: inherit;
  text-align: center;
  padding-top: 1.4rem;
  line-height: 1.55em;
}

/* Elm Section */

.elm-wrap {
  padding: 7.1em 0 8.2em;
  background-color: #fff;
}

.elm_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  grid-gap: 30px;
}

.elm_content {
  max-width: 670px;
}

.elm_title {
  line-height: 0.917em;
}

.elm_text.content_text {
  line-height: 1.6em;
  margin: 2.1em 0 1.8em;
  padding-right: 0;
}

.elm_list {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  justify-content: start;
  grid-gap: 35px;
}

.elm_list li {
  font-size: 1.43rem;
  line-height: 1em;
  letter-spacing: 0;
  color: #9caab2;
  padding-left: 33px;
  list-style-type: none;
  position: relative;
}

.elm_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background: url("../images/elm/check.svg") center no-repeat;
  background-size: contain;
}

.elm_list li+li {
  margin-top: 25px;
}

.elm_img {
  position: relative;
  padding-bottom: 9.6%;
  max-width: 620px;
}

.elm_img-first {
  max-width: 520px;
  width: 84%;
  position: relative;
  margin-left: auto;
  display: block;
}

.elm_img-second {
  bottom: 0;
  left: 0;
  max-width: 354px;
  width: 59%;
  box-shadow: 5px 5px 35px rgba(0, 0, 0, 0.05);
}

.elm_img-third {
  top: 29.5%;
  left: 0;
  max-width: 226px;
  width: 37%;
}

.elm_img-fourth {
  top: 34%;
  right: 36%;
  max-width: 95px;
  width: 18%;
  border-radius: 100px;
  display: inline-block;
}

/* Double  */

.double_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  text-align: center;
  margin: 0;
}

.double {
  padding: 6rem 5rem 5rem;
}

.double_par {
  padding-top: 2.6rem;
  line-height: 1.5em;
  color: #9caab2;
}

.donation {
  background: #e6ecf1;
}

.events {
  background: #f1f5f8;
}

.donation_img {
  width: 92%;
  margin: 5rem auto 0;
  padding-right: 2rem;
}

.events_img {
  width: 93%;
  margin: 2rem auto 0;
  padding-left: 0.7rem;
}

/* Blog */

.blog-wrap {
  padding: 10.4rem 0;
  overflow: hidden;
}

.blog_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 9rem;
}

.blog_content {
  width: 42%;
}

.blog_title {
  white-space: pre-wrap;
  line-height: 0.95em;
}

.content_text {
  line-height: 1.57em;
  margin: 3rem 0 4.5rem;
  padding-right: 6rem;
}

.blog_btn {
  background: #b68bdb;
  padding: 2.1rem 3.5rem;
  color: #fff;
}

.blog_btn:hover {
  background: #edd550;
}

.blog_img {
  width: 49.5%;
  position: relative;
  padding-top: 34%;
}

.blog_img-first {
  top: 7.2%;
  left: 1%;
  width: 98%;
  z-index: 1;
}

.blog_img-second {
  top: 43.2%;
  left: 1%;
  width: 33.5%;
  z-index: 2;

  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}

.blog_img-third {
  top: 61.5%;
  right: 17.7%;
  width: 38.6%;
  z-index: 3;

  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
}

.blog_img-fourth {
  top: 30.3%;
  right: 1%;
  width: 38%;
  z-index: 2;

  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
}

.blog_img-fifth {
  top: 12.6%;
  left: 2.8%;
  width: 16.6%;
  z-index: 3;
}

hr {
  height: 2px;
  color: #edf1f4;
  opacity: 0.5;
}

.blog_list {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: space-between;
  -ms-align-items: flex-end;
  align-items: flex-end;
  margin: 0 auto;
  padding-top: 4rem;
}

.blog_list-item {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  padding-right: 0;
  width: auto;
}

.blog_list-caption {
  padding-top: 1.4rem;
}

span:before {
  color: #323e45;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}

.icon-sticky:before {
  font-size: 4.3rem;
}

.icon-photo:before {
  font-size: 3.7rem;
}

.icon-video:before {
  font-size: 3.45rem;
}

.icon-quote:before {
  font-size: 4rem;
}

.icon-default:before {
  font-size: 4.2rem;
}

.icon-gallery:before {
  font-size: 3.7rem;
}

.icon-audio:before {
  font-size: 3.9rem;
}

.icon-link:before {
  font-size: 3.6rem;
}

/*  Features  */

.features-wrap {
  text-align: center;
  background: #edf1f4;
  color: #000;
  padding: 9rem 0 8.5rem;
  overflow: hidden;
}

.features_inner {
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 5.1rem;
}

.features_title {
  color: #323e45;
  line-height: 1em;
}

.features_subtitle {
  font-size: 2.14rem;
  font-weight: 300;
  padding-top: 1.3rem;
  color: #0d0d0d;
}

.features_item {
  background-color: #fff;
  width: 100%;
  position: relative;
  padding-top: 131.2%;
}

.features_column {
  transition: transform 0.2s linear;
}

.features_column:hover {
  transform: translateY(-5px);
}

.features_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;

  text-align: center;
  padding-top: 5.7rem;
}

.features_img {
  width: 29%;
  margin: 0 auto;
}

.features_img img {
  width: 100%;
}

.features_content h4 {
  line-height: 1.39em;
  margin: 3rem 0 2rem;
}

.features_text {
  line-height: 1.7em;
  font-size: 1.07rem;
  font-weight: 400;
  color: #9caab2;
  padding: 0 4.2rem;
}

/* Footer */

.footer-wrap {
  background: url(../images/footer/footer.jpg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  color: #fff;
  text-align: center;

  padding: 8.6rem 0 10.4rem;
  overflow: hidden;
}

.footer_title {
  color: inherit;
  line-height: 1em;
}

.footer_text {
  font-size: 2.86rem;
  font-weight: 200;
  padding: 1rem 0 3.45rem;
}

.footer_btn {
  color: inherit;

  padding: 2.15rem 3.65rem;
  background: #edd550;
}

.footer_btn:hover {
  color: inherit;
  background: #b68bdb;
}

/* Top Button */

#topBtn {
  position: fixed;
  bottom: 30px;
  right: 31px;
  font-size: 2rem;
  width: 4.6rem;
  height: 4.6rem;
  background: #edd550;
  color: #fff;
  z-index: 100;
  border: none;
  outline: none;
  cursor: pointer;
  display: none;
  opacity: 0.6;
  transition: all 0.3s linear;
}

#topBtn:hover {
  opacity: 1;
  outline: none;
  background: #b68bdb;
}

/*LOADER*/

#loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1000;
  transition: 0.3s ease opacity;
}

#loader:before,
#loader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 2px solid #b68bdb;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: loaderCircleAnim;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#loader:after {
  animation-delay: 1s;
}

@keyframes loaderCircleAnim {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }

  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }

  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }

  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}