:root{
  /* Blue + Maroon palette (balanced, not too dark) */
  --blue: #0b5ed7;
  --blue-2: #084298;
  --maroon: #8a1538;
  --maroon-2:#6b0f2a;

  --bg: #ffffff;
  --soft: #f6f8fc;
  --text: #0f172a;
  --muted:#6b7280;
  --white: #ffffff;

  --radius: 18px;
  --shadow: 0 18px 40px rgba(2, 8, 23, .10);
  --shadow2: 0 10px 24px rgba(2, 8, 23, .10);

  --font-head: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html, body{
  overflow-x: hidden;
}

html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}

/* Helpers */
.text-white-75{ color: rgba(255,255,255,.78) !important; }
.text-accent{ color: #ffdde5; }
.section-pad{ padding: 80px 0; }
.section-soft{ background: linear-gradient(180deg, var(--soft), #fff); }
.section-accent{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255,255,255,.18), transparent 55%),
              linear-gradient(135deg, var(--blue), var(--maroon));
  color: var(--white);
}
@media (max-width: 767px){
  .section-pad{ padding: 60px 0; }
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--blue), var(--maroon));
}
.btn-topbar{
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
}
.btn-topbar:hover{ background: rgba(255,255,255,.22); color:#fff; }
.btn-topbar-outline{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
}
.btn-topbar-outline:hover{ background: rgba(255,255,255,.14); color:#fff; }

/* Navbar */
/* Navbar Logo */
.navbar-logo{
  height: 75px;
  width: auto;
  max-width: 180px;
  background-color: antiquewhite;
  border-radius: 20px;
  object-fit: contain;
  transition: transform .3s ease, filter .3s ease;
}

/* hover effect */
.navbar-logo:hover{
  transform: scale(1.05);
  filter: drop-shadow(0 8px 18px rgba(255,255,255,.25));
}

/* Mobile */
@media (max-width: 575px){
  .navbar-logo{
    height: 44px;
    max-width: 150px;
  }
}

.nav-glass{
  background: rgba(9, 24, 56, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar .nav-link{
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color: #fff;
}
.brand-mark{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--maroon), rgba(255,255,255,.14));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  color:#fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.brand-title{
  font-family: var(--font-head);
  font-weight: 700;
  color:#fff;
  letter-spacing: .2px;
}
.brand-subtitle{
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-top:-2px;
}

/* Buttons */
.btn-main{
  background: linear-gradient(135deg, var(--blue), var(--maroon));
  border: none;
  color: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 14px 28px rgba(11, 94, 215, .18);
}
.btn-main:hover{ filter: brightness(1.05); color:#fff; }

.btn-outline-main{
  border: 1px solid rgba(138, 21, 56, .45);
  color: #000;
  background: rgb(131 0 0 / 56%);
  border-radius: 14px;
  padding: 10px 16px;
}
.btn-outline-main:hover{
  background: rgb(0 28 131 / 56%);
  color:#030748;
}

/* Hero */
.hero-img{
  height: 78vh;
  min-height: 520px;
  object-fit: cover;
}
@media (max-width: 767px){
  .hero-img{ height: 72vh; min-height: 520px; }
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 400px at 25% 20%, rgba(138,21,56,.35), transparent 55%),
    linear-gradient(90deg, rgba(8,66,152,.72), rgba(138,21,56,.55));
}
.carousel-caption{
  left:0; right:0;
  bottom: 0;
  top: 0;
  display:flex;
  align-items:center;
  text-align:left;
  padding: 0;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-weight: 500;
  font-size: 14px;
}
.hero h1, .hero h2{
  font-family: var(--font-head);
  color:#fff;
  text-shadow: 0 12px 28px rgba(0,0,0,.20);
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-badge{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.90);
  font-weight: 500;
  display:flex;
  align-items:center;
  gap:8px;
}
.hero-card{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card-title{
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: .2px;
}
.hero-card-number{
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color:#fff;
  margin-top: 6px;
}
.hero-card-sub{
  color: rgba(255,255,255,.78);
  margin-top: 8px;
}

/* Section Titles */
.section-title .kicker{
  display:inline-block;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title h2{
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .2px;
}
.section-title p{ color: var(--muted); }
.section-title.light .kicker{ color: rgba(255,255,255,.88); }
.section-title.light h2{ color:#fff; }
.section-title.light p{ color: rgba(255,255,255,.78); }

/* About */
.info-chip{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  box-shadow: var(--shadow2);
}
.info-chip i{
  width: 38px; height: 38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11,94,215,.12), rgba(138,21,56,.12));
  color: var(--maroon);
  font-size: 18px;
}

/* About Image Block (NEW) */
.about-image-wrap{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(138,21,56,.10));
  padding: 14px;
}

.about-image{
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  transform: scale(1.01);
  transition: transform .55s ease;
}

.about-image-wrap:hover .about-image{
  transform: scale(1.07);
}

/* Gradient overlay for premium look */
.about-image-wrap::after{
  content:"";
  position:absolute;
  inset: 14px;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(180deg, rgba(0,0,0,.05) 35%, rgba(138,21,56,.35));
  pointer-events:none;
}

/* Badge */
.about-image-badge{
  position:absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--maroon));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(2,8,23,.25);
  border: 1px solid rgba(255,255,255,.18);
}

/* Bottom strip */
.about-image-strip{
  position:absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.strip-item{
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Mobile responsiveness */
@media (max-width: 991px){
  .about-image{
    height: 420px;
  }
}
@media (max-width: 575px){
  .about-image{
    height: 320px;
  }
  .about-image-badge{
    left: 18px;
    top: 18px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .about-image-strip{
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .strip-item{
    width: 100%;
    justify-content:flex-start;
  }
}
.about-note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #0f172a0a;
  border: 1px solid rgba(15,23,42,.08);
  color: var(--muted);
}
.about-note a{ color: var(--maroon); font-weight: 700; text-decoration:none; }
.about-note a:hover{ text-decoration:underline; }

/* Services */
.service-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  height: 100%;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* soft gradient shine */
.service-card::before{
  content:"";
  position:absolute; inset:-60px;
  background: radial-gradient(260px 140px at 0% 0%, rgba(11,94,215,.14), transparent 60%),
              radial-gradient(260px 140px at 100% 0%, rgba(138,21,56,.14), transparent 60%);
  transform: rotate(6deg);
  pointer-events:none;
}
.service-card > *{ position:relative; }

/* hover lift */
.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(2, 8, 23, .14);
}

/* Image on top */
.service-img{
  height: 190px;
  width: 100%;
  overflow: hidden;
}
.service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .55s ease;
}
.service-card:hover .service-img img{
  transform: scale(1.12);
}

/* body padding */
.service-body{
  padding: 18px;
}

/* Icon */
.service-icon{
  width: 54px; height: 54px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--maroon));
  color:#fff;
  font-size: 22px;
  box-shadow: 0 16px 34px rgba(11,94,215,.18);
  margin-top: -28px; /* gives floating effect over image */
  margin-bottom: 12px;
  border: 3px solid #fff;
}

/* 360 degree rotation on hover (icon rotates when card hovered) */
.service-card:hover .service-icon i{
  animation: spin360 .65s ease-in-out;
}

/* keyframes */
@keyframes spin360{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* text */
.service-card h5{
  font-family: var(--font-head);
  font-weight: 800;
}
.service-card p{
  color: var(--muted);
  margin-bottom: 10px;
}

/* link */
.service-link{
  color: var(--maroon);
  font-weight: 700;
  text-decoration:none;
}
.service-link:hover{ text-decoration:underline; }

/* responsive */
@media (max-width: 575px){
  .service-img{ height: 170px; }
  .service-body{ padding: 16px; }
}


/* Why */
.why-list{ display:flex; flex-direction:column; gap:12px; }
.why-item{
  display:flex;
  gap:12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow: var(--shadow2);
}
.why-icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,94,215,.12), rgba(138,21,56,.12));
  color: var(--blue-2);
  font-size: 18px;
}

.why-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
  background:#fff;
}
.why-card-top{
  padding: 18px;
  background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(138,21,56,.10));
}
.why-card-badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--maroon));
  color:#fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card-bottom{
  padding: 18px;
}
.mini-box{
  display:flex; align-items:center; gap:10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background:#fff;
}
.mini-box i{ color: var(--maroon); font-size: 18px; }
.callout{
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,94,215,.08), rgba(138,21,56,.08));
  border: 1px solid rgba(15,23,42,.08);
}
.callout a{ color: var(--maroon); font-weight: 800; text-decoration:none; }
.callout a:hover{ text-decoration:underline; }

/* Counters */
.counter-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  padding: 16px;
  height: 100%;
}
.counter-icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
  margin-bottom: 10px;
}
.counter-number{
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  color:#fff;
}
.counter-label{ color: rgba(255,255,255,.80); }

/* Gallery */
.gallery-card{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow: var(--shadow2);
  height: 220px;
}
.gallery-card img{
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}
.gallery-card:hover img{ transform: scale(1.10); }
.gallery-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55));
  opacity:0;
  transition: opacity .35s ease;
}
.gallery-card:hover .gallery-overlay{ opacity:1; }
.gallery-meta{
  position:absolute;
  left:14px; right:14px; bottom:12px;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  color:#fff;
  opacity:0;
  transform: translateY(8px);
  transition: all .35s ease;
}
.gallery-card:hover .gallery-meta{
  opacity:1;
  transform: translateY(0);
}
.gallery-meta .tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
}
.gallery-meta .zoom{
  width: 38px; height: 38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--maroon));
  border: 1px solid rgba(255,255,255,.18);
}

/* Contact */
.contact-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.contact-item{
  display:flex;
  gap:12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(135deg, rgba(11,94,215,.06), rgba(138,21,56,.06));
}
.contact-item + .contact-item{ margin-top: 12px; }
.contact-item i{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--maroon));
  color:#fff;
}
.contact-item a{ color: var(--maroon); font-weight: 700; text-decoration:none; }
.contact-item a:hover{ text-decoration:underline; }

.form-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.form-control{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  padding: 12px 12px;
}
.form-control:focus{
  border-color: rgba(11,94,215,.55);
  box-shadow: 0 0 0 .25rem rgba(11,94,215,.12);
}
.form-label{ font-weight: 600; }
.form-note{ color: var(--muted); font-size: 13px; }

/* Map */
.map-wrap iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}
@media (max-width: 767px){
  .map-wrap iframe{ height: 360px; }
}

/* Footer */
.footer{
  background: linear-gradient(135deg, #071733, #2b0b17);
  color:#fff;
  padding: 70px 0 24px;
}
.footer-title{
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-links a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
}
.footer-links a:hover{ color:#fff; text-decoration:underline; }
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
  color: rgba(255,255,255,.78);
}
.footer-contact a{ color:#fff; text-decoration:none; }
.footer-contact a:hover{ text-decoration:underline; }
.footer-contact i{ margin-right:8px; color: #ffd6df; }
.footer-hr{ border-color: rgba(255,255,255,.12); }
.footer-mini-link{
  color: rgba(255,255,255,.78);
  text-decoration:none;
}
.footer-mini-link:hover{ color:#fff; text-decoration:underline; }
.social{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  text-decoration:none;
}
.social:hover{ background: rgba(255,255,255,.18); color:#fff; }

/* Floating buttons */
/* Floating buttons (fixed + safe for mobile) */
.float-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;

  display:flex;
  flex-direction:column;
  gap:12px;

  /* Prevent any accidental horizontal overflow */
  max-width: calc(100vw - 32px);
}

.float-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding: 12px 14px;
  border-radius: 999px;

  color:#fff;
  text-decoration:none;
  font-weight: 700;

  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 42px rgba(2, 8, 23, .25);

  position:relative;
  overflow:hidden;

  /* IMPORTANT: prevents “extra space” issues */
  white-space: nowrap;
  max-width: 100%;
}

.float-btn i{ font-size: 18px; }
.float-btn span{ font-size: 14px; }

.float-btn.call{
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}
.float-btn.whatsapp{
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* glow animation (safe inside button) */
.float-btn::after{
  content:"";
  position:absolute;
  inset:-30px;
  background: radial-gradient(200px 80px at 20% 20%, rgba(255,255,255,.35), transparent 55%);
  transform: translateX(-40%);
  animation: shine 2.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shine{
  0%{ transform: translateX(-55%); opacity:.2; }
  50%{ transform: translateX(35%); opacity:.45; }
  100%{ transform: translateX(80%); opacity:.2; }
}

/* ✅ MOBILE FIX: make buttons compact (no text) */
@media (max-width: 576px){
  .float-actions{
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .float-btn{
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    justify-content:center;
  }

  .float-btn span{
    display:none; /* hide text so no extra width */
  }

  .float-btn i{
    font-size: 20px;
  }
}

/* ✅ Optional: keep them “pill” but smaller on tablets */
@media (min-width: 577px) and (max-width: 991px){
  .float-btn{
    padding: 10px 12px;
  }
  .float-btn span{
    font-size: 13px;
  }
}


/* Carousel controls visibility tweak */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.35));
}
#callme {
        position: fixed;
        right: 10px;
        top: 190px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
	
@media(max-width:768px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}	