@charset "utf-8";

/*-----------------------------------
#   Fonts 
------------------------------------*/
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.eot');
    src: url('../fonts/Lato-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Light.woff2') format('woff2'),
        url('../fonts/Lato-Light.woff') format('woff'),
        url('../fonts/Lato-Light.ttf') format('truetype'),
        url('../fonts/Lato-Light.svg#Lato-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.eot');
    src: url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Bold.woff2') format('woff2'),
        url('../fonts/Lato-Bold.woff') format('woff'),
        url('../fonts/Lato-Bold.ttf') format('truetype'),
        url('../fonts/Lato-Bold.svg#Lato-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.eot');
    src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff'),
        url('../fonts/Lato-Regular.ttf') format('truetype'),
        url('../fonts/Lato-Regular.svg#Lato-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*-----------------------------------
#   Common Css 
------------------------------------*/

body {
  height: 100%;
  font-size: 14px;
  font-family: 'Lato';
  line-height: 1;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #222;
  background-color: #FFF;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  outline: none !important;
  color: inherit;
  transition: 0.3s ease;
}

@media(hover: hover){
  a:hover{
      color: inherit;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin: 0;
}

/*---------------------------
# Selection
----------------------------*/
::selection {
  background: #09FBD3;
  color: #ffffff;
}
::-webkit-selection {
  background: #09FBD3;
  color: #ffffff;
}
::-moz-selection {
  background: #09FBD3;
  color: #ffffff;
}
::-o-selection {
  background: #09FBD3;
  color: #ffffff;
}
::-ms-selection {
  background: #09FBD3;
  color: #ffffff;
}

/*---------------------------
# PlaceHolder
----------------------------*/

::-webkit-input-placeholder {
    color: #817284 !important;
    opacity: 1;
}
::-moz-placeholder {
    color: #817284 !important;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #817284 !important;
    opacity: 1;
}
:-moz-placeholder {
    color: #817284 !important;
    opacity: 1;
}

/*---------------------------
# Button CSS
----------------------------*/
.button {
  display: inline-block;
  font-size: 16px;
  color: #000;
  font-family: 'Lato';
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #09FBD3;
  border: 1px solid transparent;
  padding: 7px 18px;
  outline: none;
  border-radius: 4px;
  transition: all 500ms ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/*---------------------------
# Button Size
----------------------------*/
.button-sm {
  font-size: 16px;
  padding: 3px 15px;
}

.button-lg {
  font-size: 20px;
  padding: 9px 15px;
}

/*---------------------------
# Button Varients
----------------------------*/

.button-red {
  background-color: #BD3120;
  color: #fff;
  border-color: #BD3120;
}

/*---------------------------
# Button Hover CSS
----------------------------*/

@media(hover: hover) {
  .button.button-red:hover {
      background-color: #172127;
      color: #FFF;
      border-color: #172127;
  }
}

/*---------------------------
# Form CSS
----------------------------*/

.form-group {
  margin-bottom: 25px;
}

.form-control {
  font-size: 16px;
  font-family: 'Lato';
  line-height: 20px;
  padding: 14px 16px;
  height: 48px;
  border-radius: 4px;
  border-color: #ECECEC;
  color: #100F0F;
  background-color: #FFF;
}

.form-control:focus {
  color: #100F0F;
  background-color: #fff;
  border-color: #09FBD3;
  outline: 0;
  box-shadow: none;
}

.custom-select {
  background: #FFF url("../images/icons/dropdown.svg") right .75rem center/8px 10px no-repeat;
  background-size: 14px;
  padding: 14px 16px;
  height: 48px;
  line-height: 0;
  font-size: 16px;
  font-family: 'Lato';
  border-radius: 4px;
  border-color: #ECECEC;
  color: #100F0F;
  background-color: #FFF;
}

.custom-select:focus {
  color: #100F0F;
  background-color: #fff;
  border-color: #BD3120;
  outline: 0;
  box-shadow: none;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

/*---------------------------
# Radio Button CSS
----------------------------*/

.theme-radio [type="radio"]:checked,
.theme-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.theme-radio [type="radio"]:checked+label,
.theme-radio [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

.theme-radio [type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #09FBD3;
  border-radius: 100%;
  background: #fff;
}

.theme-radio [type="radio"]:checked+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #BD3120;
  border-radius: 100%;
  background: #fff;
}

.theme-radio [type="radio"]:checked+label:after,
.theme-radio [type="radio"]:not(:checked)+label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #BD3120;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.theme-radio [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.theme-radio [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*---------------------------
#   Checkbox CSS
----------------------------*/

.theme-checkbox {
  position: relative;
}

.theme-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 2px;
}

.theme-checkbox input[type="checkbox"]~.label::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid #bd3120;
  border-width: 0 2.5px 2.5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 7px;
  top: 5px;
  display: none;
}

.theme-checkbox input[type="checkbox"]:checked~.label::after {
  display: inline-block;
}


/*---------------------------
# Intl Input CSS
----------------------------*/

.iti {
  width: 100%;
}

/*----------------------------------
# Validate Form Validation  CSS
-----------------------------------*/

span.is-invalid {
  display: block;
  width: 100%;
  margin-top: .25rem;
  font-size: 1em;
  color: #dc3545;
}

.form-control.is-invalid,
.form-control.is-valid {
  background-image: none !important;
}


/*-----------------------------------
# Header Css Start
-----------------------------------*/

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: transparent;
  padding: 10px 0;
  z-index: 10;
}
/*.header::before {
  content: '';
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: 1040px;
  position: absolute;
  top: 0;
  right: 0;
  width: 1040px;
  height: 886px;
  z-index: -1;
}*/
.header .container {
  display: flex;
  align-items: center;
}
.header .top-logo {
  margin-right: auto;
}
.header .top-logo a img {
  width: 170px;
}
.header .top-logo a .logo-white {
  display: none;
}
.header .top-logo a .black-logo {
  display: block;
}
.header.header-varient-dark.sticky-header .black-logo {
  display: none;
}
.header.header-varient-dark.sticky-header .logo-white {
  display: block;
  width: 150px;
}
.header.header-varient-dark.sticky-header .button {
  font-size: 16px;
  padding: 4px 13px;
}
.header .main-navigation ul {
  display: inline-flex;
  vertical-align: middle;
}
.header .main-navigation ul li {
  padding-right: 50px;
}
.header .main-navigation ul li a {
  display: block;
  color: #fff;
  font-size: 16px;
  transition: all ease 0.4s;
  font-weight: 400;
  position: relative;
}
.header .main-navigation ul li a:hover {
  color: #09FBD3;
}
.header .main-navigation .close-btn {
  display: none;
  line-height: 32px;
}
.header .main-navigation .close-btn img {
  width: 20px;
}
.header-right .user-control .dropdown {
  border: 1px solid #ddd;
  padding: 2px 5px;
  border-radius: 4px;
}
.header-right .btn.dropdown-toggle {
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}
.header-right .dropdown-menu.show {
  transform: translate(-1px, 31px) !important;
}
.header-right .dropdown-menu {
  background-color: #fff;
  padding: 0;
  min-width: 96px;
}
.header-right .dropdown-menu li {
  padding: 6px 10px;
  border-bottom: 1px solid #ddd;
}
.header-right .dropdown-menu li:last-child {
  border-bottom: none;
}
.header-right .dropdown-menu li a{
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.header-right .bars-icons {
  display: none;
}
.header-right .navbar-toggler {
  padding: 0 !important;
  box-shadow: none;
  margin-left: 15px;
}
.header .navbar-toggler .black-bars {
  display: block;
}
.header .navbar-toggler .white-bars {
  display: none;
}
.header-varient-dark.sticky-header .navbar-toggler .black-bars {
  display: none;
}
.header-varient-dark.sticky-header .navbar-toggler .white-bars {
  display: block;
}
.header-right .navbar-toggler img {
  width: 24px;
  margin-top: -6px;
}
.header-right .user-control {
  display: inline-flex;
  align-items: center;
  margin: 0 -10px;
}
.header-right {
  margin-right: 10px;
}
.header::after {
  content: "";
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  transition: all 0.5s ease-in-out;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
}
body.mobile-navbar-open .header::after {
  display: block;
}

.header-right ul li a.button:hover {
  background-color: #fff;
  color: #000;
}

.header.header-varient-dark.sticky-header {
  background-color: #121519;
}

/*-----------------------------
#  Banner Start Css
-----------------------------*/

.banner {
  padding: 300px 0 280px;
  position: relative;
}
.banner:before {
  content: '';
  background-image: url(../images/product.png);
  background-repeat: no-repeat;
  background-size: 773px;
  position: absolute;
  top: 100px;
  right: 50px;
  width: 773px;
  height: 732px;
  z-index: 9;
}
.banner::after {
  content: '';
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: 1140px;
  position: absolute;
  top: -120px;
  right: 0;
  width: 1060px;
  height: 986px;
  z-index: -1;
}
.banner-info {
  position: relative;
}
.banner-info::before {
  content: url(../images/cot-bg.png);
  position: absolute;
  top: 60px;
  left: 0;
  width: 193px;
  height: 323px;
  opacity: 0.5;
}
.banner .banner-info h1 {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  padding-bottom: 10px;
}
.banner .banner-info p {
  font-size: 22px;
  font-weight: 300;
  color: #000;
  line-height: 32px;
  padding-bottom: 25px;
}
.banner .banner-info .img-block a {
  margin-right: 15px;
  z-index: 9;
  position: relative;
}
.banner .img-product {
  text-align: right;
  display: none;
}


/*---------------------------
  # About Start Css
----------------------------*/
.about {
  padding: 100px 0;
  position: relative;
}
.about .about-info h2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.about .about-info h2 span {
  color: #09FBD3;
}
.about .about-info p {
  color: #4F4F4F;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}
.about-info ul li {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 25px;
  padding-bottom: 25px;
  font-weight: 400;
  display: flex;
  align-items: baseline;
}
.about-info ul li span {
  padding-left: 10px;
}
.about-info ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f138";
  color: #09fbd3;
  font-size: 16px;
}
.about .circle {
  border-radius: 100%;
  background-color: #09FBD3;
  position: relative;
  z-index: -1;
}
.about .circle:before,
.about .circle:after {
  content: '';
  display: block;
  position: absolute;
  top: 150px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 20px solid #09FBD3;
  border-radius: 100%;
  height: 300px;
  width: 300px;
  margin: 0 auto;
}
.about .circle:before {
  animation: ripple 2s linear infinite;
}
.about .circle:after {
  animation: ripple 2s linear 1s infinite;
}
@keyframes ripple{
  0% { transform: scale(1); }
  50% { transform: scale(1.3); opacity:1; }
  100% { transform: scale(1.6); opacity:0; }
}
.about .img-block {
  text-align: center;
  margin: 0 auto;
}

/*----------------------------
# Features Start Css
-----------------------------*/
.features .section-title {
  text-align: center;
  padding-bottom: 50px;
}
.features .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.features .section-title h2 span {
  color: #09FBD3;
}
.features .section-title p {
  color: #4F4F4F;
  font-size: 18px;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}
.unique-code .unique-info {
  width: 50%;
  float: left;
  margin-bottom: 60px;
}
.unique-code .unique-info img {
  margin-bottom: 15px;
}
.unique-code .unique-info h3 {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  padding-bottom: 10px;
}
.unique-code .unique-info p {
  font-size: 16px;
  font-weight: 400;
  color: #4F4F4F;
}
.features .img-block {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

/*-----------------------------------
  # Karlot Apps Screenshot Section
-------------------------------------*/

.app-screen {
  padding: 100px 0px;
}
.app-screen .app-info h2 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.app-screen .app-info h2 span {
  color: #09FBD3;
  display: block;
}
.app-screen .app-info p {
  color: #4F4F4F;
  font-size: 18px;
  font-weight: 400;
}
.app-screen .owl-carousel .owl-nav.disabled, .app-screen .owl-carousel .owl-dots.disabled {
  display: block;
}
.app-screen .owl-carousel .owl-nav button.owl-prev span {
  content: url(../images/icons/left.svg);
  position: absolute;
  left: -120px;
  bottom: 50px;
  width: 24px;
  height: 10px;
}
.app-screen .owl-carousel .owl-nav button.owl-next span {
  content: url(../images/icons/right.svg);
  position: absolute;
  left: -76px;
  bottom: 50px;
  width: 24px;
  height: 10px;
}
.app-screen .owl-dots.disabled {
  display: none !important;
}
.app-screen .owl-carousel .owl-item img {
  width: auto;
}


/*--------------------------
  # Footer Start Csss
---------------------------*/

.footer {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 60px;
}
.footer h2 {
  color: #000;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.footer p {
  color: #2E384C;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 20px;
  line-height: 24px;
}
.footer .img-block a img {
  margin-right: 15px;
}
.footer .mobile-img {
  text-align: left;
}


/*--------------------------
  # Copyright Css
----------------------------*/
.copyright {
  background-color: #13E3C1;
  padding: 12px 0;
}
.copyright p {
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}



/* ----- */


.features .promo_area {
  height: auto;
  position: relative;
}
.features .main-title {
  position: absolute;
  top: 44%;
  left: 45%;
}
.features .main-title h1 {
  font-size: 48px;
}
.features .promo_area .round-planet {
  width: 550px;
  height: 550px;
  border: 1px solid #09FBD3;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.features .promo_area .round-planet.planet {
  top: 51%;
}
.features .promo_area .round-planet.planet2 {
  width: 450px;
  height: 450px;
}
.features .promo_area .round-planet.planet3 {
  width: 350px;
  height: 350px;
}
.features .promo_area .round-planet .star {
  border-radius: 50%;
  top: 50%;
  left: 50%;
  position: absolute;
}
.features .promo_area .round-planet .star.star1 {
  margin-top: -15px;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  background: #09FBD3;
  -webkit-animation: spinnerRotate 20s linear infinite;
  animation: spinnerRotate 20s linear infinite;
}
.features .promo_area .round-planet .star.star2 {
  -webkit-animation: spinnerRotateone 20s linear infinite;
  animation: spinnerRotateone 20s linear infinite;
  width: 18px;
  height: 18px;
  background: #09FBD3;
  margin-top: -9px;
  margin-left: -9px;
}

.features .promo_area .round-planet .star.star3 {
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  -webkit-animation: spinnerRotatetwo 20s linear infinite;
  animation: spinnerRotatetwo 20s linear infinite;
  background: #09FBD3;
}

.features .promo_area .round-planet .star.star4 {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  -webkit-animation: spinnerRotatethree 20s linear infinite;
  animation: spinnerRotatethree 20s linear infinite;
  background: #09FBD3;
}
.features .promo_area .round-planet .star.star5 {
  -webkit-animation: spinnerRotatefour 25s linear infinite;
  animation: spinnerRotatefour 25s linear infinite;
}

.features .promo_area .round-planet .star.star6 {
  -webkit-animation: spinnerRotatefive 25s linear infinite;
  animation: spinnerRotatefive 25s linear infinite;
}

.features .promo_area .round-planet .star.star7 {
  -webkit-animation: spinnerRotatesix 25s linear infinite;
  animation: spinnerRotatesix 25s linear infinite;
}

.features .promo_area .round-planet .star.star8 {
  -webkit-animation: spinnerRotateseven 25s linear infinite;
  animation: spinnerRotateseven 25s linear infinite;
}

/*spinner keyframe
=======================================================*/
@-webkit-keyframes spinnerRotate {
  0% {
    -webkit-transform: rotate(0deg) translateX(225px);
    transform: rotate(0deg) translateX(225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(225px);
    transform: rotate(250deg) translateX(225px);
  }
}
@keyframes spinnerRotate {
  0% {
    -webkit-transform: rotate(0deg) translateX(225px);
    transform: rotate(0deg) translateX(225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(225px);
    transform: rotate(250deg) translateX(225px);
  }
}

@-webkit-keyframes spinnerRotateone {
  0% {
    -webkit-transform: rotate(0deg) translateY(225px);
    transform: rotate(0deg) translateY(225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(225px);
    transform: rotate(250deg) translateY(225px);
  }
}

@keyframes spinnerRotateone {
  0% {
    -webkit-transform: rotate(0deg) translateY(225px);
    transform: rotate(0deg) translateY(225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(225px);
    transform: rotate(250deg) translateY(225px);
  }
}

@-webkit-keyframes spinnerRotatetwo {
  0% {
    -webkit-transform: rotate(0deg) translateY(-225px);
    transform: rotate(0deg) translateY(-225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(-225px);
    transform: rotate(250deg) translateY(-225px);
  }
}

@keyframes spinnerRotatetwo {
  0% {
    -webkit-transform: rotate(0deg) translateY(-225px);
    transform: rotate(0deg) translateY(-225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(-225px);
    transform: rotate(250deg) translateY(-225px);
  }
}

@-webkit-keyframes spinnerRotatethree {
  0% {
    -webkit-transform: rotate(0deg) translateX(-225px);
    transform: rotate(0deg) translateX(-225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(-225px);
    transform: rotate(250deg) translateX(-225px);
  }
}

@keyframes spinnerRotatethree {
  0% {
    -webkit-transform: rotate(0deg) translateX(-225px);
    transform: rotate(0deg) translateX(-225px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(-225px);
    transform: rotate(250deg) translateX(-225px);
  }
}

@-webkit-keyframes spinnerRotatefour {
  0% {
    -webkit-transform: rotate(0deg) translateX(275px);
    transform: rotate(0deg) translateX(275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(275px);
    transform: rotate(250deg) translateX(275px);
  }
}

@keyframes spinnerRotatefour {
  0% {
    -webkit-transform: rotate(0deg) translateX(275px);
    transform: rotate(0deg) translateX(275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(275px);
    transform: rotate(250deg) translateX(275px);
  }
}

@-webkit-keyframes spinnerRotatefive {
  0% {
    -webkit-transform: rotate(0deg) translateY(275px);
    transform: rotate(0deg) translateY(275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(275px);
    transform: rotate(250deg) translateY(275px);
  }
}

@keyframes spinnerRotatefive {
  0% {
    -webkit-transform: rotate(0deg) translateY(275px);
    transform: rotate(0deg) translateY(275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(275px);
    transform: rotate(250deg) translateY(275px);
  }
}

@-webkit-keyframes spinnerRotatesix {
  0% {
    -webkit-transform: rotate(0deg) translateY(-275px);
    transform: rotate(0deg) translateY(-275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(-275px);
    transform: rotate(250deg) translateY(-275px);
  }
}

@keyframes spinnerRotatesix {
  0% {
    -webkit-transform: rotate(0deg) translateY(-275px);
    transform: rotate(0deg) translateY(-275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateY(-275px);
    transform: rotate(250deg) translateY(-275px);
  }
}

@-webkit-keyframes spinnerRotateseven {
  0% {
    -webkit-transform: rotate(0deg) translateX(-275px);
    transform: rotate(0deg) translateX(-275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(-275px);
    transform: rotate(250deg) translateX(-275px);
  }
}

@keyframes spinnerRotateseven {
  0% {
    -webkit-transform: rotate(0deg) translateX(-275px);
    transform: rotate(0deg) translateX(-275px);
  }
  100% {
    -webkit-transform: rotate(250deg) translateX(-275px);
    transform: rotate(250eg) translateX(-275px);
  }
}



.test {
  animation: UpDown 3s linear infinite;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 4em;
  cursor: pointer;
  color: #715c3f;
}

@keyframes UpDown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: .5em;
  }
  100% {
    bottom: 0;
  }
}


.img-block.ab-animation {
  animation: UpDown 3s linear infinite;
  position: relative;
  left: 0;
  bottom: 0;
  font-size: 4em;
  cursor: pointer;
  color: #715c3f;
}
@keyframes UpDown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: .5em;
  }
  100% {
    bottom: 0;
  }
}