

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}.section-title

a {
  color: #5846f9;
  text-decoration: none !important;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5846f9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #7b27d8;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5846f9;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.homebanner{
  margin-top: 8px;
}

 .homebanner h5 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
    }


  .homebanner h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
    }

.homebanner .banner-text h4{
  font-size: 18px;
  color: #6a6c6a;
}

.homebanner .feature-heading h4{
  font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom:8px
}
.homebanner .feature-heading h5{
  font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom:10px;
    text-align:left;
}
.homebanner .banner-text .web-points{

}

.homebanner .button{
  text-align: center;
  margin-top: 30px;
}

.homebanner .web-points:hover{
  transform: translatey(-5px);
  transition: 0.3s;
}

.homebanner .banner-text .web-points{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
  border-radius: 5px;
  padding:8px;
  transition: 0.3s;
}

.homebanner .banner-text .web-points .web-icon{
  margin-right: 10px;
  border-right: 1px solid #f2f2f2;
    padding-right: 10px;
}


.homebanner .banner-text .web-points .web-text p{
  font-size: 14px;
}

.homebanner .banner-text .web-points .web-text h4{
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0px;
}

.homebanner .banner-text .web-points ul li{
  margin-bottom: 15px;
  list-style: disc;
}

.homebanner .banner-text .web-points ul{
  padding-left: 15px;
}

.perfect-slider{
    margin-top:30px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
.sticky_left {
    position: fixed;
    left: -35px;
    top: 40%;
    z-index: 9;
}

.sticky_left a img{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
    border:1px solid var(--orange);
    width:38px;
}

.qucick-contact-phone-sticky {
    position: fixed;
    left: -1px;
    top: 30%;
    z-index: 9;
}

.qucick-contact-phone-sticky a img {
    width: 32px;
    border:1px solid var(--blue);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 5px 0px;
    background-color: #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(24, 6, 185, 0.8);
  padding: 12px 0;
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  padding: 10px 0 10px 24px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  border-color: #fff;
}
.navbar .getstarted:before, .navbar li:hover > .getstarted:before {
  visibility: hidden;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #2c4964;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #5846f9;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5846f9;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #5846f9;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 15px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #d445b7;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}


.icon {
  display: inline-block;
  width: 6em;
  height: 6em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  color: white;
}

.wave {
  animation: waveIn 1.2s infinite ease-out;
  transform-origin: 50% 50%;
}

.wave-sm {
  animation-delay: .3s;
}

.wave-md {
  animation-delay: .45s;
}

.wave-lg {
  animation-delay: .6s;
}

@keyframes waveIn {
  from {
    opacity: 0;
    transform: scale(.3) translate(-20px,10px);
  }
  
  50% {
    transform: translate(0,0);
    opacity: 1;
  }
}

.mail{
   margin-left: 100px;
   height: 50px;
   width: 100px;
   margin-top:20px;
}

@media (max-width: 750px) {
    .mail {
        width: 6rem;
        margin: 0;
    }
}
/* glowing button*/

 .button-desk a{
  background:#fff;
}

@media (max-width: 1000px){
  .glow_btn a{
    padding: 15px 15px;
 
  
    margin-top:15px;
    width: 150px;
}
}

.button{
  margin-bottom: 20px;
  margin-top: 40px;
}

.button a{
  padding: 15px 15px;
    background: radial-gradient(circle,#fa8f16 0,#ff6b12 50%);
  /*background: linear-gradient(126deg,#f5a623,#f76b1c);*/
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  border:1px solid transparent;
  letter-spacing: 1px;
}

.glow-on-hover {
    cursor: pointer;
    position: relative;
    z-index: 0;
    color: #000!important;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
a, a:hover{
  text-decoration: none;
}

/* seo-about*/
.seo-about{
  margin-top: 50px;
}

.seo-about .seo-about-content .heading{
  text-align: left;
}
.seo-about .seo-about-content p{
  text-align: justify;
  margin-bottom: 0px;
}
.seo-about .seo-about-content ul{
  margin-top: 15px;
}
.seo-about .seo-about-content ul li {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}
.seo-about .seo-about-content ul li i {
    color: #f2a940;
    font-size: 16px;
    margin-right: 10px;
}

.seo-about .seo-about-image{
  padding-right: 30px;
}

.seo-about .seo-about-image img{
  border-radius: 10px;
}

/*seo-help*/
.seo-help{
  margin-top: 50px;
}

.seo-help .heading{
  text-align: left;
}

.seo-help .card-color{
  background-color: #f2f7fd;
}

.seo-help .card-shydow{
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);;
}

.seo-help .card{
  border-radius: 0px;
  border:0px;
}

.seo-help  .card-body{
  text-align: center;
  padding: 30px;
}

.seo-help  .card-body .card-title{
  font-size: 20px;
  font-weight: 600;
}

.seo-help  .card-body img{
  width: 70px;
  margin-bottom: 15px;
}
.seo-help .card-pd{
  padding-left: 0px;
}

.Why-app-development{
  margin-top: 50px;
  background-color: whitesmoke;
  padding: 30px 0px;
}

.Why-app-development .Why-app-development-content{
  margin-top: 30px;
  text-align: center;
}

.Why-app-development .Why-app-development-content img{
  margin-bottom: 15px;
}

.Why-app-development .Why-app-development-content h5{
  font-weight: 600;
    font-size: 18px;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(116, 15, 214, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}
#hero .container, #hero .container-fluid {
  padding-top: 84px;
}
#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
 
}
#hero .btn-get-started:hover {
  background: #fff;
  color: #5846f9;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .container, #hero .container-fluid {
    padding-top: 68px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
 
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 60%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}
@media (max-width: 575px), (max-height: 600px) {
  #hero {
    height: auto;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.sector{
     border: 1px solid;
     border-radius :10px;
     padding: 10px;
         box-shadow: 0 8px 13px rgb(70 74 85 / 8%);
    font-weight: bold;
}

/* cast stydy*/
case-study{
  margin-top: 50px;
}

.case-study .row{
  background-color: #f3f7fd;
}

.case-study .case-study-content{
  background: linear-gradient(126deg,#f5a623,#f76b1c);
  padding: 100px 30px;
  height: 100%;
}

.case-study .case-study-content .heading{
  text-align: left;
}

.case-study .case-study-content .heading h3{
  color: #fff!important;
}

.case-study .case-study-content .heading p{
  -webkit-text-fill-color: #fff!important;
}

.case-study .case-study-content p{
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.case-study .case-study-content ul li{
  color: #fff;
  list-style: disc;
}

.case-study .case-study-content ul{
  padding-left: 50px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.home-service {
    margin: 0 0 5%;
    padding: 5% 0 5%;
    background: linear-gradient(103.51deg, #EAF8FF -11.85%, rgba(253, 241, 245, 0.44) 47.62%, #EAF9F1 108.74%);
}

.home-service .card {
    text-align: center;
    box-shadow: 10px 10px 10px rgb(164 172 178 / 8%);
    background-color: #fff;
    padding: 8% 0;
    border-radius: 20px;
    width: 95%;
    margin: auto;
    margin-top: 40px;
}

.home-service .card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.home-service .line {
    border-top: 5px solid #0078d0;
    border-radius: 5px;
    width: 40%;
    margin: auto;
    margin-top: 20px;
}

.home-service .card .card-body h4 {
    font-weight: 700;
    font-weight: 28px;
}

.home-service .card .card-body a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.home-service .card-img {
    width: auto;
    height: 200px;
    margin: auto;
}

.home-service .card-img img {
    width: inherit;
    height: inherit;
}
.index-h1{
  font-size: 30px!important;
}

.index-text h5{
  font-size: 14px;
  margin-bottom: 15px!important;
}

.index-two-banner .swiper-slide img{
  width: 90%;
}

.index-two-banner .container-fluid{
  padding-right: 3rem;
    padding-left: 3rem;
}

.index-two-product .container-fluid{
  padding-right: 3rem;
    padding-left: 3rem;
}

.index-two-product .product-box{
  min-height: 380px;
}

.banner{
  display: flex;
  justify-content: center;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
..about{
  margin-top: 300px;
}

.about .heading{
  text-align: left;
}

.about .about-content{
  margin-top: 30px;
}

.about .about-content p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 25px;
}

.about .aboutboxes{
  padding-left: 50px;
}

.about .box-margin{
  margin-top: 80px;
  padding-left: 20px;
}

.about .boxes-margin{
  padding-right: 20px;
  margin-top: 20px;
}

.about .about-box{
  background-color: #fff;
  box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.about .about-box .box-number{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.about .about-box .box-number h5{
  font-size: 48px;
  font-weight: 700;
    color: black;
}

.about .about-box h5{
  color: black;
}

.about .about-box .box-number img{
  width: 75px!important;
    float: right;
}

.about .about-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 14px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: #0e6ec1;
}

.about .two:after{
  background-color: ;
}
.about .three:after{
  background-color: #ffa502;  
}
.about .four:after{
  background-color: #ff6348;  
}

.about .about-box:hover:after {
    height: 100%;
    transition: all 1s cubic-bezier(0.65, 0, 0.076, 1);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    z-index: -1;
}

.about .about-box:hover{
  color: #fff;
  transition: all 1s cubic-bezier(0.65, 0, 0.076, 1);
}

.about .about-box:hover h5{
  color: #fff;
  transition: all 1s cubic-bezier(0.65, 0, 0.076, 1);
}


.about-why-us{
  margin-top: 0px;
}

.about-why-us .heading{
  margin-bottom: 30px;
}

.about-why-us .why-us-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
    overflow: hidden;
    padding: 30px;
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 1;
    margin-bottom: 30px;
    min-height: 265px;
}

.about-why-us .why-us-box:before{
    background: linear-gradient(126deg,#4638c7,#4638c7);
    border-radius: 50px;
    content: '';
    position: absolute;
    right: -60px;
    top: -40px;
    transition: all .3s;
    width: 100px;
    height: 100px;
    z-index: -1;
}

.about-why-us .why-us-box:hover:before{
    background: linear-gradient(126deg,#4638c7,#4638c7);
    border-radius: 0;
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
}

.about-why-us .why-us-box:hover .why-us-content{
  color: #fff;
}

.about-why-us .why-us-box:hover .why-us-icon i{
  background: #fff;
    color: var(--orange);
}

.about-why-us .why-us-box .why-us-icon i {
    background: linear-gradient(126deg,#f5a623,#f76b1c);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 30px;
}

.about-why-us .why-us-box  .why-us-content{
  margin-top: 20px;
}

.about-why-us .why-us-box  .why-us-content h5 {
    font-weight: 600;
    font-size: 18px;
}

.about-why-us .why-us-box  .why-us-content p{
  text-align: justify;
  margin-bottom: 0px;
}

.about-us-banner{
  padding-bottom: 40px;
  padding-top: 40px;
  background-color: #4638c7;
}
.about-us-banner .about-us-banner-content{
  text-align: center;
}

.about-us-banner .about-us-banner-content .heading h3{
  color: #fff;
}
.about-us-banner .about-us-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #f2a940;
}

.about-us-banner .about-us-banner-content .heading{
  color: #fff;
}

.about-us-banner .about-us-banner-content .heading p{
  -webkit-text-fill-color: #fff!important;
  font-weight: 500;
}




/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg, rgba(88, 70, 249, 0.5) 0%, rgba(123, 39, 216, 0.5) 100%), url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}
.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.terms-of-use{
  margin-top: 50px;
  margin-bottom: 50px;
}

.terms-of-use h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--orange);
    text-align: center;
}


.terms-of-use p{
  text-align: justify;
}

.terms-of-use .terms-of-use-content{
  margin-top: 30px;
}

.terms-of-use .terms-of-use-content .product-heading{
  margin-top: 15px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
padding:30px 20px 10px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: #fff;
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: #fff;
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}
.icon-box p{
   letter-spacing: 1px;
    text-align: justify;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #5846f9;
}
.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #2c4964;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #b1a9fc;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5846f9;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5846f9;
}
@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}
/*--------------------------------------------------------------
# Container
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7f9 0%, #e2e8f0 100%);
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-wrap {
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio .portfolio-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(88, 70, 249, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  transition: opacity 0.3s ease;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-info h4 {
  font-size: 22px;
  font-weight: bold;
}

.portfolio .portfolio-info p {
  font-size: 16px;
  text-transform: uppercase;
}

.portfolio .portfolio-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
}

.portfolio .portfolio-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s ease;
}

.portfolio .portfolio-links a:hover {
  color: #fff;
}
/*--------------------------------------------------------------
# Portfolio Filter
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* Adds spacing between filter items */
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin: 0;
  border-radius: 30px; /* More rounded for a modern look */
  background: #f5f5f5; /* Subtle light background */
  transition: all 0.3s ease;
  position: relative;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #5846f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portfolio #portfolio-flters li::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #126fff; /* Underline color */
  position: absolute;
  bottom: -8px; /* Adjusted position for visual clarity */
  left: 50%;
  transition: width 0.3s ease, left 0.3s ease;
}

.portfolio #portfolio-flters li:hover::before,
.portfolio #portfolio-flters li.filter-active::before {
  width: 100%;
  left: 0;
}

@media (max-width: 768px) {
  .portfolio #portfolio-flters {
    flex-direction: column;
  }

  .portfolio #portfolio-flters li {
    margin: 5px 0; /* Adjust margin for better spacing on smaller screens */
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 40px 0;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #5846f9;
  border: 2px solid #fff;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.portfolio-details .portfolio-info,
.portfolio-details .portfolio-description {
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px;
}

.portfolio-details .portfolio-info {
  margin-bottom: 30px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #5846f9;
  padding-bottom: 10px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  font-size: 16px;
  line-height: 1.6;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #2c4964;
  background: #f8f8f8;
}
.pricing h4 {
  font-size: 36px;
  color: #5846f9;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing ul li {
  padding-bottom: 16px;
}
.pricing ul i {
  color: #5846f9;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-buy {
  background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
}
.pricing .featured h3 {
  color: #fff;
  background: #5846f9;
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #5846f9;
  color: #fff;
}

.partners {
    margin: 5% 0;
}

.partners img {
    margin-top: 30px;
    width: 90%;
}

/* clients */

.clients {
    margin: 0 0 5%;
    padding: 5% 0;
}

.clients img {
    margin-top: 30px;
    width: 90%;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
}
.faq .section-title h2, .faq .section-title p {
  color: #fff;
}
.faq .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #8577fb;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #2c4964;
}
.faq .faq-list a.collapsed:hover {
  color: #5846f9;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
.img-enroll{
      max-width: 100%;
    height: auto;
}
@media (max-width: 767.98px) {
  .mail {
    display: flex;
    align-items: center;
  }
  
  .mail-border a {
    display: flex;
    align-items: center;
  }
  
  .mail-border img {
    margin-left: 200px; /* Adjust the spacing as needed */
    width: 100px;
  }
  
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}
.contact .info-box i {
  font-size: 32px;
  color: #5846f9;
  border-radius: 50%;
  padding: 8px;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5846f9;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #5846f9;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #7b27d8;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 85px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 56px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c6387;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(116, 15, 214, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(123, 39, 216, 0.8);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #5846f9;
}
#footer .copyright-wrap {
  border-top: 1px solid #8577fb;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}
#footer .credits a {
  color: #fff;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}


/* Slider */



.slick-slide {
    margin: 0px 18px;
    font-size: 12px;
}

.slick-slide img {
    width: 100%;
    height: 50px;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
        padding: 10px 5px;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    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;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[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;
}

/*WhatsApp Button*/

.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:70px;
  right:15px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
  animation: bounce-in-right 2s ease;
}

@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

.my-float{
  margin-top:16px;
  line-height:2;
}
