svg .B {
  fill: #ffd800;
}

svg .D {
  fill: #d71920;
}

/* ============================================
   HEADER / NAVIGATION STYLES - REDESIGNED
   ============================================ */

/* Root Variables — Carsell TR Brand Palette (logo-matched) */
:root {
  /* Brand core */
  --brand-blue: #0EA5F0;        /* logo "car" + yükselen ok — parlak azure */
  --brand-blue-600: #0B8FD8;    /* hover/darker azure */
  --brand-navy: #0B2440;        /* logo "teklif" + imleç — lacivert */
  --brand-navy-700: #0F3357;    /* navy lighter step (gradients) */

  /* Mapped legacy tokens (geri uyumluluk) */
  --primary-yellow: #0EA5F0;        /* legacy sarı -> marka mavisi */
  --primary-yellow-hover: #0B8FD8;
  --primary-blue: #0EA5F0;
  --primary-blue-dark: #0B2440;
  --primary-blue-light: #EAF6FE;
  --dark-gray: #0B2440;             /* metin için lacivert */

  --brand-gradient: linear-gradient(120deg, #0EA5F0 0%, #0B2440 100%);
  --brand-gradient-soft: linear-gradient(120deg, #E9F6FE 0%, #F4FaFE 100%);
  --border: #e6ecf3;

  --white: #FFFFFF;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(11, 36, 64, 0.06);
  --shadow-md: 0 6px 18px rgba(11, 36, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 36, 64, 0.12);
}

/* Global Font Family */
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   GENEL HOVER EFFECTS
   ============================================ */

/* Tüm linkler için genel hover efekti */
a {
  transition: var(--transition);
  position: relative;
}

/* Tüm linkler için genel hover animasyonu - özel hover'ı olmayanlar için */
a:not(.das-header__cta):not(.mobile-cta-button):not(.mobile-menu__close):not(.nav__link):not(.mobile-nav__link):not(.header__logo):hover {
  transform: translateY(-1px);
}

/* Tüm tıklanabilir elementler için genel hover efekti - özel hover'ı olmayanlar için */
button:not(.header__mobile-toggle):not(.mobile-menu__close):hover,
a:not(.das-header__cta):not(.mobile-cta-button):not(.mobile-menu__close):not(.nav__link):not(.mobile-nav__link):not(.header__logo):hover {
  filter: brightness(1.05);
}

/* Tüm linkler için genel hover efekti - ikon varsa */
a i,
a .bi,
a .fas,
a .far,
a .fab {
  transition: var(--transition);
}

a:hover i,
a:hover .bi,
a:hover .fas,
a:hover .far,
a:hover .fab {
  transform: scale(1.1);
  color: #0B2440; /* hover ikon: mavinin koyu tonu (sarı değil) */
}

/* Tüm butonlar için genel hover efekti */
button:hover,
a.button:hover {
  cursor: pointer;
  filter: brightness(1.1);
}

/* Hover efekti olan elementler için genel stil */
[class*="hover"],
[class*="link"],
[class*="button"] {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   TOPBAR — ince antrasit bilgi şeridi
   ============================================ */

.das-topbar {
  background: #172128;
  padding: 7px 0;
  font-size: 12.5px;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  z-index: 999;
  color: rgba(255, 255, 255, 0.75);
}

.das-topbar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.das-topbar__left,
.das-topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.das-topbar__loc,
.das-topbar__hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.das-topbar__loc i,
.das-topbar__hours i {
  color: #0086ff;
  font-size: 12px;
}

.das-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}

.das-topbar__link i { color: #0086ff; font-size: 12px; }

.das-topbar__link:hover { color: #fff; }

.das-topbar__link--wa i { color: #22c15e; }

.das-topbar__link--wa {
  padding: 3px 12px;
  border-radius: 8px;
  background: rgba(34, 193, 94, 0.14);
  border: 1px solid rgba(34, 193, 94, 0.25);
}

.das-topbar__link--wa:hover {
  background: rgba(34, 193, 94, 0.25);
}

@media (max-width: 1100px) {
  .das-topbar__hide-md { display: none; }
}

/* Scroll ilerleme çubuğu */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #0086ff 0%, #006bd6 100%);
  z-index: 2000;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(0, 134, 255, 0.55);
  transition: width 0.08s linear;
  will-change: width;
}

/* ============================================
   HEADER — kurumsal, tam genişlik
   ============================================ */

.das-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e9eef4;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: box-shadow 0.3s ease;
}

.das-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(23, 33, 40, 0.09);
}

.das-header .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 80px;
}

.das-header .header__brand { flex: 0 0 auto; }

.das-header .header__logo {
  display: inline-flex;
  align-items: center;
}

.das-header .header__logo img {
  max-height: 58px;
  width: auto;
  display: block;
}

/* --- Navigasyon: kayan alt çizgi --- */
.das-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.das-header__nav .nav__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.das-header__nav .nav__link {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #46535f;
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
}

/* Hover: mavi metin */
.das-header__nav .nav__link:hover {
  color: #0086ff;
  transform: none;
}

/* Aktif sayfa: koyu ve kalın metin */
.das-header__nav .nav__item.is-active .nav__link {
  color: #172128;
  font-weight: 700;
}

/* --- Sağ aksiyonlar: dikey ayraçlı blok --- */
.header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 26px;
  border-left: 1px solid #e9eef4;
  align-self: stretch;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.header__phone-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #e8f4ff;
  color: #006bd6;
  font-size: 15px;
  transition: background 0.25s, color 0.25s;
}

.header__phone:hover .header__phone-ico {
  background: #0086ff;
  color: #fff;
}

.header__phone-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__phone-meta small {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7b8a97;
}

.header__phone-meta strong {
  font-size: 14px;
  font-weight: 700;
  color: #172128;
  white-space: nowrap;
}

.header__cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  background:
    linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.16) 50%, transparent 58%) no-repeat,
    #172128;
  background-size: 250% 100%, 100% 100%;
  background-position: 180% 0, 0 0;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 0.3s;
  animation: ctaShine 5.5s ease-in-out infinite;
}

@keyframes ctaShine {
  0%, 72%  { background-position: 180% 0, 0 0; }
  88%, 100% { background-position: -80% 0, 0 0; }
}

.header__cta-btn:hover {
  background:
    linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.16) 50%, transparent 58%) no-repeat,
    #0086ff;
  background-size: 250% 100%, 100% 100%;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 134, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .header__cta-btn { animation: none; }
}

.header__cta-arrow {
  display: inline-flex;
  font-size: 13px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.header__cta-btn:hover .header__cta-arrow {
  transform: translateX(4px);
}

/* --- Hamburger --- */
.das-header .header__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: none;
  background: #172128;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.das-header .header__mobile-toggle:hover { background: #0086ff; }

.das-header .header__mobile-toggle .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 19px;
}

.das-header .header__mobile-toggle .hamburger__line {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.das-header .header__mobile-toggle[aria-expanded="true"] .hamburger__line--top {
  transform: translateY(7px) rotate(45deg);
}

.das-header .header__mobile-toggle[aria-expanded="true"] .hamburger__line--middle {
  opacity: 0;
}

.das-header .header__mobile-toggle[aria-expanded="true"] .hamburger__line--bottom {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBİL MENÜ — koyu antrasit çekmece
   ============================================ */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.mobile-menu.is-open { pointer-events: auto; }

.mobile-menu #das-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 19, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu.is-open #das-overlay { opacity: 1; }

.mobile-menu #das-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 380px;
  background: #172128;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
}

.mobile-menu.is-open #das-drawer { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__logo img {
  max-height: 38px;
  width: auto;
  /* koyu zeminde logoyu aydınlat */
  filter: brightness(0) invert(1);
}

.mobile-menu__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s, transform 0.25s;
}

.mobile-menu__close:hover {
  background: #0086ff;
  transform: rotate(90deg);
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  padding: 26px 22px;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
}

.mobile-nav__no {
  font-size: 0.7rem;
  font-weight: 800;
  color: #0086ff;
  letter-spacing: 0.06em;
}

.mobile-nav__link:hover,
.mobile-nav__link:active,
.mobile-nav__item.is-active .mobile-nav__link {
  background: rgba(0, 134, 255, 0.12);
  color: #fff;
  padding-left: 18px;
}

.mobile-nav__item--primary {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__link--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(115deg, #0086ff 0%, #006bd6 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 10px 26px rgba(0, 134, 255, 0.35);
}

.mobile-nav__link--primary:hover,
.mobile-nav__link--primary:active {
  background: linear-gradient(115deg, #006bd6 0%, #0086ff 100%);
  color: #fff;
  padding-left: 15px;
}

.mobile-nav__link--primary .nav__link-icon { color: #fff; }

.mobile-menu__contact {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.mobile-menu__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s, border-color 0.25s;
}

.mobile-menu__contact-link i { color: #0086ff; }

.mobile-menu__contact-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-menu__contact-link--wa i { color: #22c15e; }

.mobile-menu__contact-link--wa:hover {
  border-color: rgba(34, 193, 94, 0.4);
}

/* Body Scroll Lock */
body.mobile-menu-open {
  overflow: hidden;
}

/* ============================================
   HEADER RESPONSIVE
   ============================================ */

@media (max-width: 1250px) {
  .header__phone { display: none; }
}

@media (max-width: 991px) {
  .das-topbar__left { display: none; }

  .das-topbar__wrapper { justify-content: center; }

  .das-header__nav { display: none; }

  .header__cta-btn { display: none; }

  .header__actions {
    border-left: none;
    padding-left: 0;
    align-self: center;
  }

  .das-header .header__mobile-toggle { display: flex; }

  .mobile-menu { display: block; }

  .das-header .header__wrapper { height: 70px; }
}

@media (max-width: 767px) {
  .das-header .container { padding: 0 16px; }

  .das-header .header__wrapper { height: 64px; }

  .das-header .header__logo img { max-height: 38px; }

  .mobile-menu #das-drawer { width: 100%; max-width: 100%; }
}

@media (max-width: 575px) {
  .das-header .header__wrapper { height: 60px; }

  .das-header .header__logo img { max-height: 33px; }

  .das-topbar { font-size: 11.5px; }

  .das-topbar__right { gap: 14px; }
}

/* ============================================
   FOOTER — açık zemin, kurumsal (ft-*)
   ============================================ */

.ft {
  background: #f4f7fa;
  border-top: 1px solid #e3eaf1;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ft__top { padding: 56px 0 44px; }

.ft__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* --- Marka bloğu --- */
.ft__logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.ft__logo img {
  max-height: 42px;
  width: auto;
  display: block;
}

.ft__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #7b8a97;
  max-width: 34ch;
  margin: 0 0 20px;
}

.ft__contact {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.ft__contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #46535f;
}

.ft__contact li i {
  color: #0086ff;
  font-size: 0.82rem;
  margin-top: 4px;
  width: 14px;
  text-align: center;
}

.ft__contact li a {
  color: #46535f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}

.ft__contact li a:hover { color: #0086ff; }

.ft__social {
  display: flex;
  gap: 8px;
}

.ft__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e3eaf1;
  color: #46535f;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.ft__social a:hover {
  background: #0086ff;
  border-color: #0086ff;
  color: #fff;
  transform: translateY(-2px);
}

/* --- Link sütunları --- */
.ft__title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #172128;
  margin: 6px 0 18px;
}

.ft__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ft__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5b6b78;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}

.ft__links a:hover {
  color: #0086ff;
  padding-left: 4px;
}

/* --- Mini CTA kartı --- */
.ft__cta {
  background: #172128;
  border-radius: 16px;
  padding: 26px 24px;
  color: #fff;
}

.ft__cta h4 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.ft__cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 16px;
}

.ft__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 10px;
  background: #0086ff;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}

.ft__cta-btn:hover {
  background: #006bd6;
  color: #fff;
  transform: translateY(-2px);
}

.ft__cta-btn i { font-size: 0.76rem; }

/* --- Alt bar --- */
.ft__bottom {
  background: #fff;
  border-top: 1px solid #e3eaf1;
  padding: 18px 0;
}

.ft__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ft__bottom-inner p {
  margin: 0;
  font-size: 0.82rem;
  color: #7b8a97;
}

.ft__credit a {
  color: #46535f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s;
}

.ft__credit a:hover { color: #0086ff; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ft__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .ft__top { padding: 44px 0 36px; }

  .ft__grid { grid-template-columns: 1fr; gap: 32px; }

  .ft__bottom-inner { justify-content: center; text-align: center; }
}


.form-call-wrapper {
    font-style: normal;
    text-transform: none;
    word-spacing: normal;
    letter-spacing: normal;
    display: block;
    background: none;
    border: 0;
    border-radius: 0;
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
    font-style: normal;
    text-transform: none;
    height: auto;
    width: auto;
    max-width: none;
    max-height: none;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    outline: 0;
    overflow: visible;
    text-decoration: none;
    vertical-align: top;
    word-spacing: normal;
    letter-spacing: normal
}

.form-call-wrapper * {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
    color: #505050
}

.form-call-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 6.25px;
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    z-index: 1000;
    cursor: pointer
}

.whatsApp {
    right: 100px
}

.whatsApp:before {
    border-color: #25d366!important
}

.whatsApp i {
    color: #fff!important
}

.whatsApp:after {
    background: #25d366!important
}

.whatsApp .form-call-btn {
    background-color: #25d366!important
}

.form-call-wrapper:after,.form-call-wrapper:before {
    content: "";
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.form-call-wrapper:after {
    background: #ddd;
    -webkit-animation: lexprofitBackAnim 3s linear infinite;
    animation: lexprofitBackAnim 3s linear infinite
}

.form-call-wrapper:before {
    border: 1px solid #ddd;
    -webkit-animation: lexprofitBorderAnim 3s -0.5s linear infinite;
    animation: lexprofitBorderAnim 3s -0.5s linear infinite
}

.form-call-wrapper .form-call-btn {
    z-index: 10;
    position: absolute;
    background-color: #ccc;
    border-radius: 100%;
    width: 100%;
    height: 100%
}

.form-call-wrapper .form-call-btn .form-call-phone-icon {
    font-family: Flaticon-call-button;
    font-size: 40px;
    font-style: normal;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.form-call-wrapper .form-call-btn .form-call-phone-icon:before {
    content: "";
    color: #888
}

.form-call-wrapper:hover .form-call-btn {
    background-color: #bbb
}

.form-call-wrapper:hover:after {
    background-color: #aaa
}

.form-call-wrapper:hover:before {
    border-color: #aaa
}

.form-call-wrapper:hover .form-call-btn {
    -webkit-animation: lexprofitBoundingAnim 1s linear infinite;
    animation: lexprofitBoundingAnim 1s linear infinite
}

@-webkit-keyframes lexprofitBackAnim {
    0% {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7)
    }

    25% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    65% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2);
        opacity: 0.7
    }

    to {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7);
        opacity: 0
    }
}

@keyframes lexprofitBackAnim {
    0% {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7)
    }

    25% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    65% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2);
        opacity: 0.7
    }

    to {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7);
        opacity: 0
    }
}

@-webkit-keyframes lexprofitBorderAnim {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    to {
        -webkit-transform: scaleX(2) scaleY(2);
        transform: scaleX(2) scaleY(2);
        opacity: 0
    }
}

@keyframes lexprofitBorderAnim {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    to {
        -webkit-transform: scaleX(2) scaleY(2);
        transform: scaleX(2) scaleY(2);
        opacity: 0
    }
}

@-webkit-keyframes lexprofitBoundingAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    15% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    30% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes lexprofitBoundingAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    15% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    30% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}
