:root{
    --body-font:"Inter", sans-serif;
    --heading-font:"Manrope", sans-serif;
    --primary-color: #1463ff;
    --secondary-color: #ff6500;
    --heading-color:#1A1A2E;
    /*--text-color: #5E5E5E;*/
    --text-color: #000;
    --green-color:#00ff2a;
    --green-lime: #32CD32;
    --border-color:#D8DDE1;
    --grayish-blue:#eef4f7;
    --grayish-blue-light:#ffffff59;
    --violet: #263c48;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a, button, input, textarea, select{
    outline: none;
}
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}
body{
    scroll-behavior: smooth;
}
body{
    background-color: #ffffff;
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: var(--text-color);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
}
img{
    max-width: 100%;
}
/** Badges **/
.zcs-badge-2 .line{
    width: 15px;
    height: 2px;
    background: linear-gradient(var(--primary-color), #000);
}
.zcs-badge-2 .badge-container{
    padding: 5px;
    border-radius: 99px;
    border: 1px solid var(--primary-color);
}
.zcs-badge-2 .badge-container .wrapper{
    padding: 6px 15px;
    background: var(--primary-color);
    border-radius: 99px;
    color: #fff;
}
/** Section Style **/
.sec-padding{
    padding-top: 70px;
    padding-bottom: 70px;
}
.section-heading p:last-child{
    margin-bottom: 0;
}
.section-heading h2{
    color: var(--heading-color);
    text-transform: capitalize;
}
/** Gradient Background **/
.bg-gradient-1{
    background: linear-gradient(177.71deg, #FFFFFF -61.58%, var(--primary-color) 202.69%);
}
.bg-gradient-2{
    background: linear-gradient(197deg,#f5f5f5 42.98%,rgba(20, 99, 255, 0.5) 100%);
}
.bg-gray{
    background-color: #f5f5f5;
}
.bg-gray-2{
    background-color: #f7f7f8;
}
.bg-grayish-blue{
    background-color: var(--grayish-blue);
}
.zcs-text-primary{
    color: var(--primary-color);
}
/*** Header Style ***/
.main-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: all 0.3s ease;
}
.main-header.scrolled{
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: #ffffffb3;
    border-bottom: 1px solid #e2e8f0;
}
.main-header .navbar-nav li.nav-item{
    position: relative;
}
.main-header .navbar-nav li > a{
    color: #ffffff;
}
.main-header .navbar-nav li > ul.sub-menu{
    list-style: none;
    padding: 0;
    margin: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: #ffffffb3;
    position: absolute;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    min-width: 200px;
}
.main-header .navbar-nav li.nav-item:hover ul.sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.main-header .navbar-nav li > ul.sub-menu li a{
    display: block;
    padding: 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    border-bottom: 1px solid #e2e8f0;
}
.main-header .navbar-nav li > ul.sub-menu li a:hover{
    background-image: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    color: #fff;
}
.main-header.style-2 .navbar-nav li > a{
    color:#0c0c0c;
}
.main-header.scrolled .navbar-nav li > a{
    color: var(--heading-color);
}
.main-header .navbar-toggler{
    padding: 0;
    border: 0;
    outline: 0;
    box-shadow: none;
}
.main-header .navbar-toggler i{
    color: var(--primary-color);
    font-size: 30px;
}
.main-header:not(.scrolled) .navbar-toggler i{
    color:#000d20;
}
/*** Button ***/
.animated-border-btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    background: linear-gradient(to right, #000000, #007bff);
    overflow: hidden;
    text-transform: capitalize;
}
.animated-border-btn::before{
  content:"";
  position:absolute;
  inset:-250%;
  background:conic-gradient(
    transparent 0deg,
    transparent 320deg,
    var(--secondary-color) 340deg,
    #fff 355deg,
    transparent 360deg
  );
  animation:spin 3s linear infinite;
}
.animated-border-btn::after{
  content:"";
  position:absolute;
  inset:2px;
  background:linear-gradient(to bottom, #000000, #007bff);
  z-index:1;
}
.animated-border-btn span{
  position:relative;
  z-index:2;
}

@keyframes spin{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

.animated-border-btn:hover{
  box-shadow:0 0 14px rgba(20,99,255,.45);
}
.zcs-icon-btn{
    padding: 5px;
    border: 1px solid var(--primary-color);
    background: #fff;
    display: block;
    width: fit-content;
    border-radius: 50px;
    font-size: 16px;
    line-height: 16px;
}
.zcs-icon-btn .inner-wrapper{
    padding: 10px 15px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.zcs-icon-btn-2{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 30px;
}
.zcs-icon-btn-2 span.text{
    font-size: 15px;
    padding: 5px 5px 5px 10px;
    font-weight: 500;
}
.zcs-icon-btn-2 span.icon{
    width: 35px;
    height: 35px;
    background: #ffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.zcs-icon-btn-2 span.icon i{
    transform: rotate(0);
    transition: transform 0.5s ease;
}
.zcs-icon-btn-2:hover span.icon i{
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}
.zcs-btn-1{
    display: block;
    width: fit-content;
    background: linear-gradient(0deg, rgba(40,44,52,1) 0%, rgba(20, 99, 255, 0.5) 100%);
    backdrop-filter: blur(30px);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
    transition: .3s all ease;
}
.zcs-btn-1.white{
    background: rgba(255, 255, 255, 0.7);
}
.zcs-btn-1.black{
    background: rgba(0, 0, 0, 0.5);
}
.zcs-btn-1:hover{
    box-shadow: 0 7px 50px 5px var(--primary-color);
}
.zcs-btn-2{
    display: block;
    width: fit-content;
    color: #ffffff;
    /*color:transparent;
    background: linear-gradient(45deg,  rgba(20, 99, 255, 1) 0%, rgba(40,44,52,1) 100%);
    background-clip: text;*/
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: .3s all ease;
    position: relative;
    overflow: hidden;
}
.zcs-btn-2::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,  rgba(20, 99, 255, 1) 0%, rgba(40,44,52,0.5) 100%);
    box-shadow: 0 0 10px rgba(20, 99, 255, 0.5);
    z-index: -1;
    transform: translateX(0);
}
.zcs-btn-2::after{
    content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  background:linear-gradient(45deg, rgba(40,44,52,0.5) 0%, rgba(20, 99, 255, 1) 100%);
  border-radius: 50px;
  transition: .5s;
  box-shadow: 0 0 10px rgba(20, 99, 255, 0.5);
  opacity: 0;
  z-index: -1;
  transition: transform 0.5s ease;

}
.zcs-btn-2:hover::before{
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}
.zcs-btn-2:hover::after{
    opacity: 1;
    transform: translateX(0);
}
.zcs-btn-2:hover{
    color: #ffffff;
}
.zcs-btn-3{
    display: block;
    padding: 6px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--primary-color) 52%, #000000);
    width: fit-content;
    text-decoration: none;
    color: #fff;
    position: relative;
}
.zcs-btn-3.style-2{
    background: #ffffff;
}
.zcs-btn-3 .inner-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.zcs-btn-3 .inner-wrapper::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px;
    transform: translateX(100%);
    transition: transform .5s ease;
    z-index: -1;
}
.zcs-btn-3.style-2 .inner-wrapper::before{
    background: linear-gradient(90deg, var(--primary-color) 52%, var(--primary-color));
}
.zcs-btn-3:hover .inner-wrapper::before{
    transform: translateX(0);
}
.zcs-btn-3 .inner-wrapper span.text{
    padding-left: 10px;
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
}
.zcs-btn-3.style-2 .inner-wrapper span.text{
    color: #0c0c0c;
}
.zcs-btn-3:hover .inner-wrapper span.text{
    color:#0c0c0c;
}
.zcs-btn-3.style-2:hover .inner-wrapper span.text{
    color: #ffffff;
}
.zcs-btn-3 .inner-wrapper span.icon{
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 5px;
}
.zcs-btn-3.style-2 .inner-wrapper span.icon{
    background: linear-gradient(90deg, var(--primary-color) 52%, #000000);
}
.zcs-btn-3 .inner-wrapper span.icon svg path{
    stroke: var(--primary-color);
}
.zcs-btn-3.style-2 .inner-wrapper span.icon svg path{
    stroke: #ffffff;
}
/*** Hero Section ***/
.zcs-hero-section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 150px;
}
.zcs-hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/blue-gradient-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.zcs-hero-section .globe{
    width:500px;
    height:500px;
    background:url('../images/globe-shape.webp') center/contain no-repeat;
    animation:rotateGlobe 50s linear infinite;
    transform-origin:center center;
    position: absolute;
    opacity: 0.2;
}
@keyframes rotateGlobe{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
.zcs-hero-section .container{
    position: relative;
}
.zcs-hero-section .horizontal-lines, .zcs-hero-section .vertical-lines{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.zcs-hero-section .horizontal-lines{
    flex-direction: column;
}
.zcs-hero-section .horizontal-lines .line, .zcs-hero-section .vertical-lines .line{
    background-color:rgba(250, 250, 250, 0.05);
}
.zcs-hero-section .horizontal-lines .line{
    width: 100%;
    height: 2px;
}
.zcs-hero-section .vertical-lines .line{
    width: 2px;
    height: 100%;
}
.zcs-hero-section .horizontal-lines .line .dash-line, .zcs-hero-section .vertical-lines .line .dash-line{
    background: linear-gradient(0deg, #ff6500 0%, rgba(29, 100, 255, 0.3) 100%);
    will-change: transform;
}
.zcs-hero-section .horizontal-lines .line .dash-line{
    width: 75px;
    height: 2px;
}
.zcs-hero-section .horizontal-lines .line .dash-line.to-right{
    animation: moveRight 3s linear infinite;
}
.zcs-hero-section .horizontal-lines .line .dash-line.to-left{
    animation: moveLeft 3s linear infinite;
    animation-delay: 10s;
}
.zcs-hero-section .vertical-lines .line .dash-line.to-bottom{
    animation: moveBottom 3s linear infinite;
    animation-delay: 5s;
}
.zcs-hero-section .vertical-lines .line .dash-line.to-top{
    animation: moveTop 3s linear infinite;
    animation-delay: 5s;
}
.zcs-hero-section .vertical-lines .line .dash-line{
    width: 2px;
    height: 76px;
}
@keyframes moveBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    85% {
        opacity: .3;
    }

    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}
@keyframes moveTop {
    0% {
        transform: translateY(100vh);
        opacity: 1;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    85% {
        opacity: .3;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}
@keyframes moveRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    85% {
        opacity: .3;
    }

    100% {
        transform: translateX(110vw);
        opacity: 0;
    }
}
@keyframes moveLeft {
    0% {
        transform: translateX(100vw);
        opacity: 1;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    85% {
        opacity: .3;
    }

    100% {
        transform: translateX(-100px);
        opacity: 0;
    }
}
.zcs-hero-section .hero-content .zcs-badge .pulsating-circle .wrapper{
    width: 10px;
    height: 10px;
}
.zcs-hero-section .hero-content .zcs-badge .text{
    font-size: 14px;
}
.zcs-hero-section .hero-content h1{
    text-transform: uppercase;
    font-size: 40px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
}
.zcs-hero-section .hero-content p{
    color: rgba(255, 255, 255, 0.7);
    font-size: 23px;
    line-height: 33px;
    margin-bottom: 30px;
}
/*** Button & Badge Style ***/
.zcs-btn, .zcs-badge{
    position:relative;
    display:inline-block;
    padding:10px 20px;
    font-size:18px;
    color:#fff;
    text-transform: capitalize;
    text-decoration:none;
    border:1px solid #1d64ff33;
    transition:0.3s ease;
}
.zcs-badge{
    width: fit-content;
}
.zcs-badge.style-2{
    padding: 10px 15px;
    border-radius: 10px;
    border: 0;
    background-color: #ffffff;
    color: #0c0c0c;
    border-top: 1px;
    border-bottom: 1px;
    border-left: 4px;
    border-right: 4px;
    border-color: var(--primary-color);
    border-style: solid;
}
.zcs-badge.style-2 .circle{
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color) 98%);
    box-shadow: inset 0 5px 14px #ffffff0f;
}
.zcs-btn:hover{
    background:#1463ff;
    box-shadow:0 0 18px rgba(20,99,255,.7);
}

/* Corner lines */
.zcs-btn span, .zcs-badge span{
    position:absolute;
    width:14px;
    height:14px;
    border-color:#1463ff;
    transition: transform 0.3s;
}
.zcs-btn:hover span{
    width: 10px;
    height: 10px;
    transform: scale(1.8);
}
/* top left */
.zcs-btn .tl, .zcs-badge .tl{
    top:-2px;
    left:-2px;
    border-top:2px solid;
    border-left:2px solid;
    border-color: #1463ff;
}

/* top right */
.zcs-btn .tr, .zcs-badge .tr{
    top:-2px;
    right:-2px;
    border-top:2px solid;
    border-right:2px solid;
    border-color: #1463ff;
}

/* bottom left */
.zcs-btn .bl, .zcs-badge .bl{
    bottom:-2px;
    left:-2px;
    border-bottom:2px solid;
    border-left:2px solid;
    border-color: #1463ff;
}

/* bottom right */
.zcs-btn .br, .zcs-badge .br{
    bottom:-2px;
    right:-2px;
    border-bottom:2px solid;
    border-right:2px solid;
    border-color: #1463ff;
}
.text-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    width: fit-content;
}
.text-link span.icon{
    color:var(--secondary-color);
    transform: translateX(0);
    transition: transform 0.3s linear;
}
.text-link:hover span.icon{
    transform: translateX(10px);
}
/*** Pulsating Circle ***/
.pulsating-circle {
    display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
}
.pulsating-circle .wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
}
.pulsating-circle .wrapper:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: #00ff2a;
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle .wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00ff2a;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
          animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
/** Hero Section 2 **/
.zcs-hero-section-2{
    padding-top: 150px;
    padding-bottom: 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(../images/bg-shape.webp);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: clip;
    position: relative;
}
.zcs-hero-section-2::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero-bg.webp);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
}
.zcs-hero-section-2 .banner-blur{
    z-index: 2;
    background-image: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    filter: blur(154px);
    pointer-events: none;
    border-radius: 50%;
    width: 36.063rem;
    height: 36.063rem;
    position: absolute;
    inset: -2.25rem -11rem auto auto;
    opacity: 0.6;
}
@media(max-width:767px){
    .zcs-hero-section-2 .banner-blur{
     height:100%;   
    }
}
.zcs-hero-section-2 .container{
    z-index: 3;
}
.zcs-hero-section-2 .hero-content h1{
    color: #0c0c0c;
    font-size: 2.625rem;
    margin-bottom: 20px;
}
/*** Page Banner ***/
.zcs-page-banner{
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 150px;
    background-image: linear-gradient(#000917, #000d20 10%, #02122a 20%, #011742 30%, #01247b 40%, #153896 50%, #3055ba 60%, #4468c9 70%, #5879d0 80%, #6c89d9 84%, #86a1ea 88%, #b4c6f7 92%, #e7eeff 98%, #fff);
    
}
.zcs-page-banner.style-2{
    background-image: url(../images/page-banner-bg-1.webp);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}
.zcs-page-banner.style-2::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image:linear-gradient(#e7eeff 98%, #fff);    
    z-index: 1;
    opacity: 0.8;
}
.zcs-page-banner.style-2 .container{
    z-index: 3;
}
.zcs-page-banner:not(.style-2) .banner-content{
    color: #ffffff;
}
.zcs-page-banner .banner-content h1{
    line-height: 1.2;
    text-transform: capitalize;
}
/*** client Card Style **/
.client-card a{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.client-card a img{
    max-width: 100px;
}
.client-carousel > .swiper-wrapper, .oem-carousel > .swiper-wrapper{
    transition-timing-function: linear;
}
.grayscale-img{
    filter: grayscale(100%);
}
.oem-carousel .swiper-slide{
    width: auto;
}
.oem-carousel .swiper-slide img{
    max-height: 40px;
    width: auto;
}
/** Customer Section Style **/
.trusted-customer-section .content-col{
    border-right: 3px solid #f5f5f5;
}
.trusted-customer-section.style-2{
    position: relative;
    z-index: 2;
    margin-top: -50px;
}
.trusted-customer-section .content-col h4{
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
    color: var(--heading-color);
    font-weight: 700;
}
.trusted-customer-section.style-2 .wrapper h4{
    color: #000316;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}
/*** Mission Vision Section **/
.mission-vision-section{
    background-image: url(../images/section-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
/*** Glassy Icon content Card ***/
.glassy-icon-content-card{
    position: relative;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(30px);
}
.glassy-icon-content-card .inner-wrapper{
    padding: 15px;
    border: 1px solid var(--primary-color);
    height: 100%;
    text-align: center;
    border-right-color: var(--grayish-blue-light);
    border-bottom-color: var(--grayish-blue-light);
}
.glassy-icon-content-card .inner-wrapper .icon{
    width: 100px;
    height: 100px;
    background: rgba(20, 99, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
    border-radius: 10px;
    margin-bottom: 15px;
}
.glassy-icon-content-card .inner-wrapper .content h3{
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}
.glassy-icon-content-card .inner-wrapper .content p{
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}
/*** Icon Card ***/
.zcs-icon-card{
    position: relative;
    padding: 15px;
    background-color: var(--grayish-blue);
    border-radius: 20px;
    text-align: center;
    height: 100%;
}
.zcs-icon-card > .icon{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--border-color);
    border-radius: 15px;
    margin: 0 auto 15px auto;
}
.zcs-icon-card .content h3{
    color: var(--heading-color);
    font-size: 22px;
    line-height: 30px;
}
.zcs-icon-card .content p{
    margin: 0;
    font-weight: 400;
    line-height: 25px;
}
/*** Stats Card ***/
.stats-card{
    display: block;
    position: relative;
    padding: 30px;
    text-align: center;
}
.stats-card .inner-wrapper{
    height: 100%;
}
.stats-card .inner-wrapper div.number{
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}
.stats-card .inner-wrapper div.title{
    line-height: 24px;
}
/*** Icon List ***/
ul.icon-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.icon-list li{
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}
ul.icon-list li span.icon{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
}
ul.icon-list.bg-green li span.icon{
    background-color: var(--green-lime);
    color: #ffffff;
}
ul.icon-list li span.text{
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 500;
}
/*** Service Card ***/
.service-card{
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}
.service-card.style-2{
    padding: 10px;
    background-color: #ffffff59;
    border-color: #fff;
    border-radius: 30px;
    border-width: 1px;
}
.service-listing-page .service-card.style-2{
    background-color: var(--grayish-blue);
}
.service-card.style-2 .wrapper{
    padding: 15px;
    background-color: #fff;
    border-radius: 25px;
    height: 100%;
}
.service-card:hover{
    transform: translateY(-8px);
}
.service-grid .service-card{
    height: 100%;
}
.service-card .service-icon{
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-bottom: 10px;
}
.service-card .service-image img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.service-card.style-2 .wrapper .service-icon{
    background-color: var(--grayish-blue);
}
.service-card .service-content h3{
    color: var(--heading-color);
    font-size: 24px;
    line-height: 34px;
}
.service-listing-page .service-card.style-2 .service-content h3{
    font-size: 19px;
    line-height: 28px;
}
.oem-section .service-card .service-content h3{
    font-size: 19px;
    line-height: 29px;
}
.oem-section .service-card .service-content p{
    margin: 0;
    line-height: 25px;
}
.service-card a, .blog-item .item-wrapper .blog-link a{
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: all .4s ease;
}
.service-card a span.icon, .blog-item .item-wrapper .blog-link a span.icon {
    color: var(--primary-color);
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
}
.service-card.style-2 .wrapper a span.icon{
    color: var(--primary-color);
}
.service-card:hover a span.icon, .blog-item .item-wrapper .blog-link a:hover span.icon{
    transform: translateX(10px);
}
.zcs-service-card-item{
    padding: 10px;
    border-radius: 24px;
    /* background: linear-gradient(180deg, #f4f8fc 0%, #edf3fa 100%); */
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.03);
}
.zcs-service-card-item .service-card-wrapper{
    position: relative;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 45%, #eef4ff 100%);
    /* box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.03); */
    overflow: hidden;
}
.zcs-service-card-item .service-card-top .logo-box img{
    max-height: 50px;
}
.zcs-service-card-item .service-card-top .trust-badge {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.zcs-service-card-item .service-card-top h3{
    font-size: 22px;
    line-height: 1.2;
}
.zcs-service-card-item .service-card-top h4{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}
.zcs-service-card-item .service-card-top p{
    font-size: 16px;
    line-height: 1.5;
}
.zcs-service-card-item .icon-heading .icon{
    width: 30px;
    height: 30px;
    background: #2563eb;
    border-radius: 5px;
}
.zcs-service-card-item .icon-heading .icon.bg-green{
    background: var(--green-lime);
}
.zcs-service-card-item .icon-heading .icon svg{
    width: 20px;
    height: 20px;
}
.zcs-service-card-item .icon-heading .text{
    font-size: 18px;
    font-weight: 600;
}
.zcs-service-card-item .service-capabilities, .zcs-service-card-item .service-supported-platform{
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}
.zcs-service-card-item .service-capabilities .icon-card{
    padding: 30px 20px;
    background: #fff;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.03);
    height: 100%;
}
.zcs-service-card-item .service-capabilities .icon-card .icon{
    margin-bottom: 10px;
}
.zcs-service-card-item .service-capabilities .icon-card .content p{
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 400;
}
.zcs-service-card-item .service-benefits ul.icon-list li .icon{
    background: linear-gradient(135deg, #f6fff8 0%, #ecfdf3 100%);
    border: 1px solid rgba(34, 197, 94, 0.08);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.04);
    color: var(--green-lime);
}
.zcs-service-card-item .service-benefits ul.icon-list li .text, .zcs-service-card-item .service-supported-platform ul.icon-list li .text, ul.icon-list.service-capabilities-list li .text{
    font-size: 16px;
}
.zcs-service-card-item .service-supported-platform ul.icon-list li{
    column-gap: 5px;
}
.zcs-service-card-item .service-supported-platform ul.icon-list li .icon, ul.icon-list.service-capabilities-list .icon{
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.04);
    background: #fff;
    width: 30px;
    height: 30px;
}
ul.icon-list.service-capabilities-list .icon{
    background: rgba(37, 99, 235, 0.08);
}
/** Icon content Card **/
.zcs-icon-content-card{
    padding: 20px;
    background-color: #fff;
    /* background-color: #F1F5FA; */
    /* box-shadow: 4px 6.928px 60px 0px rgba(0, 0, 0, 0.1); */
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    text-align: center;
    position: relative;
}
.icon-content-grid div[class^="col-"]:nth-child(even) .zcs-icon-content-card{
    box-shadow: none;
    background-color: #F1F5FA;
}
.icon-content-grid .zcs-icon-content-card{
    height: 100%;
}
.zcs-icon-content-card .icon{
    width: 100px;
    height: 100px;
    padding: 10px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f5f5f5; */
    background: linear-gradient(to bottom, #000000, #007bff);
    border-radius: 10px;
}
/* .icon-content-grid div[class^="col-"]:nth-child(even) .zcs-icon-content-card .icon{
    background-color: #ffffff;
} */
.zcs-icon-content-card .icon svg.main-icon{
    position: relative;
    z-index: 2;
    stroke: var(--primary-color);
}
.zcs-icon-content-card .icon svg.ico-bg-shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    fill: var(--primary-color);
}
.zcs-icon-content-card .content h3{
    color: var(--heading-color);
    font-size: 24px;
    line-height: 34px;
}
.zcs-icon-content-card .content p{
    margin-bottom: 0;
}
/*** Icon box ***/
.zcs-iconbox{
    display: block;
    position: relative;
    padding: 20px 0 0 20px;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-radius: 15px;
}
.zcs-iconbox .zcs-iconbox-wrapper{
    padding: 20px;
    border-radius: 15px;
    background-color: var(--grayish-blue);
}
.zcs-iconbox .zcs-iconbox-wrapper .zcs-iconbox-header .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--grayish-blue-light);
    padding: 5px;
    border-radius: 10px;
    border: 3px solid #fff;
}
.zcs-iconbox .zcs-iconbox-wrapper .zcs-iconbox-header h3{
    color: var(--heading-color);
    font-size: 22px;
    line-height: 26px;
    margin: 0;
}
/*** Process Section **/
.process-item{
    display: block;
    width: 100%;
    position: relative;
    padding: 35px 20px 20px 20px;
    border: 1px solid rgba(20, 99, 255, 0.5);
    border-radius: 20px;
    background: #fff;
}
.process-item .step{
    width: 35px;
    height: 35px;
    background: linear-gradient(to bottom, #000000, #007bff);
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}
.process-item .icon{
    width: 80px;
    height: 80px;
    padding: 5px;
    background: var(--grayish-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
}
.process-item .content h3{
    color: var(--heading-color);
    font-size: 22px;
    line-height: 32px;
}
.process-item .content p{
    margin-bottom: 0;
}
.process-section .process-content-grid{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.process-section .process-content-grid .process-item{
    position: sticky;
    top: 8em;
}
/* .process-content-grid .process-item._1{
    top: 8em;
}
.process-content-grid .process-item._2{
    top: 9em;
}
.process-content-grid .process-item._3{
    top: 10em;
}
.process-content-grid .process-item._4{
    top: 11em;
}
.process-content-grid .process-item._5{
    top: 12em;
} */
.process-section .content-wrapper{
    position: sticky;
    top: 8em;
}
/** CTA Block ***/
.zcs-cta-block{
    position: relative;
    padding: 50px;
    box-sizing: border-box;
    max-width: 100%;
}
.zcs-cta-block::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    background-color: #0e111f;
    transform: skew(-10deg);
    background-image: linear-gradient(#000917, #000d20 12%, #02122a 23%, #011742 34%, #01247b 44%, #153896 55%, #3055ba 65%, #4468c9 76%, #5879d0 88%, #6c89d9 100%, #86a1ea 100%, #b4c6f7 100%, #e7eeff 100%, #fff);
    transform-style: preserve-3d;
}
.zcs-cta-block h3{
    text-transform: capitalize;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.zcs-cta-block h2{
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 20px;
}
.zcs-cta-block p{
    margin-bottom: 20px;
    color: #ffffff;
}

/*** Icon content box ***/
.zcs-icon-content-box{
    border: 1px solid #fff;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    position: relative;
    background-color: var(--grayish-blue-light);
    height: 100%;
}
.zcs-icon-content-box.style-2{
    background-color: #ffffff;
    padding: 15px;
    border-color: var(--grayish-blue);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: center;
}
.zcs-icon-content-box .wrapper .icon{
    background-color: #ffffff59;
    border: 1px solid #fff;
    border-radius: 99px;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    padding: 2px 5px;
    text-decoration: none;
    display: flex;
    box-shadow: 0 5px 20px #d7dbdb3b;
    margin-bottom: 10px;
}
.zcs-icon-content-box.style-2 .wrapper .icon{
    background-color: var(--grayish-blue);
    margin: 0 auto 10px auto;
}
.zcs-icon-content-box .wrapper h3{
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}
.zcs-icon-content-box .wrapper p{
    margin: 0;
    font-size: 15px;
    line-height: 22px;
}
/*** Blog Style & TI Card Style ***/
.blog-item, .ti-card-item{
    width: 100%;
    position: relative;
    padding: 10px;
    border: 1px solid var(--grayish-blue);
    background-color: var(--grayish-blue);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
.blog-item .item-wrapper, .ti-card-item .ti-card-item-wrapper{
    padding: 10px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 2px solid var(--grayish-blue-light);
}
.blog-item .item-wrapper .blog-img img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.blog-item .item-wrapper .blog-img .cat-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 15px;
    line-height: 25px;
    background-color: rgba(20, 99, 255, 0.5);
    border-radius: 30px;
    color: #ffffff;
    backdrop-filter: blur(30px);
}
.blog-item .item-wrapper .blog-meta{
    margin-top: 10px;
}
.blog-item .item-wrapper .blog-meta .date{
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
}
.blog-item .item-wrapper .blog-content h3{
    color: var(--heading-color);
    font-size: 20px;
    line-height: 26px;
}
.blog-item .item-wrapper .blog-content p{
    font-size: 15px;
    line-height: 22px;
}
.blog-item .item-wrapper .blog-link a{
    text-transform: capitalize;
}
.ti-card-item .ti-card-header, .ti-card-item .ti-card-capabilities{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.ti-card-item .ti-card-header img{
    width: auto;
    max-height: 50px;
    margin-bottom: 10px;
}
.ti-card-item .ti-card-header h3{
    font-size: 22px;
    line-height: 1.2;
}
.ti-card-item .ti-card-header h4{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}
.ti-card-item .ti-card-capabilities h5, .ti-card-item .ti-card-benefits h5{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}
.ti-card-item .ti-card-header p, .ti-card-item .ti-card-capabilities ul, .ti-card-item .ti-card-benefits ul{
    margin: 0;
}.ti-card-item ul.icon-list li{
    column-gap: 5px;
}
.ti-card-item ul.icon-list li span.icon{
  width: fit-content;
  height: fit-content;
}
.ti-card-item .ti-card-benefits ul li span.icon{
    color: var(--green-lime);
}
.ti-card-item .ti-card-benefits ul li span.text{
    font-size: 18px;
    line-height: 1.2;
    color: var(--text-color);
}
/*** Contact Form ***/
.zcs-contact-form input{
    padding: 10px 15px;
    border-radius: 50px;
    outline: 0;
    box-shadow: none;
}
.zcs-contact-form input:focus, .zcs-contact-form textarea:focus{
    border-color: var(--primary-color);
    box-shadow: none;
}
.zcs-contact-form textarea{
    min-height: 100px;
    border-radius: 20px;
}
.zcs-contact-form input::placeholder, .zcs-contact-form textarea::placeholder{
    opacity: 0.7;
}
.zcs-contact-form button{
    border: 1px solid var(--primary-color);
    padding: 5px;
    background-color: #ffff;
    border-radius: 50px;
}
.zcs-contact-form button .inner-wrapper{
    padding: 10px 20px;
    background-color: var(--primary-color);
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}
.zcs-contact-form button.iti__selected-country{
    border: 0;
}
.zcs-contact-form .form-input .error-msg{
    font-size: 16px;
    font-weight: 500;
}
.contact-box{
    position: sticky;
    top: 0;
    padding: 50px 30px;
    background: var(--bs-gray-100);
}
.contact-box .contact-card{
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 10px;
}
.contact-box .contact-card h6{
    margin-bottom: 5px;
}
.contact-box .contact-card p{
    margin: 0;
    font-weight: 400;
}
.contact-box .contact-card p a{
    color: var(--text-color);
    text-decoration: none;
}
.location-card{
    position: relative;
    padding: 15px;
    background: var(--bs-gray-100);
    border-radius: 15px;
}
.location-card h3{
    font-size: 22px;
    line-height: 30px;
}
.location-card p{
    font-size: 16px;
    line-height: 24px;
}
.location-card .icon-list{
    margin-bottom: 15px;
}
.location-card .icon-list li{
    gap: 5px;
}
.location-card .icon-list li:not(:last-child){
    margin-bottom: 8px;
}
.location-card .icon-list li span.icon{
    color: var(--primary-color);
    font-size: 18px;
}
.location-card .icon-list li span.text{
    font-weight: 400;
    font-size: 17px;
}

/*** Social Link List ***/
ul.zcs-social-links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
/*** Client Logo Style ***/
.client-logo-box{
    height: 100%;
}
.client-logo-box a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    background-color: var(--grayish-blue);
    border-radius: 12px;
    text-decoration: none;
}
.client-logo-box a img{
    max-width: 100px;
}
.client-logo-box a h5{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 5px;
}
/** Training Page **/
.training-card{
    position: relative;
    background-color: var(--bs-gray-100);
    border-radius: 15px;
    height: 100%;
}
.training-card .training-img img{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.training-card .training-content{
    padding: 15px;
}
.training-card .training-content ul.course-meta{
    list-style: none;
    padding: 0;
    gap: 15px;
}
.training-card .training-content ul.course-meta li{
    column-gap: 5px;
}
.training-card .training-content ul.course-meta li span.icon{
    color: var(--primary-color);
}
.training-card .training-content ul.course-meta li span.text{
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
}
.training-card .training-content h3{
    font-size: 21px;
    line-height: 28px;
}
.training-card .training-content p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
/** Footer Style **/
.zcs-footer{
    padding-top: 70px;
    position: relative;
}
.zcs-footer .footer-wrapper{
    padding: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    border: 1px solid var(--grayish-blue);
}
.zc-footer-about-widget p{
    font-size: 16px;
    line-height: 24px;
}
.footer-widget-title h3{
    font-size: 22px;
    line-height: 26px;
    color: var(--heading-color);
    margin-bottom: 15px;
}
.footer-menu-widget ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu-widget ul li{
    position: relative;
    padding-left: 10px;
}
.footer-menu-widget ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background-color: var(--grayish-blue);
}
.footer-menu-widget ul li a{
    text-decoration: none;
    text-transform: capitalize;
    color: var(--text-color);
}
.footer-menu-widget ul li a:hover{
    color: var(--primary-color);
}
.footer-contact-widget ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-widget ul a{
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    column-gap: 10px;
    align-items: flex-start;
}
.footer-copyright{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f5f5f5;
}
.footer-copyright .footer-bottom-links li a{
    text-decoration: none;
    color: var(--text-color);
}
.footer-copyright .footer-bottom-links li a:hover{
    color: var(--primary-color);
}
.footer-bg-text{
    text-align: center;
    font-size: clamp(80px, 16vw, 160px);
    font-weight: 800;
    letter-spacing: -4px;
    color: transparent;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    text-align: center;
    opacity: 0.3;
}

/*** Responsive Css ***/
@media(max-width:991px){
    .main-header .navbar-collapse {
            position: fixed;
            top: 0;
            left: 0;
            background-image: linear-gradient(#000917, #000d20 12%, #02122a 23%, #011742 34%, #01247b 44%, #153896 55%, #3055ba 65%, #4468c9 76%, #5879d0 88%, #6c89d9 100%, #86a1ea 100%, #b4c6f7 100%, #e7eeff 100%, #fff);
            padding: 20px;
            width: 200px;
            min-height: 100vh;
            max-height: 100vh;
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: 9999;
        }
    .main-header .navbar-collapse.show{
        transform: translateX(0);
    }
    .main-header .navbar-collapse .navbar-nav li a{
        color:rgba(255, 255, 255, 1);
    }
}
@media(max-width:767px){
    .zcs-page-banner.style-2{
        background-position: center;
    }
}
@media(max-width:640px){
    .main-header .navbar .container{
        max-width: 100vw;
        margin: 0;
    }
    .zcs-hero-section-2::before{
        background-position:center left;
    }
}
@media(max-width:540px){
    .zcs-cta-block{
        padding: 50px 30px;
    }
    .zcs-cta-block::before{
        transform: skew(0deg);
    }
}
/** Animation **/
.ring-anim{
    -webkit-animation: ring 5s .7s ease-in-out infinite;
  -moz-animation: ring 5s .7s ease-in-out infinite;
  animation: ring 5s .7s ease-in-out infinite;
}
@-webkit-keyframes ring {
  0% { -webkit-transform: rotateZ(0); }
  1% { -webkit-transform: rotateZ(30deg); }
  3% { -webkit-transform: rotateZ(-28deg); }
  5% { -webkit-transform: rotateZ(34deg); }
  7% { -webkit-transform: rotateZ(-32deg); }
  9% { -webkit-transform: rotateZ(30deg); }
  11% { -webkit-transform: rotateZ(-28deg); }
  13% { -webkit-transform: rotateZ(26deg); }
  15% { -webkit-transform: rotateZ(-24deg); }
  17% { -webkit-transform: rotateZ(22deg); }
  19% { -webkit-transform: rotateZ(-20deg); }
  21% { -webkit-transform: rotateZ(18deg); }
  23% { -webkit-transform: rotateZ(-16deg); }
  25% { -webkit-transform: rotateZ(14deg); }
  27% { -webkit-transform: rotateZ(-12deg); }
  29% { -webkit-transform: rotateZ(10deg); }
  31% { -webkit-transform: rotateZ(-8deg); }
  33% { -webkit-transform: rotateZ(6deg); }
  35% { -webkit-transform: rotateZ(-4deg); }
  37% { -webkit-transform: rotateZ(2deg); }
  39% { -webkit-transform: rotateZ(-1deg); }
  41% { -webkit-transform: rotateZ(1deg); }

  43% { -webkit-transform: rotateZ(0); }
  100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
  0% { -moz-transform: rotate(0); }
  1% { -moz-transform: rotate(30deg); }
  3% { -moz-transform: rotate(-28deg); }
  5% { -moz-transform: rotate(34deg); }
  7% { -moz-transform: rotate(-32deg); }
  9% { -moz-transform: rotate(30deg); }
  11% { -moz-transform: rotate(-28deg); }
  13% { -moz-transform: rotate(26deg); }
  15% { -moz-transform: rotate(-24deg); }
  17% { -moz-transform: rotate(22deg); }
  19% { -moz-transform: rotate(-20deg); }
  21% { -moz-transform: rotate(18deg); }
  23% { -moz-transform: rotate(-16deg); }
  25% { -moz-transform: rotate(14deg); }
  27% { -moz-transform: rotate(-12deg); }
  29% { -moz-transform: rotate(10deg); }
  31% { -moz-transform: rotate(-8deg); }
  33% { -moz-transform: rotate(6deg); }
  35% { -moz-transform: rotate(-4deg); }
  37% { -moz-transform: rotate(2deg); }
  39% { -moz-transform: rotate(-1deg); }
  41% { -moz-transform: rotate(1deg); }

  43% { -moz-transform: rotate(0); }
  100% { -moz-transform: rotate(0); }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}