@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 1.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 1.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
html {
  font-size: 1em;
  max-width: 100%;
  height: 100%;
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #464567;
  max-width: 100%;
  font-weight: 400;
  background-color: #fff;
  line-height: 1.7;
}

.noscroll {
  overflow-y: hidden !important;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #242364;
}

::selection {
  color: #fff;
  background: #242364;
}

@media only screen and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

a {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
a:active, a:focus, a:visited, a:hover {
  text-decoration: none;
  outline: none;
}

h1 {
   margin-top:30px;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

h5 {
  margin: 0;
}

h6 {
  margin: 0;
}

strong {
  font-weight: 600;
}

.clear {
  clear: both;
}

ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

p {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  p {
    font-size: 0.95rem;
  }
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.site-header {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  background: transparent;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.site-header .logo-img {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 150px;
}
.site-header.white-bg {
  background: #fff;
}
.site-header.in {
  background: #fff;
}
.site-header.in .logo-img {
  width: 110px;
}
@media only screen and (max-width: 991px) {
  .site-header .container {
    width: 100%;
    max-width: none;
  }
}
.site-header .menu-icon span {
  width: 25px;
  height: 2px;
  background: #777;
  display: inline-block;
  position: relative;
}
.site-header .menu-icon span:after, .site-header .menu-icon span:before {
  content: "";
  width: 16px;
  height: 2px;
  position: absolute;
  right: 0;
  background: #777;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.site-header .menu-icon span:after {
  top: -6px;
}
.site-header .menu-icon span:before {
  bottom: -6px;
}
.site-header .menu-icon:hover span:after, .site-header .menu-icon:hover span:before {
  width: 25px;
}
.site-header .nav-link {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  padding: 0.3rem 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .site-header .nav-link span {
    z-index: 6;
    position: relative;
  }
  .site-header .nav-link:before, .site-header .nav-link:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #bb282a;
    content: "";
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  .site-header .nav-link:before {
    top: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .site-header .nav-link:after {
    bottom: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
  }
  .site-header .nav-link:hover, .site-header .nav-link.active, .site-header .nav-link:focus {
    color: #bb282a;
  }
  .site-header .nav-link:hover:after, .site-header .nav-link:hover:before, .site-header .nav-link.active:after, .site-header .nav-link.active:before, .site-header .nav-link:focus:after, .site-header .nav-link:focus:before {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media only screen and (min-width: 992px) {
  .site-header .nav-link {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 1199px) {
  .site-header .nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    background: #191846;
    display: block;
    padding: 0.5rem 1.5rem;
    z-index: 999;
    height: 100%;
    width: 90%;
    max-width: 300px;
    overflow-y: auto;
    -webkit-transition: all 0.8s ease-in;
    -moz-transition: all 0.8s ease-in;
    -o-transition: all 0.8s ease-in;
    transition: all 0.8s ease-in;
  }
  .site-header .nav.open {
    right: 0;
  }
  .site-header .nav-item {
    display: block;
    margin: 1rem 0;
    font-size: 1.2rem;
    opacity: 1;
  }
  .site-header .nav-link {
    font-size: 1.1rem;
    color: #fff;
    text-transform: none;
    opacity: 0.8;
  }
  .site-header .nav-link.contact-link {
    margin-left: 0;
    opacity: 1;
  }
  .site-header .close-menu {
    cursor: pointer;
  }
  .site-header .close-menu img {
    padding: 2px;
  }
}
@media only screen and (min-width: 1200px) {
  .site-header .navbar {
    padding: 0 1rem;
  }
  .site-header header {
    padding: 0;
  }
  .site-header .nav-link {
    margin: 0 5px;
  }
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.btn-primary {
  padding: 0.7rem 1.4rem 0.9rem;
  background: #bb282a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 30px;
  line-height: 1rem;
  text-transform: uppercase;
}
.btn-primary span {
  font-size: 18px;
}
.btn-primary:hover {
  background: #911f21;
  color: #fff;
}

.text-link {
  font-weight: 500;
  color: #bb282a;
  font-size: 0.8rem;
}
.text-link:hover {
  letter-spacing: 0.5px;
  color: #911f21;
}

.home-slider-section .row {
  min-height: 90vh;
}
.home-slider-section h1 {
  font-size: 2.8rem;
  font-weight: 300;
  color: #242364;
}
.home-slider-section h1 span {
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .home-slider-section h1 {
    font-size: 2rem;
  }
}
.home-slider-section .carousel-item {
  background: #f3f8fb;
  /* Old browsers */
  background: -moz-linear-gradient(right, #f3f8fb, #f7fcff);
  /* FF3.6+ */
  background: -webkit-linear-gradient(top, #f3f8fb, #f7fcff);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(bottom, #f3f8fb, #f7fcff);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(bottom, #f3f8fb, #f7fcff);
  /* IE10+ */
  background: linear-gradient(to bottom, #f3f8fb, #f7fcff);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  padding: 90px 0 0;
}
.home-slider-section .carousel-item .banner-img {
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .home-slider-section .carousel-item .banner-img {
    max-width: 300px;
    width: 90%;
    display: block;
    margin: auto;
  }
}
.home-slider-section .carousel-control-next, .home-slider-section .carousel-control-prev {
  width: 5%;
}
.home-slider-section .carousel-control-prev-icon {
  background-image: url("../images/prev.svg");
}
.home-slider-section .carousel-control-next-icon {
  background-image: url("../images/next.svg");
}

.scroll-down {
  cursor: pointer;
}

.para-large {
  font-size: 1.1rem;
  font-weight: 500;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: #242364;
}
.section-title:after {
  position: absolute;
  width: 50px;
  height: 4px;
  background: #a7a6e0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.section-title.st-center {
  text-align: center;
}
.section-title.st-center:after {
  margin: auto;
}
@media only screen and (min-width: 992) {
  .section-title {
    font-size: 2rem;
  }
}

.font-3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.font-2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.icon {
  width: 75px;
  height: 75px;
  text-align: center;
  line-height: 75px;
  background: #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(170, 211, 246, 0.35);
  -moz-box-shadow: 0px 0px 20px 0px rgba(170, 211, 246, 0.35);
  box-shadow: 0px 0px 20px 0px rgba(170, 211, 246, 0.35);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.home-serv-section {
  background: #f2fbff url("../images/serv-bg.png") no-repeat center top;
}
.home-serv-section .hs-box {
  text-align: center;
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  .home-serv-section .hs-box p {
    max-width: 250px;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  .home-serv-section .hs-box:nth-child(2) {
    position: relative;
    top: 50px;
  }
}
.home-serv-section .hs-box:hover .icon {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}
.home-serv-section .font-3 {
  color: #242364;
  margin-bottom: 12px;
}

.banner {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  background: #242364;
}
.banner h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.stat-section {
  background: #bb282a;
  /* Old browsers */
  background: -moz-linear-gradient(right, #bb282a, #7c1b1c);
  /* FF3.6+ */
  background: -webkit-linear-gradient(top, #bb282a, #7c1b1c);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(bottom, #bb282a, #7c1b1c);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(bottom, #bb282a, #7c1b1c);
  /* IE10+ */
  background: linear-gradient(to bottom, #bb282a, #7c1b1c);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  position: relative;
  overflow: hidden;
}
.stat-section * {
  z-index: 5;
}
.stat-section .stat-box {
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 25px 15px;
  margin-bottom: 30px;
}
.stat-section h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 12px 0;
  color: #242364;
}
@media only screen and (min-width: 1200px) {
  .stat-section h4 {
    font-size: 2.5rem;
  }
}
.stat-section p {
  font-size: 1rem;
}

.associations {
  background: #242464;
}
.associations h6 {
  color: #fff;
}
.associations img {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0);
}
.associations .col-12:hover > img {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.23);
}

.associationsnew {
 /* background: #22224c;*/
  /*background-image: url(../images/circle-background.jpg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;*/

    background: #333 url(../images/circle-background.jpg) no-repeat center center;
    background-size: cover;
    /*background-attachment: fixed;*/


}
.associationsnew h6 {
  color: #333;
}
.associationsnew img {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0);
}
.associationsnew .col-12:hover > img {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.23);
}


.site-footer {
  background: #16163e;
}
.site-footer li a {
  font-size: 0.85rem;
  color: #606982;
  line-height: 1.5;
  display: block;
}
.site-footer li a:hover {
  color: #c5cbd4;
}
.site-footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 20px;
  text-align: center;
  background: #2b2a77;
  border-radius: 50%;
  padding: 10px;
}
.site-footer .footer-social a:hover {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}
.site-footer .footer-social svg {
  width: 20px;
  height: 20px;
}
.site-footer .border-btm {
  border-bottom: 1px solid #29376e;
}
.site-footer .cr p, .site-footer .cr a {
  color: #606982;
  font-size: 0.8rem;
}
.site-footer .cr a:hover {
  color: #8890a7;
}

.contact strong {
  color: #bb282a;
  font-size: 110%;
  display: block;
}
.contact p a {
  color: inherit;
}
.contact p a:hover {
  color: #bb282a;
}

.about .font-3 {
  color: #242364;
}
.about .about-img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 991px) {
  .about .about-img {
    max-width: 300px;
    margin: 0 auto 30px;
  }
}

.light-bg {
  background: #f3f8fb;
  /* Old browsers */
  background: -moz-linear-gradient(right, #f3f8fb, #f7fcff);
  /* FF3.6+ */
  background: -webkit-linear-gradient(top, #f3f8fb, #f7fcff);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(bottom, #f3f8fb, #f7fcff);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(bottom, #f3f8fb, #f7fcff);
  /* IE10+ */
  background: linear-gradient(to bottom, #f3f8fb, #f7fcff);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}

.checklist li {
  background: url("../images/check.svg") no-repeat left top;
  background-size: 28px 28px;
  padding: 15px 0px 15px 40px;
  font-weight: 500;
  line-height: 19px;
  display: block;
  font-size: 1.1rem;
  background-position-y: 1rem;
}
.checklist.checklist li {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-left {
 /* background: #f4f4f4;*/
  padding: 20px;
}

.whatsapp-icon {
  position: fixed;
  bottom: 50px;
  right: 20px;
  color: #fff;
  border-radius: 50%;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 700;
  -webkit-transition: all 0.3s cubic-bezier(0.22, 0.68, 0, 1.71);
  -moz-transition: all 0.3s cubic-bezier(0.22, 0.68, 0, 1.71);
  -o-transition: all 0.3s cubic-bezier(0.22, 0.68, 0, 1.71);
  transition: all 0.3s cubic-bezier(0.22, 0.68, 0, 1.71);
}
.whatsapp-icon svg {
  width: 35px;
  height: 35px;
}

.page-title {
  background: #242364;
  padding: 12px 0;
}
.page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.background-shapes {
  opacity: 0.3;
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 5076px;
  background-size: 100%;
  animation: 120s infiniteScroll linear infinite;
  background-repeat-x: repeat;
  background-image: url(https://cdn2.hubspot.net/hubfs/53/Pricing%202017%20Assets/marketing/Header_Circles-1.svg);
}


/*added here*/

.service .btn-outline-light{
  border: none;
  border-radius: 0;
  border-left: 3px solid #f91942;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}
.service .serv-box{
  padding: 0 20px;
}
.service .slick-prev{
  left: -40px;
}
.service .item:hover .btn-outline-light{
  background: #fff;
  border-color: #fff;
}

/* ends here */

@-webkit-keyframes infiniteScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -1692px, 0);
    transform: translate3d(0, -1692px, 0);
  }
}
@keyframes infiniteScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -1692px, 0);
    transform: translate3d(0, -1692px, 0);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-70px, 0, 0);
    transform: translate3d(-70px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-70px, 0, 0);
    transform: translate3d(-70px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(70px, 0, 0);
    transform: translate3d(70px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(70px, 0, 0);
    transform: translate3d(70px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 70px, 0);
    transform: translate3d(0, 70px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 70px, 0);
    transform: translate3d(0, 70px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/*# sourceMappingURL=style.css.map */
