*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#main {
    max-width: 1920px;
    margin: 0 auto;
    width: auto;
    float: none;
}
@keyframes pulse-me {
  0% {
      transform: scale(.9);
      opacity: .2;
      -webkit-transform: scale(.9);
      -moz-transform: scale(.9);
      -ms-transform: scale(.9);
      -o-transform: scale(.9)
  }
  50% {
      opacity: .5
  }

  70% {
      opacity: .09
  }

  100% {
      transform: scale(2.1);
      opacity: 0;
      -webkit-transform: scale(2.1);
      -moz-transform: scale(2.1);
      -ms-transform: scale(2.1);
      -o-transform: scale(2.1)
  }
}
.play-anim-ico {
  background-image: url(../images/carcare-application-flow/play-video-wht.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 60px;
  position: absolute;
  height: 60px;
  left: 50px;
  bottom: 25px;
  z-index: 111;
  margin-left: -25px;
pointer-events: none;
}
.play-anim-ico:after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: '';
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 13px #ffffff;
  transform: scale(0.9);
  transform-origin: center center;
  animation: pulse-me 1s linear infinite;
  -webkit-animation: pulse-me 1s linear infinite;
}
.heading-style {
  font-weight: 600;
  color: #03acef;
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  font-size: 40px;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: -8px;
}
.demovideo {
  padding: 40px 0 40px 0;
}
.demovideo-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}
.demovideo-block {
  max-width: 800px;
  margin: 0 auto;
  outline: 1px solid #ddd;
  position: relative;
}
.demovideo-block::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.demovideo-block img {
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.demovideo .play-anim-ico {
  left: 55%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.demovideo iframe {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
}
/*********************************/
.top-banner {
    width: 100%;
    text-align: center;
    padding: 30px 0 40px 0;
    background: #e3f7ff;
    box-sizing: border-box;
    margin-top: 85px;
  }

  .top-banner .top-banner-inner {
    margin: 0px auto;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .top-banner .h1 {
    font-size: 45px;
    margin: 0;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1em;
  }

  .top-banner .h1 strong {
    color: #03acef;
    display: block;
    font-weight: bold;
    line-height: 1em;
  }

  .webscreens {
    padding: 40px 0 90px 0;
    overflow: hidden;
  }

  .webscreens .slick-slide img {
    max-width: 100%;
  }

  .webscreens.admin-panel {
    background-color: #e8e8e8;
    padding: 40px 0 90px 0;
    position: relative;
    margin-top: 0;
  }

  .webscreens-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .webscreens ul {
    list-style: none;
    margin-top: 15px;
  }

  .web-caption strong {
    font-size: 24px;
    color: #000000;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
    margin-top: 20px;
  }

  .webscreens ul li .image-holder {
    width: 1225px;
    background-color: #ddd;
    border-radius: 15px;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.31);
  }
  .webscreens p {
    text-align: center;
  }
  .webscreens ul .slick-arrow {
    position: absolute;
    bottom: -50px;
    font-size: 0;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #fff;
    box-shadow: 0 0 0 1px #03acef inset;
    padding: 0;
    margin: 0;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    cursor: pointer;
  }

  .webscreens ul .slick-arrow:hover {
    background-color: #e3f7ff;
  }

  .webscreens ul .slick-arrow.slick-prev {
    left: 50%;
    margin-left: -30px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-image: url(../images/carcare-application-flow/left.png);
  }

  .webscreens ul .slick-arrow.slick-next {
    right: 50%;
    margin-right: -30px;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    background-image: url(../images/carcare-application-flow/right.png);
    cursor: pointer;
  }
  .webscreens .slick-list {
    overflow: visible;
  }
  .webscreens .slick-slide {
    margin: 0 15px;
    outline: none;
  }
  .webscreens .heading-area h3 {
    margin: -8px 0 10px 0;
    padding: 0;
    font-size: 35px;
    line-height: 1em;
    text-transform: uppercase;
    color: #000;
    display: block;
    font-weight: bold;
    width: 100%;
    text-align: center;
  }
  .webscreens .heading-area h3 strong {
    color: #03acef;
    font-weight: bold;
    font-size: 18px;
    line-height: 1em;
    display: block;
    margin-top: 5px;
  }
/**************************************/

/**************************************/
.mobile-screen-resposive {
    width: 100%;
    text-align: center;
}
.mobile-screen-resposive ul{
    list-style: none;
}
.mobile-screen-resposive ul li {
    position: relative;
    text-align: center;
}
.mobile-screen-resposive ul li img {
    max-width: 100%;
    vertical-align: top;
}
.mobile-screen-resposive ul li:after {
    content: '';
    width: 100%;
    left: 0;
    height: 1px;
    background-color: #ddd;
    bottom: 0;
    position: absolute;
}
.gray-bg {
    background-color: #F8F8F8;
}

/********************************************/
@media (max-width:991px) {
  .heading-style {
    font-size: 35px;
  }
}
@media (max-width:630px) {
    .top-banner .h1 {
        font-size: 30px;
        line-height: 1em;
    }
    .webscreens .heading-area h3 {
        font-size: 26px;
    }
    .webscreens .heading-area h3 strong {
        font-size: 17px;
    }
    .webscreens ul li .image-holder {
        border-radius: 5px;
    }
    .heading-style {
      font-size: 30px;
    }
    .demovideo .play-anim-ico {
          transform: translateY(-50%) scale(0.8);
          -webkit-transform: translateY(-50%) scale(0.8);
          -moz-transform: translateY(-50%) scale(0.8);
          -ms-transform: translateY(-50%) scale(0.8);
          -o-transform: translateY(-50%) scale(0.8);
}
}
@media (max-width:480px) {
  .heading-style {
    font-size: 28px;
  }
}