/**
 * HEADING
 */
.head_section {
  position: relative;
  font-family: "Nunito", sans-serif;
}
.head_section .title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  position: relative;
  color: #e7410d;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  z-index: 2;
}

.head_block {
  position: relative;
  font-family: "Nunito", sans-serif;
}
.head_block .title {
  margin: 0;
  position: relative;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #e7410d;
}

.head_footer {
  position: relative;
  font-family: "Nunito", sans-serif;
}
.head_footer .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 10px;
  position: relative;
}
.head_footer .title::after {
  content: "";
  height: 2px;
  width: 35px;
  position: absolute;
  left: 0;
  bottom: 0px;
  background: #fff;
}

/**
 * MENU MOBILE & TABLET
 */
.gv_menu_block {
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease 0s;
  z-index: 99;
  width: 90%;
  max-width: 340px;
  background: #dedede;
  height: 100vh;
  font-family: "Nunito", sans-serif;
}
.gv_menu_block .search-nav {
  position: relative;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 15px;
}
.gv_menu_block .search-nav > button {
  position: absolute;
  right: 20px;
  top: 8px;
  height: 40px;
  width: 40px;
  outline: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
}
.gv_menu_block .search-nav > button svg {
  display: block;
  height: 26px;
  width: 26px;
}
.gv_menu_block .search-nav > button svg path {
  fill: #000;
}
.gv_menu_block .search-nav form {
  position: relative;
}
.gv_menu_block .search-nav form input {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #bbb;
  padding: 10px 46px 10px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
.gv_menu_block .search-nav form > button {
  height: 36px;
  width: 36px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  outline: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gv_menu_block .search-nav form > button svg {
  display: block;
  height: 18px;
  width: 18px;
}
.gv_menu_block .search-nav form > button svg path {
  fill: #333;
}
.gv_menu_block .menu-nav {
  list-style: none;
  padding: 0 20px 0;
  margin: 0;
}
.gv_menu_block .menu-nav > li {
  position: relative;
  display: block;
}
.gv_menu_block .menu-nav > li > a {
  color: #000;
  padding: 14px 0px;
  display: flex;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 1px dotted #bfbfbf;
  line-height: 20px;
}
.gv_menu_block .menu-nav > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 44px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gv_menu_block .menu-nav > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .menu-nav > li > .sub-menu {
  display: none;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_menu_block .menu-nav > li > .sub-menu > li {
  display: block;
  position: relative;
  padding: 0 0px;
}
.gv_menu_block .menu-nav > li > .sub-menu > li > a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #fff;
  color: #FFF;
}
.gv_menu_block .menu-nav > li > .sub-menu > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gv_menu_block .menu-nav > li > .sub-menu > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul {
  display: none;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li {
  display: block;
  position: relative;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li > a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #fff;
  color: #FFF;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .support-nav {
  padding: 24px 20px 0;
  text-align: center;
}
.gv_menu_block .support-nav a {
  background: var(--primary-Color);
  color: #fff;
  padding: 10px 16px;
  line-height: 20px;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  border-radius: 30px;
}

.gv_menu_block.open {
  transform: translateX(0);
}

/**
 * BREADCRUMB
 */
.gv_breadcrumb_block {
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.gv_breadcrumb_block .container .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gv_breadcrumb_block .container .flex .flx-left {
  flex: 0 0 70%;
  max-width: 70%;
}
@media (max-width: 991px) {
  .gv_breadcrumb_block .container .flex .flx-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 20px;
  }
}
.gv_breadcrumb_block .container .flex .flx-right {
  flex: 0 0 30%;
  max-width: 30%;
}
@media (max-width: 991px) {
  .gv_breadcrumb_block .container .flex .flx-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_breadcrumb_block .breadcrumb-nav {
  display: block;
}
.gv_breadcrumb_block .breadcrumb-nav span,
.gv_breadcrumb_block .breadcrumb-nav a {
  font-family: var(--primary-Font);
  font-size: 14px;
  color: #333;
  line-height: normal;
}
.gv_breadcrumb_block .breadcrumb-nav a:hover {
  color: var(--primary-Color);
}
.gv_breadcrumb_block .orderby-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .gv_breadcrumb_block .orderby-box {
    justify-content: flex-start;
  }
}
.gv_breadcrumb_block .orderby-box span {
  margin-right: 10px;
}
.gv_breadcrumb_block .orderby-box .woocommerce-ordering {
  float: none;
  margin: 0;
}
.gv_breadcrumb_block .orderby-box .woocommerce-ordering select {
  outline: none;
  width: 180px;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 0;
}

.gv_breadcrumb_nav {
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.gv_breadcrumb_nav .breadcrumb-nav {
  display: block;
}
.gv_breadcrumb_nav .breadcrumb-nav span,
.gv_breadcrumb_nav .breadcrumb-nav a {
  font-family: var(--primary-Font);
  font-size: 14px;
  color: #333;
  line-height: normal;
}
.gv_breadcrumb_nav .breadcrumb-nav a:hover {
  color: var(--primary-Color);
}

/**
 * DESC
 */
.desc {
  font-family: "Nunito", "Helvetica", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.desc img {
  max-width: 100%;
  height: auto;
}
.desc h1 {
  font-size: 1.9em;
}
.desc h2 {
  font-size: 1.6em;
}
.desc h3 {
  font-size: 1.3em;
}
.desc h4 {
  font-size: 1.2em;
}
.desc h5 {
  font-size: 1.1em;
}
.desc h6 {
  font-size: 1em;
}
.desc ol, .desc ul {
  padding-left: 18px;
}
.desc ol li, .desc ul li {
  padding-bottom: 4px;
}
.desc ol li:last-child, .desc ul li:last-child {
  padding-bottom: 0;
}
.desc table {
  width: 100%;
  border: 1px solid #ccc;
}
.desc table tr td {
  padding: 5px 10px;
  border: 1px solid #ccc;
}
.desc iframe, .desc object {
  width: 100%;
}
.desc .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
}
.desc .aligncenter img {
  max-width: 100%;
  height: auto;
}
.desc .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
}
.desc .alignleft img {
  max-width: 100%;
  height: auto;
}
.desc .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.desc .alignright img {
  max-width: 100%;
  height: auto;
}

/**
 * CONTENT
 */
.entry-content {
  font-family: var(--primary-Font);
  font-size: 15px;
  line-height: 1.67;
  text-align: justify;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content h1 {
  font-size: 1.8em;
}
.entry-content h2 {
  font-size: 1.5em;
}
.entry-content h3 {
  font-size: 1.2em;
}
.entry-content h4 {
  font-size: 1.1em;
}
.entry-content h5 {
  font-size: 1.05em;
}
.entry-content h6 {
  font-size: 1em;
}
.entry-content iframe {
  max-width: 100%;
}
.entry-content object {
  max-width: 100%;
}
.entry-content ul,
.entry-content ol {
  padding-left: 18px;
}
.entry-content table {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid #ccc;
}
.entry-content table tbody tr td {
  padding: 6px 12px;
  border: 1px solid #ccc;
}
.entry-content .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
}
.entry-content .aligncenter img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
}
.entry-content .alignleft img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.entry-content .alignright img {
  max-width: 100%;
  height: auto;
}
.entry-content .wp-caption-text {
  background: #fdfdfd;
  text-align: center;
  margin-bottom: 13px;
  font-style: italic;
  padding: 6px;
  font-size: 13px;
}

/**
 * LOOP POST
 */
.post_inner {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin: 0;
}
.post_inner .image {
  position: relative;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 58%;
  width: 100%;
  background-position: center;
  position: relative;
  height: auto;
  overflow: hidden;
}
.post_inner .image > a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
}
.post_inner .image span {
  position: absolute;
  left: 8px;
  top: 8px;
  height: 44px;
  width: 44px;
  background: #084bc7;
  display: flex;
  border-radius: 3px;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.post_inner .image span b, .post_inner .image span i {
  font-style: normal;
  display: block;
  text-align: center;
}
.post_inner .image span b {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 2px;
}
.post_inner .image span i {
  font-size: 12px;
  line-height: 1;
}
.post_inner .image:hover > a img {
  transform: scale(1.19);
}
.post_inner .info {
  position: relative;
  padding-top: 12px;
  text-align: center;
}
.post_inner .info .title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative;
}
.post_inner .info .title::before {
  content: "";
  height: 3px;
  width: 34px;
  background: #bbb;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.post_inner .info .title a {
  color: #333;
}
.post_inner .info .title a:hover {
  color: var(--primary-Color);
}

/**
 * LOOP ARTICLE
 */
.article_inner {
  position: relative;
  font-family: var(--primary-Font);
  margin: 0;
  padding: 0px;
  display: flex;
}
@media (max-width: 575px) {
  .article_inner {
    flex-wrap: wrap;
  }
}
.article_inner .image {
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 991px) {
  .article_inner .image {
    max-width: 180px;
    min-width: 180px;
  }
}
@media (max-width: 575px) {
  .article_inner .image {
    max-width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
  }
}
.article_inner .image > a {
  display: block;
  padding-bottom: 60%;
  height: auto;
  position: relative;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
}
.article_inner .image > a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.article_inner .info {
  flex: 1;
  padding-left: 20px;
  padding-top: 16px;
}
@media (max-width: 991px) {
  .article_inner .info {
    padding-left: 16px;
  }
}
@media (max-width: 575px) {
  .article_inner .info {
    max-width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
  }
}
.article_inner .info .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .article_inner .info .title {
    font-size: 16px;
  }
}
.article_inner .info .title a {
  color: #333;
}
.article_inner .info .title a:hover {
  color: var(--primary-Color);
}
.article_inner .info .date {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.article_inner .info .date span {
  font-size: 14px;
  font-style: italic;
  color: #666;
  display: inline-block;
  margin-right: 10px;
}
.article_inner .info .desc {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/**
 * MY ACCOUNT
 */
.account__nav {
  background: #2c55a5;
  padding: 20px;
}
.account__nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.account__nav > ul > li {
  display: block;
  position: relative;
}
.account__nav > ul > li > a {
  padding: 13px 0;
  display: block;
  color: #FFF;
  border-bottom: 1px dotted #555;
  text-transform: uppercase;
}
.account__nav > ul > li > a:hover {
  color: orange;
}
.account__nav > ul > li:last-child > a {
  border-bottom: 0;
}

.account__content .head__address {
  position: relative;
  margin-bottom: 10px;
}
.account__content .head__address .title {
  font-family: Arial, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 0px;
  position: relative;
  margin: 0;
}
.account__content .head__address .edit {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: blue;
  padding: 1px 8px;
  color: #FFF;
  border-radius: 3px;
}

.address__fields {
  padding: 20px;
  background: #eee;
}

/**
 * CALL NOW
 */
.hotline-phone-ring-wrap {
  position: fixed;
  bottom: 20px;
  left: 0;
  z-index: 999999;
}
.hotline-phone-ring-wrap .hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-circle {
  width: 100px;
  height: 100px;
  top: 0px;
  left: 0px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgb(208, 27, 27);
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  opacity: 0.5;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-circle-fill {
  width: 60px;
  height: 60px;
  top: 18px;
  left: 18px;
  position: absolute;
  background-color: rgb(221, 51, 51);
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle {
  background-color: rgb(221, 51, 51);
  width: 40px;
  height: 40px;
  top: 28px;
  left: 28px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle .pps-btn-img {
  display: flex;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle .pps-btn-img img {
  width: 20px;
  height: 20px;
}
@keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
/**
 * ZALO CHAT
 */
.zalo-call-wrap {
  position: fixed;
  bottom: 100px;
  left: 0;
  z-index: 999999;
}
.zalo-call-wrap .zalo-chat-now {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
.zalo-call-wrap .zalo-chat-now .zalo-chat-now-circle {
  width: 100px;
  height: 100px;
  top: 0px;
  left: 0px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #16b3f0;
  animation: zalo-chat-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  opacity: 0.5;
}
.zalo-call-wrap .zalo-chat-now .zalo-chat-now-circle-fill {
  width: 60px;
  height: 60px;
  top: 18px;
  left: 18px;
  position: absolute;
  background-color: rgb(22, 179, 240);
  border-radius: 100%;
  border: 2px solid transparent;
  animation: zalo-chat-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
.zalo-call-wrap .zalo-chat-now .zalo-chat-now-img-circle {
  background-color: #16b3f0;
  width: 40px;
  height: 40px;
  top: 28px;
  left: 28px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: zalo-chat-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zalo-call-wrap .zalo-chat-now .zalo-chat-now-img-circle .pps-btn-img {
  display: flex;
}
.zalo-call-wrap .zalo-chat-now .zalo-chat-now-img-circle .pps-btn-img img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
}
@keyframes zalo-chat-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@keyframes zalo-chat-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@keyframes zalo-chat-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes hover-imagecategory {
  0% {
    transform: perspective(200px) rotate3d(0, 1, 0, -90deg) translateX(-100%);
  }
  100% {
    transform: perspective(200px) rotate3d(0, 1, 0, 0deg) translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */