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

a {
  color: #00b4f1;
}

a:hover {
  color: #00b4f1;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# 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 #00b4f1;
  border-top-color: #e2eefd;
  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);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #00b4f1;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3284f1;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #00b4f1;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: white;
  margin-right: 18px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.info-right h4 a:hover{
 color: black;
}

#header.header-scrolled {
  top: 0;
  padding: 15px;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 60px;
}

@media (max-width: 992px) {
  #header {
    padding: 15px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #222222;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #00b4f1;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}


/*.nav-menu a:hover:before, .nav-menu li:hover > a:before {
  visibility: visible;
  width: 100%;
}*/

/*.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #00b4f1;
}*/
.nav-menu a:hover, .nav-menu li:focus 
{
  color: #00b4f1;
}
.nav-menu a:hover:before{
  visibility: visible;
  width: 100%;
}
.nav-menu ul li a:hover{
  color: #00b4f1;
}
.nav-menu ul li.active a {
  color: #00b4f1;
}

/*.nav-menu ul li a:focus{
  color: #00b4f1;
}
.nav-menu ul li a:active{
  color: #00b4f1;
}*/
.error {
  color: red;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: black;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #00b4f1;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #00b4f1;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 95vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero1 {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero1:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 132px;
}
#hero2 .container {
  position: relative;
  padding-top: 132px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
    margin-top: 0;
    font-size: 55px;
    font-weight: 700;
    line-height: 75px;
    color: #222222;
    font-family: "Poppins", sans-serif;
}
#hero1 h1 {
  margin-top: 130px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #00b4f1;
}
#hero1 h1 span {
  color: #00b4f1;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #00b4f1;
}

#hero .btn-get-started:hover {
  background: #ff6c39;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px 8px 40px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  position: relative;
  font-weight: 600;
}

#hero .btn-watch-video i {
  color: #00b4f1;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero1 {
   height: 50vh;
}
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #00b4f1;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #00b4f1;
}

.section-title p {
  margin: 15px auto 0 auto;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 75%;
  }

}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
  margin-top: 134px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 15px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.sect-title h2{
  font-family: ui-monospace;
    font-weight: bold;
    font-size: 50px;
}


.featured-services .icon-box:hover::before {
  background: #00b4f1;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #00b4f1;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 500;
  font-size: 22px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #00b4f1;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  border: 5px solid #fff;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  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;
  background-color: #00b4f1;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover .icon i {
  color: #00b4f1;
}
.services .icon-box:hover h4 a {
  color: white;
}
 .icon-box:hover h4 {
  color: white;
}
.services .icon-box:hover p {
  color: white;
}
.services .icon-box:hover .icon {
  border-color: #00b4f1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 auto 15px auto;
  color: #eee;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #106eea !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
  .cardd {
    min-width: 223px !important;
}
  #hero1 {
    height: 60vh;
}
#hero {
  height: 70vh;
}
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #106eea !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 50px;
  bottom: 100px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

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

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #00b4f1;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #00b4f1;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box 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: #00b4f1;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #00b4f1;
}

.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: #00b4f1;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  /*font-family: #106eea;*/
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #106eea;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #00b4f1;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #00b4f1;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  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.4);
  padding: 10px 30px 30px 30px;
  background: white;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.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: 0;
  box-shadow: none;
  font-size: 14px;
}*/

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #00b4f1;
}

/*.contact .php-email-form input {
  padding: 20px 15px;
}*/

/*.contact .php-email-form textarea {
  padding: 12px 15px;
}*/

.contact .php-email-form button[type="submit"] {
  background: #00b4f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff6c39;
}

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

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

/*modal-css*/
 .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color:  #00b4f1;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 10px;
    outline: 0;
    top: 150px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}

.modal-header{
  border:none !important;
}
.modal-body{
  border:none !important;
}
.modal-footer{
  border:none !important;
}
.mod-main, .mod-main1{
  border:1px solid gray;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  background-color: white;
  box-shadow: 0px 1px 7px 1px;
}
.mod-main .icon i{
  color: #00b4f1;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.mod-main1 .icon i{
  color: #00b4f1;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 10px;

}

.modal-content2 {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color:  white;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 10px;
    outline: 0;
    top: 150px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
} 
/*modal-css*/

button.btn.btn-primary {
    background: #00b4f1;
    border: 1px solid #00b4f1;
    width: 500px;
    transition: 0.5s;
    border-radius: 50px;
    padding: 10px 10px 10px 10px;
}
button.btn.btn-primary:hover {
    background: #ff6c39 !important;
    border:1px solid #ff6c39 !important;
    
}
button.btn.btn-primary:active {
    background: #ff6c39 !important;
    border:1px solid #ff6c39 !important;
    
}
i.fa.fa-arrow-circle-right {
    font-size: 30px;
    margin-left: 100px;
    margin-top: 17px;
    color: #00b4f1;
}
.icon-box:hover .fa.fa-arrow-circle-right{
  color:white;
}

.web-img img{
  width: 100px;
  border-radius: 10px;
}
.sub-form{
  box-shadow: 1px 1px 5px 1px;
    margin-top: 46px;
    padding: 36px;
}
#sb-btn{
  background-color: #00b4f1;
}

.ic-img img{
  width: 100px;
}
.ic-img2 img{
  width: 138px;
    margin-top: -18px;
}



.serviceBox{text-align: center;margin-top: 60px;position: relative;z-index: 1; margin-bottom: 21px;}
.serviceBox .service-icon{width: 78px;height: 78px;border-radius:3px;background: #fff;margin: 0 auto;position: absolute;top: -34px;left: 0;right: 0;z-index: 1;transition: all 0.3s ease-out 0s;}
.serviceBox:hover .service-icon{transform: rotate(45deg);}
.serviceBox .service-icon span{display: inline-block;width: 60px;height: 60px;line-height: 60px;border-radius:3px;background: #00b4f1;font-size: 30px;color: #fff;margin: auto;position: absolute;top: 0;left: 0;bottom: 0;right: 0;transition: all 0.3s ease-out 0s;}
.serviceBox .service-icon span i{transition: all 0.3s ease-out 0s;}
.serviceBox:hover .service-icon span i{transform: rotate(-45deg);}
.serviceBox .service-content{background: #fff;border: 1px solid #e7e7e7;border-radius: 3px;padding: 55px 15px;position: relative;}
.serviceBox .service-content:before{content: "";display: block;width: 80px;height: 80px;border: 1px solid #e7e7e7;border-radius: 3px;margin: 0 auto;position: absolute;top: -37px;left: 0;right: 0;z-index: -1;transition: all 0.3s ease-out 0s;}
.serviceBox:hover .service-content:before{transform: rotate(45deg);}
.serviceBox .title{font-size: 17px;font-weight: 500;color: #324545;text-transform: uppercase;margin: 0 0 25px 0;position: relative;transition: all 0.3s ease-out 0s;}
.serviceBox:hover .title{color: #00b4f1;}
.serviceBox .description{font-size: 14px;font-weight: 500;line-height: 24px;margin-bottom: 0;}
.serviceBox .read-more {
    display: block;
    width: 90px;
    font-weight: bold;
    height: 43px;
    line-height: 38px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e7e7e7;
    font-size: 14px;
    color: #c4c2c2;
    margin: 0 auto;
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    transition: all 0.3s ease-out 0s;
}.serviceBox .read-more:hover{border: 1px solid #00b4f1;color: #00b4f1;text-decoration: none;}
.serviceBox.green .service-icon span{ background: #ff6c39; }
.serviceBox.blue .service-icon span{ background: #ffc300; }
.serviceBox.orange .service-icon span{ background: #91c300; }
.serviceBox.green:hover .title{ color:#ff6c39 ; }
.serviceBox.blue:hover .title{ color: #ffc300; }
.serviceBox.orange:hover .title{ color: #91c300; }

.serviceBox:hover .read-more{border: 1px solid #727cb6;color: #727cb6;}
.serviceBox.green:hover .read-more{border: 1px solid #008b8b;color: #008b8b;}
.serviceBox.blue:hover .read-more{border: 1px solid #3498db;color: #3498db;}
.serviceBox.orange:hover .read-more{border: 1px solid #e67e22;color: #e67e22;}








.container
.box {
  position: relative;
  width: 350px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  border-radius: 4px;
  margin: 20px;
  overflow: hidden;
  text-align: center;
}

.container
.box:before {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,.2);
  z-index: 2;
  pointer-events: none;
}


.container
.box
.icon {
  position: relative;
  width: 80px;
  height: 80px;
  color: #fff;
  background-color: #000;
  
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 700px;
  transition: 1s;
}

.container
.box:nth-child(1)
.icon {
  box-shadow: 0 0 0 0 #00b4f1;
  background-color: #00b4f1;
}

.container
.box:nth-child(1):hover
.icon {
  box-shadow: 0 0 0 400px #00b4f1;
  background-color: #00b4f1;
}

.container
.box:nth-child(2)
.icon {
  box-shadow: 0 0 0 0 #ff6c39;
  background-color: #ff6c39;
}

.container
.box:nth-child(2):hover
.icon {
  box-shadow: 0 0 0 400px #ff6c39;
  background-color: #ff6c39;
}

.container
.box:nth-child(3)
.icon {
  box-shadow: 0 0 0 0 #91c300;
  background-color: #91c300;
}

.container
.box:nth-child(3):hover
.icon {
  box-shadow: 0 0 0 400px #91c300;
  background-color: #91c300;
}

.container
.box
.content {
  position: relative;
  z-index: 1;
  transition: 0.5s;
} 

.container
.box:hover
.content {
  color: #fff;
}

.container .box .content h3 {
  font-size: 20px;
  margin: 10px 0;
}

.btn-2{
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
}

.container
.box2 {
  position: relative;
  width: 350px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  border-radius: 4px;
  margin: 20px;
  overflow: hidden;
  text-align: center;
}

.container
.box2:before {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,.2);
  z-index: 2;
  pointer-events: none;
}


.container
.box2
.icon {
  position: relative;
  width: 80px;
  height: 80px;
  color: #fff;
  background-color: #000;
  
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 700px;
  transition: 1s;
}

.container
.box2:nth-child(1)
.icon {
  box-shadow: 0 0 0 0 #ffc300;
  background-color:#ffc300;
}

.container
.box2:nth-child(1):hover
.icon {
  box-shadow: 0 0 0 400px #ffc300;
  background-color: #ffc300;
}

.container
.box2:nth-child(2)
.icon {
  box-shadow: 0 0 0 0 #00b4f1;
  background-color: #00b4f1;
}

.container
.box2:nth-child(2):hover
.icon {
  box-shadow: 0 0 0 400px #00b4f1;
  background-color: #00b4f1;
}

.container
.box2:nth-child(3)
.icon {
  box-shadow: 0 0 0 0 #ff6c39;
  background-color: #ff6c39;
}

.container
.box2:nth-child(3):hover
.icon {
  box-shadow: 0 0 0 400px #ff6c39;
  background-color: #ff6c39;
}

.container
.box2
.content {
  position: relative;
  z-index: 1;
  transition: 0.5s;
} 

.container
.box2:hover
.content {
  color: #fff;
}

.container .box2 .content h3 {
  font-size: 20px;
  margin: 10px 0;
}
#vbtn{
  background-color: #00b4f1;
}
#vbtn a{
  color: white;
}


/*blog css*/

@import url('https://fonts.googleapis.com/css?family=Heebo:400,700|Open+Sans:400,700');

:root {
  --color: #3c3163;
  --transition-time: 0.5s;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Open Sans';
  background: #fafafa;
}

a {
  color: inherit;
}

.cards-wrapper {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  padding: 0 4rem 4rem 4rem;
  margin: 0 auto;
}

.card {
  font-family: 'Heebo';
  --bg-filter-opacity: 0.5;
  background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img);
  height: 14em;
  width: 280px;
  font-size: 1.5em;
  color: white;
  border-radius: 1em;
  padding: 1em;
  /*margin: 2em;*/
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 1px 1px 12px 1px;
  transition: all, var(--transition-time);
  position: relative;
  overflow: hidden;
  border: 5px solid #ccc;
  text-decoration: none;
}

.card:hover {
  transform: rotate(0);
}
.txt{
  margin-top: 70px !important;
}

.card h1 {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.2em;
}

.card p {
  font-size: 0.75em;
  font-family: 'Open Sans';
  margin-top: 0.5em;
  line-height: 2em;
}

.card .tags {
  display: flex;
}

.card .tags .tag {
  font-size: 0.75em;
  background: rgba(255,255,255,0.5);
  border-radius: 0.3rem;
  padding: 8px 0.5em;
  margin-right: 0.5em;
  line-height: 1.5em;
  transition: all, var(--transition-time);
}

.card:hover .tags .tag {
  background: #00b4f1;
  color: white;
}

.card .date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75em;
  padding: 1em;
  line-height: 1em;
  opacity: .8;
}

.card:before, .card:after {
  content: '';
  transform: scale(0);
  transform-origin: top left;
  border-radius: 50%;
  position: absolute;
  left: -50%;
  top: -50%;
  z-index: -5;
  transition: all, var(--transition-time);
  transition-timing-function: ease-in-out;
}

.card:before {
  background: #ddd;
  width: 250%;
  height: 250%;
}

.card:after {
  background: white;
  width: 200%;
  height: 200%;
}

.card:hover {
  color: var(--color);
}

.card:hover:before, .card:hover:after {
  transform: scale(1);
}

.card-grid-space .num {
  font-size: 3em;
  margin-left: 1rem;
}

.info {
  font-size: 1.2em;
  display: flex;
  padding: 1em 3em;
  height: 3em;
}
.ser-bx{
  display: flex;
}
.ser-bx2{
  display: flex;
}

.info img {
  height: 3em;
  margin-right: 0.5em;
}

.info h1 {
  font-size: 1em;
  font-weight: normal;
}
.cards-wrapper {
    margin-bottom: 10px;
  }

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1285px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1124px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 900px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .card {
    width: 230px;
}
  .info {
    justify-content: center;
  }
  .card-grid-space .num {
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .card {
    width: 230px;
}
  .info {
    justify-content: center;
  }
  .card-grid-space .num {
    margin-left: 0;
    text-align: center;
  }
  .webdesigntuts-workshop::before {
    left: 63% !important;
    width: 600px !important;
}
}


@media screen and (max-width: 500px) {
  .cards-wrapper {
    padding: 4rem 2rem;
    grid-template-columns: 1fr 1fr;
  }
  .card {
    max-width: calc(100vw - 4rem);
  }
}

@media screen and (max-width: 450px) {
  .info {
    display: block;
    text-align: center;
  }
  .cards-wrapper {
    padding: 4rem 2rem;
    grid-template-columns: 1fr 1fr;
  }
  .card {
    width: 358px;
}
  .info h1 {
    margin: 0;
  }
}

@media screen and (max-width: 425px) {
  .info {
    display: block;
    text-align: center;
  }
  .cards-wrapper {
    padding: 1.5rem 2rem;
    grid-template-columns: 1fr;
  }
  .card {
    width: 358px;
    height: 12em;
}
  .info h1 {
    margin: 0;
  }
}
@media screen and (max-width: 320px) {
  .info {
    display: block;
    text-align: center;
  }
  .webdesigntuts-workshop::before {
    left: 0% !important;
    width: 0px !important;
}
  .cards-wrapper {
    padding: 0px 50px;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
   .card {
    width: 358px;
    height: 14em;
}
  .info h1 {
    margin: 0;
  }
}
/*blog css*/



/*===== PRESET =====*/
/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200&display=swap');

/* variables */
:root {
  /* Color */
  --main-color: #2c33ff;
  --secondary-color: #fff;


  /* Font-size */
  --font-size-main-title: 6rem;
  --font-size-secondary-title: 2.5rem;
  --font-size-section-title: 3rem;
  --font-size-project-title: 2em;
  --font-size-text: 1.2rem;
  --font-size-btn: 1.6rem;
} 

* {
  box-sizing: border-box;
}

/*body, html {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #f2f2f2;
}*/


.projects-card {
    position: relative;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/online-pharmacy-img.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}
.projects-card2 {
    position: relative;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/video-img.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}
.projects-card3 {
    position: relative;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/tax-img.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}
.projects-card4 {
    position: relative;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/event-img.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}
.projects-card5 {
    position: relative;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/car.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}
.projects-card6 {
    position: relative;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/build-mat-img.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}
.projects-card7 {
    position: relative;
   width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/tax-img.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}
.projects-card8 {
    position: relative;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 20%);
    padding: 1em;
    background-image:linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1)), url(../img/covid-img.jpg);
    background-position: center center;
    background-size: cover;
    transition: 1s;
    overflow-y: hidden;
}

.project-info-container {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s;
  padding: 0 1em 1em 1em;
  overflow: hidden;
}

.project-title {
  font-size: 22px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  margin: 1em 0 .3em 0;
  transition: .3s;
}

.project-load-bar {
  width: 0;
  height: 3px;
  background: #ff6c39;
  margin: 0;
}

.projects-card:hover {
  transform: scale(1.05);
}
.projects-card2:hover {
  transform: scale(1.05);
}
.projects-card3:hover {
  transform: scale(1.05);
}
.projects-card4:hover {
  transform: scale(1.05);
}

.projects-card5:hover {
  transform: scale(1.05);
}
.projects-card6:hover {
  transform: scale(1.05);
}
.projects-card7:hover {
  transform: scale(1.05);
}
.projects-card8:hover {
  transform: scale(1.05);
}

.projects-card:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}
.projects-card2:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}
.projects-card3:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}
.projects-card4:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}
.projects-card5:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}
.projects-card6:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}
.projects-card7:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}
.projects-card8:hover .project-info-container {
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1em;
  background: linear-gradient(hsl(0 0% 0% / 0),hsl(20 0% 0% / 0.3) 20%,hsl(0 0% 0% / 1));
}

.project-short-desc, .project-btn{
  font-size: var(--font-size-text);
  color: #fff;
  margin: 1em 0 0 0;
  display: none;
  opacity: 0;
  font-weight: 200;
}

.project-btn {
  max-width: 10em;
  padding: .7em 0;
  margin: 1.5em 0;
  display: none;
  justify-content: center;
  border: none;
  border-radius: 15px;
  background: #ff6c39;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: .5s;
}

.project-btn a{
  color: #fff;
  font-weight: 400;
  justify-content:  center;
  text-decoration: none;
}

.project-btn:hover {
  transform: scale(1.05);
}


.projects-card:hover .project-title {
  color: #fff;
}

.projects-card:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card2:hover .project-title {
  color: #fff;
}

.projects-card2:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card2:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card2:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card3:hover .project-title {
  color: #fff;
}

.projects-card3:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card3:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card3:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card4:hover .project-title {
  color: #fff;
}

.projects-card4:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card4:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card4:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card5:hover .project-title {
  color: #fff;
}

.projects-card5:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card5:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card5:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card6:hover .project-title {
  color: #fff;
}

.projects-card6:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card6:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card6:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card7:hover .project-title {
  color: #fff;
}

.projects-card7:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card7:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card7:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card8:hover .project-title {
  color: #fff;
}

.projects-card8:hover .project-load-bar {
  display: flex;
  transition: opacity 1s ease;
  animation: project-load-animation 2s ease .1s forwards;
}

.projects-card8:hover .project-short-desc {
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}

.projects-card8:hover .project-btn{
  display: flex;
  transition: opacity 1s ease;
  animation: project-infos-animation 1s ease .8s forwards;
}


@keyframes project-load-animation {
  0% {width: 0;}
  15% {width: 0vw;}
  25% {width: 0vw;}
  50% {width: 35vw;}
  65% {width: 50vw;}
  75% {width: 75vw;}
  100% {width: 100vw;}
}


@keyframes project-infos-animation {
  from {opacity: 0;}
  to {opacity: 1;}
}

.gallery-btn{
  list-style-type: none;
}
.gallery-btn li{
  display: inline-block;
}
#filter-btn {
  margin-bottom: 40px; }
  #filter-btn ul {
    text-align: center;
    margin-top: 15px;
    justify-content: center;
    /* margin-bot   tom: 40px; */
    margin-left: 0 !important;
}
  #filter-btn li {
    padding-right: 20px; margin-bottom: 15px; }
    @media screen and (max-width: 760px) {
      #filter-btn li {
        display: block;
        margin-top: 10px; } }
  #filter-btn .button {
    border: 1px #a3a3a3 solid;
    padding: 10px 30px 10px 30px;
    border-radius: 500px;
    background: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
    #filter-btn .button:hover {
      color: white; border: 1px solid #00b4f1; background: #00b4f1; }

   .w img{
    width: 680px;
    box-shadow: 1px 1px 25px 1px;
   } 

   .w{
    margin-top: 60px;
    margin-left: 20px;
   } 
   .webd-txt{
    margin-top: -15px;
    letter-spacing: 2px;
    text-align: justify;
   }

   .wd-text {
    background: #00b4f1;
    padding: 50px 150px 50px 50px;
    margin-right: -110px;
}

.wd-text h3{
  color: white;
}
.wd-text h2{
  margin-bottom: 20px;
}
section.servi {
    padding: 0px;
}
.wd-text h2 u{
  font-family: 'Poppins';
  font-weight: bold;
  text-shadow: 1px 1px 1px;
  color: white;
  font-size: 70px;
}
.wd-text p{
  text-align: justify;
  word-spacing: 2px;
  color: white;
  letter-spacing: 2px;
}
.wd-text li{
  
  word-spacing: 2px;
  color: white;
  letter-spacing: 2px;
}
.box-servc {
    padding: 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc1 {
    padding: 60px 60px 41px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
 .box-servc3 {
    padding: 60px 60px 41px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
 .box-servc5 {
    padding: 60px 60px 41px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc6 {
    padding: 60px 60px 79px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc8 {
    padding: 60px 60px 41px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc9 {
    padding: 60px 60px 79px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc10 {
    padding: 60px 60px 79px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc11 {
    padding: 60px 60px 79px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc12 {
    padding: 60px 60px 79px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.box-servc13 {
    padding: 60px 60px 79px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
    border-bottom: 5px solid #00b4f1;
}
.web-ser h2 {
    font-family: ui-monospace;
    font-size: 50px;
    font-weight: bold;
}
.web-ser p{
  letter-spacing: 2px;
}
.web-ser h3{
  font-family: revert;
    font-weight: bold;
    font-size: 30px;
}

section.benefits {
  background: white;
}
.benefit-p p {
    letter-spacing: 1px;
    line-height: 30px;
    text-align: justify;
}
.benefit p{
  letter-spacing: 2px;
}
.benefit h2{
    font-family: ui-monospace;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 25px;
}
.footer-cntct{
  background: #00b4f1; 
  box-shadow: 1px 1px 12px 1px;
  padding: 50px;
}
.footer-contct h2{
  font-family: 'Roboto';
    font-size: 50px;
    text-shadow: 1px 1px 1px black;
    color: white;
}
.footer-contct p{
  font-family: revert;
    font-size: 25px;
    color: white;
}
.ct-btn {
    background: white;
    padding: 10px 40px 10px 40px;
    font-size: 20px;
}
.ct-btn:hover {
  background: #ff6c39;
  color: white;
}
.ct-btn a:hover  {
  background: #ff6c39;
  color: white;
}
.fq{
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px;
}
.mob-why p{
  font-family: inherit;
    letter-spacing: 2px;
    text-align: justify;
}
.mob-link ul li{
  font-family: revert;
    letter-spacing: 1px;
    font-size: 16px;
}
.mob-link p{
  font-family: inherit;
    letter-spacing: 2px;
    margin-left: -42px;

}

/*faq*/


.faq-section {
    background: #fdfdfd;
    min-height: 100vh;
    padding: 10vh 0 0;
}
.faq-title h2 {
  position: relative;
  margin-bottom: 50px;
  display: inline-block;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
/*.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #00b4f1;
    bottom: -25px;
    margin-left: -30px;
}*/
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .cd {
  border: none;
  margin-bottom: 20px;
  background: none;
  border-bottom: 1px dashed #00b4f1;
}

.faq .cd .cd-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .cd .cd-header:hover {
    background: rgb(192 230 243);
    padding-left: 10px;
}
.faq .cd .cd-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .cd .cd-header .faq-title .badge {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 16px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #00b4f1;
  color: #fff;
  font-size: 16px;
  margin-right: 25px;
}

.faq .cd .cd-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .cd .cd-body p {
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}
/*faq*/




.dropdown dt a {
  color: #fff;
}
.hida {
    color: black;
    margin-top: 7px;
    font-size: 16px;
}
.dropdown dd,
.dropdown dt {
  margin: 0px;
  padding: 0px;
}

.dropdown ul {
  margin: -1px 0 0 0;
}

.dropdown dd {
  position: relative;
}

.dropdown a,
.dropdown a:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
  font-size: 12px;
}

.dropdown dt a {
    background-color: #f1f1f1;
    display: block;
    padding: 8px 20px 5px 10px;
    min-height: 25px;
    color: black;
    line-height: 0px;
    margin-top: 10px;
    overflow: hidden;
    width: 100%;
    border-bottom: 2px solid gray;
}

.dropdown dt a span, .multiSel span {
    cursor: pointer;
    font-size: 15px;
    color: black;
    margin-top: 10px;
    display: inline-block;
    padding: 0 3px 2px 0;
}

.dropdown dd ul {
    background-color: #ffffff;
    border: 0;
    color: black;
    display: none;
    left: 0px;
    padding: 2px 15px 2px 5px;
    /* position: absolute; */
    top: 2px;
    width: 100%;
    list-style: none;
    height: 100px;
    overflow: auto;
}

/*.dropdown span.value {
  display: none;
}
*/
.dropdown dd ul li a {
  padding: 5px;
  display: block;
}
.dropdown dd ul li input {
  margin-right: 5px;
}

.dropdown dd ul li a:hover {
  background-color: #fff;
}
.btn-next{
  background-color: #00b4f1;
  padding: 10px 200px 10px 200px;
    color: white;
    border-radius: 35px;
    font-size: 20px;
}
.btn-next:hover{
  background-color: #ff6c39;
  color: white;
    
}
.btn-s{
  background-color: #00b4f1;
  padding: 10px 20px 10px 20px;
    color: white;
    transition: 0.5s;
    border-radius: 35px;
    font-size: 15px;
}
.btn-s:hover{
  background-color: #ff6c39;
  color: white;
}
.box-form {
    background: white;
    box-shadow: 1px 1px 12px 1px;
    padding: 42px;
    border-radius: 10px;
}
input.filestyle.form-control-sm {
    border: 1px solid #ced4da;
    display: block;
    background-color: white;
    line-height: -5.5px;
    padding: 0px;
    /* max-width: 100%; */
    width: 100%;
    /* height: 41px; */
}
.vaccine-img img{
  width: 500px;
  
  box-shadow: 1px 1px 12px 1px;
}
.vaccine-img1 img{
  width: 500px;
  height: 355px;
  box-shadow: 1px 1px 12px 1px;
}
.vaccine-img h1{
      margin-top: 40px;
    font-family: -webkit-body;
    font-size: 63px;
}
.vaccine-img1 h1{
      margin-top: 40px;
    font-family: -webkit-body;
    font-size: 63px;
}
.blog-text h1{
font-size: 40px;
}
.blog-text p{
  letter-spacing: 1px;
  text-align: justify;
}
.form-group1{
  margin-bottom: 20px;
}
.form-group1 input{
  padding: 25px;
    border-radius: 0;
}
.comment-form {
  width: 100%;
    padding: 30px;
    background: white;
    border-radius: 10px;
}
.comment-form h2 {
    color: white;
}
.boxed-btn {
    background: #fff;
    margin-left: 15px;
    color: black !important;
    display: inline-block;
    padding: 18px 44px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border: 1px solid black;
    letter-spacing: 3px;
    text-align: center;
    color: #ff6c39;
    text-transform: uppercase;
    cursor: pointer;
}
.boxed-btn:hover {
    background: #00b4f1;
    color: white !important;
    border: 1px solid white;
}
section.portflo {
    padding: 0;
    margin-top: 45px;
}

/*.boxx {
    box-shadow: 1px 1px 12px 1px;
    padding: 20px;
    border-radius: 20px;
}*/
input.inpuut.form-control {
    padding: 35px;
    margin-top: 20px;
    margin-left: 388px;
     margin-bottom: 20px;
     border-radius: 20px;
     box-shadow: 1px 0px 11px 1px ;
}
.srch {
    position: absolute;
    top: 40px;
    /* text-align: right; */
    right: -340px;
    font-size: 30px;
}
.fbg{
  background-color: #f86b35;
  padding:20px; 
}
.blog-text ul li{
  margin-left: 20px;
  letter-spacing: 2px;
}
.reply-box{
    padding: 90px 0px;
    text-align: center;
}
.reply-box h1{
  font-size: 70px;
    font-family: 'Roboto';
    color: white;
}
.c-box{
  background-color: #00b4f1;
   box-shadow: 1px 1px 10px 1px;
   border-radius: 10px;
}
.leave-section {
    padding: 10px 0px 40px 0px;
}

.search-sec{
  padding: 30px 0 2px 0px;
}
.blog-li li{
  letter-spacing: 2px;
}
.pharmacy-detail0 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0px 20px;
    background-color: white;
}
.pharmacy-detail1 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 65px 20px;
    background-color: white;
}
.pharmacy-detail2 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px;
    background-color: white;
}
.pharmacy-detail3 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 23px 20px;
    background-color: white;
}
.pharmacy-detail4 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
     padding: 20px 20px 18px 20px;
     background-color: white;
}
.pharmacy-detail5 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
     padding: 20px 20px 44px 20px;
     background-color: white;
}
.pharmacy-detail6 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0 20px;
    background-color: white;
}
.pharmacy-detail7 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0 20px;
    background-color: white;
}
.pharmacy-detail8 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0 20px;
    background-color: white;
}
.pharmacy-detail8 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0 20px;
    background-color: white;
}
.pharmacy-detail9 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0 20px;
    background-color: white;
}
.pharmacy-detail10 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0 20px;
    background-color: white;
}
.pharmacy-detail11 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0 20px;
    background-color: white;
}
.pharmacy-detail12 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 47px 20px;
    background-color: white;
}
.pharmacy-detail13 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 23px 20px;
    background-color: white;
}
.pharmacy-detail14 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 23px 20px;
    background-color: white;
}
.pharmacy-detail15 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0px 20px;
    background-color: white;
}
.pharmacy-detail16 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0px 20px;
    background-color: white;
}
.pharmacy-detail17 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0px 20px;
    background-color: white;
}
.pharmacy-detail18 {
    border: 1px solid #e2dddd;
    border-radius: 10px;
    box-shadow: 0px 0px 9px -5px;
    padding: 20px 20px 0px 20px;
    background-color: white;
}

.pharmacy-detail6 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail7 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail8 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail9 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail10 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail11 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail12 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail13 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail0 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail1 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail2 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail3 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail4 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail14 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail15 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail16 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail17 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail18 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail5 p{
  letter-spacing: 1.5px;
}
.pharmacy-detail6 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail7 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail8 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail9 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail10 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail11 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail12 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail13 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail14 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail15 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail16 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail17 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail18 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail0 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail1 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail2 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail3 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail4 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy-detail5 h4{
  letter-spacing: 1.5px;
  font-family: 'Roboto';
  font-weight: bold;
}
.pharmacy p{
  letter-spacing: 2px;
}
.pharmacy h1{
  font-family: 'IcoFont';
  font-weight: bold;
}
.pharmacy-txt {
    background: linear-gradient(3deg, #c3000b, #ea2631);
    color: white;
    padding: 60px 120px 60px 51px;
    margin-right: -177px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.tax-txt {
    background: linear-gradient(3deg, #c3000b, #ea2631);
    color: white;
    padding: 60px 50px 60px 51px;
    margin-left: -120px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cab-txt {
    background: linear-gradient(3deg, #c3000b, #ea2631);
    color: white;
    padding: 60px 120px 60px 51px;
    margin-left: -120px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
section.pharmacy-section2 {
   background: linear-gradient(to top, #c5c8ca, #d8d8d8 50%);
}
.pharmacy-txt p {
    letter-spacing: 1px;
    text-align: justify;
}
.cab-txt p {
    letter-spacing: 1px;
    text-align: justify;
}
.tax-txt p {
    letter-spacing: 1px;
    text-align: justify;
}
.pharmacy-txt h2 {
    font-family: 'Poppins';
    font-weight: bold;
    color: white;
    text-decoration: underline;
}
.cab-txt h2 {
    font-family: 'Poppins';
    font-weight: bold;
    color:white;
    text-decoration: underline;
}
.pharmacy-txt h4 {
   font-weight: bold;
    color:white;
}
.cab-txt h4 {
   font-weight: bold;
    color:white;
}
.tax-txt h4 {
   font-weight: bold;
    color:white;
}
.carrykoro-img2 img{
  width: 300px;
}
.carrykoro-img img{
  width: 320px;
}
.cab-img img{
  width: 320px;
}
.tax-img2 img{
  width: 350px;
  margin-top: 35px;
}
.ats-img2 img{
  width: 350px;
}
.ats-img3 img{
  width: 350px;
  margin-top: 20px;
}
.tax-img3 img{
  width: 350px;
  margin-top: 35px;
}
.tax-img img{
  width: 350px;
  margin-top: 35px;
}
.store-image img{
  width: 120px;
  margin-right: 15px;
}
#ph-btn{
 background: white;
 padding: 10px;
 border: 2px solid white;
}
#ph-btn:hover{
 background: #00b4f1;
 border: 2px solid white;
/* transition: 2s;*/
}
#ph-btn:hover a{
 color: white;
}
/*-----portfolio-css------*/

/*@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,700');

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');

$gr-1:linear-gradient(170deg, #01E4F8 0%, #1D3EDE 100%);
$gr-2:linear-gradient(170deg, #B4EC51 0%, #429321 100%);
$gr-3:linear-gradient(170deg, #C86DD7 0%, #3023AE 100%);

.gr-1{background: $gr-1;}
.gr-2{background: $gr-2;}
.gr-3{background: $gr-3;}

*{transition: .5s;}*/

.h-100{height: 100vh !important;}
.align-middle{
  position: relative;
  top:50%;
  transform:translateY(-50%);
}

/*.column{
  margin-top:3rem;
  padding-left:3rem;
  &:hover{
    padding-left:0;
    .carod .tt{
      margin-left:1rem;
      h1, p{
        color:rgba(255,255,255,1);
        opacity:1;
      }
    }
    a{
      color:rgba(255,255,255,1);
      &:after{
      width: 10%;
      }
    }
  }
}*/
.carod{
  min-height:170px;
  margin: 0;
  padding: 1.7rem 1.2rem;
  border: none;
  border-radius: 0;
  color:rgba(0,0,0,1);
  letter-spacing: .05rem;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 0 33px rgba(0,0,0,.5);
  .tt{
    margin-left:-3rem;
    z-index: 1;
    
    p{
      font-size:.7rem;
      font-family: 'Open Sans', sans-serif;
      letter-spacing: 0rem;
      margin-top:33px;
      opacity:0;
      color:rgba(255,255,255,1);
    }
  }
  a{
    z-index:3;
    font-size: .7rem;
    color:rgba(0,0,0,1);
    margin-left:1rem;
    position:relative;
    bottom: -.5rem;
    text-transform: uppercase;
    &:after {
      content:"";
      display: inline-block;
      height: 0.5em;
      width: 0;
      margin-right: -100%;
      margin-left: 10px;
      border-top: 1px solid rgba(255,255,255,1);
      transition: .5s;
    }
  }
  .ico-card{
    position:absolute;
    top: 0;
    left:0;
    bottom:0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  i{
    position: relative;
    right: -50%;
    top:60%;
    font-size: 12rem;
    line-height: 0;
    opacity: .2;
    color:rgba(255,255,255,1);
    z-index: 0;
   }
}

.bo a:{
  background-color: red;
  color: white;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}




.cardd {
  position: relative;
  min-width: 250px;
  height: 350px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.5s;
}

 .cardd:nth-child(1) .bo .cont a {
  background: #2196f3;
}


  .bo {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}


 .bo:hover {
  transform: translateY(-50px);
  background: #2a2b2f;
}
.bo:hover .cont p {
  display: block;
  transform: scale(1.05);
}
.bo:hover .cont a{
  display: inline-block;
  transform: scale(1.05);
}

 .bo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.cont {
  padding: 20px;
  text-align: center;
}

 .cont h4 {
  font-size: 22px;
  color: white;
  z-index: 1;
  font-weight: bold;
  transition: 0.5s;
  margin-bottom: 15px;
}
.cont p {
  font-size: 15px;
  font-weight: 300;
  color: white;
  z-index: 1;
  display: none;
  transition: 0.5s;
}
 .cont a {
  position: relative;
  display: none;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
 .cont a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: green; 
  color: white;
}



/*-------portfolio-css-------*/

.first-section {
    background: url('../img/ban.png');
    background-size:100%;
    margin-top: 100px;
    height: 500px;
    background-repeat: no-repeat;
}
.first-section-content:before{
  position: absolute;
    content: '';
    width: 10px;
    top: 185px;
    border-radius: 100px;
    margin-left: 350px;
    height: 185px;
    background: #00b4f1;

}
.first-section-content {
    width: 45%;
    padding-left: 40px;
}
.first-section-content h4 {
    font-weight: 300;
    font-size: 36px;
    line-height: 44px;
    color: black;
    margin: 0 0 15px 350px;
}
.first-section-content h1 {
    font-weight: 300;
    font-size: 50px;
    margin-left: 380px;
    margin-top: 40px;
    font-weight: bold;
    line-height: 70px;
    color: #0e1010;
}
 .first-section-content strong {
    font-weight: 700;
}
.second-section {
    padding: 0px 0px;
}
.second-section h2 {
    font-weight: 300;
    font-size: 33px;
    line-height: 44px;
    color: #000;
    word-break: break-word;
    margin-top: 0;
}
.second-section h2 span {
    font-weight: bold;
    font-size: 57px;
    line-height: 68px;
}
.second-section p {
    font-weight: normal;
    font-size: 18px;
    text-align: justify;
    line-height: 36px;
    color: #000;
}
.abt-btn {
    background: #000000;
    border: 1px solid #000000;
    border-radius: 10px;
    display: inline-block;
    padding: 15px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
}
.third-section-left::before {
    content: "";
    position: absolute;
    background: url(../img/line-img.png);
    height: 800px;
    top: 0px;
    width: 646px;
    left: -92px;
}
.third-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.third-section-left {
    background: #00b4f1;
    padding: 80px 80px;
    margin-left: -120px;
    /* width: 50%; */
}
.third-section-left h4 {
    font-weight: 300;
    font-size: 36px;
    line-height: 44px;
    color: #fff;
}
.third-section-left h2 {
    font-weight: bold;
    font-size: 62px;
    line-height: 75px;
    color: #fff;
    margin-top: 0;
}
.third-section-left p {
    font-weight: normal;
    font-size: 18px;
    text-align: justify;
    line-height: 36px;
    color: #fff;
}
.third-section-left .chall-bt {
    display: inline-block;
    padding: 15px 0px;
    /*border-bottom: 1px solid #FFFFFF;*/
    /*border-radius: 10px;*/
    font-weight: 600;
    font-size: 24px;
    line-height: 22px;
    color: #fff;
    margin-top: 20px;
}
.third-section-right {
    width: 40%;
}
.third-section-right-img {
    position: relative;
    margin-top: 130px;
    left: -50px;
    width: 850px;
}
.four-section {
    padding: 80px 0px;
}
.four-section h2 {
    font-weight: 300;
    font-size: 33px;
    line-height: 44px;
    color: #000;
    word-break: break-word;
    margin-top: 0;
}
.four-section p {
    font-weight: normal;
    font-size: 18px;
    text-align: center;
    line-height: 36px;
    color: #000;
}
.four-section h2 span {
    font-weight: bold;
    font-size: 57px;
    line-height: 68px;
}
.four-section-list {
    margin-top: 35px;
}

.five-section{
  /*background-image: url('../img/laptop-img.jpg');*/
  background: #151212;
  background-size: cover;
  background-repeat: no-repeat;
}
.five-section h2{
  color: white;
  font-size: 58px;
}
.five-section-content {
  padding: 60px;
}
a.sa-cta {
    border: 1px solid #fff;
    padding: 15px 40px;
    color: #333;
    border-radius: 8px;
    font-size: 20px;
    background: #fff;
    font-weight: 600;
    display: inline-block;
}

.overlay {
    background-image: linear-gradient(to right, rgb(0 180 241 / 81%), rgb(0 180 241 / 93%));
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    padding: 70px 0;
}
.sect-bg {
    background-size: cover;
    position: relative;
    background-position: left;
    z-index: 0;
    padding: 0;
    min-height: auto;
    overflow: hidden;
}
.cont-form {
    position: relative;
    background: white;
    padding: 41px 40px 40px 40px;
    border-radius: 10px;
    box-shadow: 10px 40px 40px rgba(0,0,0,.2);
}
.particles-js-canvas-el {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.cont-form input {
    border: 0;
    background: transparent;
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    background-color: transparent;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 2px solid transparent;
    border-bottom-color: rgba(0,0,0,.1);
}
.mob-why h1{
  font-family: ui-monospace;
    font-size: 50px;
    font-weight: bold;
}

.cont-form textarea {
    border: 0;
    background: transparent;
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;

    background-color: transparent;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 2px solid transparent;
    border-bottom-color: rgba(0,0,0,.1);
}
.cont-form input::placeholder {
  color:#222;
}
.cont-form textarea::placeholder {
  color:#222;

}
.cont-form input {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
    height: 55px;
}
.cont-form input:hover, .cont-form input:focus{
    outline: none;
    box-shadow: none;
    background: transparent;
    /*border: 2px solid transparent;*/
    /*border-bottom-color: rgb(254, 132, 111);*/

}
.cont-form textarea:hover, .cont-form textarea:focus{
  background: transparent; 
    outline: none;
  box-shadow: none;
     /*border: 2px solid transparent;*/
    /*border-bottom-color: rgb(254, 132, 111);*/

}


.taso-btn {
    background-color: #fff;
    margin: 25px 0;
    color: #214dcb;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(255, 255, 255, 0.32);
    box-shadow: 0px 10px 30px 0px rgba(255, 255, 255, 0.17);
}
.cont-info {
    padding: 0 30px 0px 0;
}

h2.cont-title {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.cont-info p {
    color: #ececec;
}

ul.cont-info {
    margin-top: 30px;
}

ul.cont-info li {
    margin-bottom: 22px;
}



ul.cont-info span {
    font-size: 20px;
    line-height: 26px;
}
ul.cont-info li {
    display: flex;
    width: 100%;
}

.info-left {
    width: 10%;
}

.info-left i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    color: #ffffff;
}
.fa-envelope{
  font-size: 20px !important;
}

.info-right h4 {
    color: #fff;
    font-size: 18px;
}
.contact-page .info-left i{
color: #FE846F;
}
#send-bt {
display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Poppins', sans-serif;
    padding: 10px 30px 10px;
    font-size: 17px;
    line-height: 28px;
    border: 0px;
    border-radius: 10px;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn-big {
    color: #ffffff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(45, 45, 45, 0.47843137254901963);
    box-shadow: 2px 5px 10px 0px rgba(45, 45, 45, 0.19);
    color: #fff !important;
    margin-right: 20px;
    background: #00b4f1;
    transition: 0.4s;
    border: 2px solid #00b4f1;
    margin-top: 50px;
}

@media only screen and (max-width: 767px) {
.contact-form {
    padding: 30px;
}
.contact-form:before {
    width: 100%;
}

}

/*footer*/
.footer-widget p {
    margin-bottom: 27px;
}
.img-f{
  max-width: 100px;
}
.dk-footer p {
    font-size: 16px;
    color: white;
    line-height: 28px;
}

   .animate-border {
  position: relative;
  display: block;
  width: 142px;
  height: 3px;
  background: #00b4f1; }

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 2s linear infinite; }

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

.animate-border.border-white:after {
  border-color: #fff; }

.animate-border.border-yellow:after {
  border-color: #F5B02E; }

.animate-border.border-orange:after {
  border-right-color: #007bff;
  border-left-color: #007bff; }

.animate-border.border-ash:after {
  border-right-color: #EEF0EF;
  border-left-color: #EEF0EF; }

.animate-border.border-offwhite:after {
  border-right-color: #F7F9F8;
  border-left-color: #F7F9F8; }

/* Animated heading border */
@keyframes primary-short {
  0% {
    width: 15%; }
  50% {
    width: 90%; }
  100% {
    width: 10%; } }

@keyframes primary-long {
  0% {
    width: 80%; }
  50% {
    width: 0%; }
  100% {
    width: 80%; } } 

.dk-footer {
  padding: 75px 0 0;
  background-color: #151414;
  position: relative;
  z-index: 2; }
  .dk-footer .contact-us {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 80px; }
    .dk-footer .contact-us .contact-info {
      margin-left: 50px; }
  .dk-footer .contact-icon i {
    font-size: 24px;
    top: -15px;
    position: relative;
    color:#00b4f1; }

.dk-footer-box-info {
  position: absolute;
  top: -110px;
  background: #202020;
  padding: 40px;
  z-index: 2; }
  .dk-footer-box-info .footer-social-link h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px; }
  .dk-footer-box-info .footer-social-link ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .dk-footer-box-info .footer-social-link li {
    display: inline-block; }
  .dk-footer-box-info .footer-social-link a i {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: #000;
    margin-right: 5px;
    color: #fff; }
    .dk-footer-box-info .footer-social-link a i.icofont-facebook {
      background-color: #3B5998; }
    .dk-footer-box-info .footer-social-link a i.icofont-twitter {
      background-color: #55ACEE; }
    .dk-footer-box-info .footer-social-link a i.icofont-youtube {
      background-color: #DD4B39; }
    .dk-footer-box-info .footer-social-link a i.icofont-linkedin {
      background-color: #0976B4; }
    .dk-footer-box-info .footer-social-link a i.icofont-instagram {
      background-color: #cd486b; }

.footer-info-text {
  margin: 26px 0 32px; }

.footer-left-widget {
  padding-left: 80px; }

.footer-widget .section-heading {
  margin-bottom: 35px; }

.footer-widget h3 {
  font-size: 24px;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content; }

.footer-widget ul {
  width: 50%;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0; }

.footer-widget li {
  margin-bottom: 18px; }

.footer-widget p {
  margin-bottom: 27px; }

.footer-widget a {
  color: #878787;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .footer-widget a:hover {
    color: #00b4f1; }

.footer-widget:after {
  content: "";
  display: block;
  clear: both; }

.dk-footer-form {
  position: relative; }
  .dk-footer-form input[type=email] {
    padding: 14px 28px;
    border-radius: 50px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E; }
  .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::-webkit-input-placeholder {
    color: #878787;
    font-size: 14px; }
  .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::placeholder {
    color: #878787;
    font-size: 14px; }
  .dk-footer-form button[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 24px 6px 17px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 1px solid #007bff;
    background: #007bff;
    color: #fff; }
  .dk-footer-form button:hover {
    cursor: pointer; }

/* ==========================

    Contact

=============================*/
.contact-us {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.contact-icon {
  position: absolute; }
  .contact-icon i {
    font-size: 36px;
    top: -5px;
    position: relative;
    color: #007bff; }

.contact-inf {
  margin-bottom: inherit;
  margin-left: 75px;
  color: #fff; }
  .contact-inf h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0; }

.copyright {
  padding: 28px 0;
  margin-top: 55px;
  background-color: #202020; }
  .copyright span,
  .copyright a {
    color: #878787;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .copyright a:hover {
    color:#007bff; }

.copyright-menu ul {
  text-align: right;
  margin: 0; }

.copyright-menu li {
  display: inline-block;
  padding-left: 20px; }

.portfolio-page.pricing-sec {
    position: relative;
    padding: 27px 0 40px;
}
.pricing-sec {
    background: #ffffff;
    width: 100%;
    padding: 40px 0 40px;
    background-size: cover;
    background-position: top center;
}
.mtpx-100 {
    margin-top: 100px !important;
}
.portfolio-page.pricing-sec::before {
    background: #00b4f1;
    content: "";
    position: absolute;
    width: 100%;
    height: 500px;
}
.pricing-sec .nav-pills {
    text-align: center;
    display: block;
    width: 100%;
    margin: 20px 0;
}
.sec-padding h3.pkgewrp {
    margin-top: 70px;
}
/*.portfolio-page.pricing-sec h3, .portfolio-page.pricing-sec p {
    color: #fff;
}*/
.pricing-sec h3 {
    font-size: 36px;
    text-align: center;
    font-family: 'Roboto';
    font-weight: 700;
    color: #222d39;
}
.portfolio-page.pricing-sec h3, .portfolio-page.pricing-sec p {
    color: #fff;
}
.pricing-sec p {
    /*font-size: 20px;*/
    line-height: 1.4;
    text-align: center;
}
.pricing-sec .nav-pills {
    text-align: center;
    display: block;
    width: 100%;
    margin: 20px 0;
}
.pricing-sec .nav-pills li {
    margin-right: 8px;
    display: inline-block;
    background: transparent;
}
.pricing-sec .nav-pills li a.active {
    border: 2px solid white;
    color: #fff;
    background: linear-gradient(to right, rgb(241 47 110) 0%, #00b4f1 100%);
}
.pricingboxes {
    padding-top: 0;
}
.tab-content>.active {
    display: block;
}
.smallboxes {
    padding-top: 0;
    font-size: 0;
    text-align: center;
}
.smallboxes .smallbox {
    vertical-align: top;
    min-height: 430px;
    display: inline-block;
    width: 31%;
    /* box-shadow: 0 0 11px #eaf0f6; */
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 10%);
    /* padding: 30px; */
    background: #fff;
    border-radius: 8px;
    /* margin-bottom: 32px; */
    /* margin-right: 25px; */
    margin: 12px 12px;
    /*border: 2px solid #ff6c39;*/
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.05);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 200ms ease-in;
    transform: scale(1.00);
    text-align: left;
    margin-bottom: 60px;
}
.package_inner {
    padding: 30px 30px 0px 30px;
}
.smallboxes .smallbox h4 {
    margin: 0 auto;
    font-size: 21px;
    font-weight: 600;
    text-align: left;
    max-width: 100%;
}
.smallboxes .smallbox h2 {
    font-size: 44px;
    color: #00b4f1;
    padding-bottom: 0;
    text-align: left;
    line-height: 1;
    margin-bottom: 15px;
    padding-top: 0px;
    display: inline-block;
    text-align: left;
}
.smallboxes .smallbox h2 span.currency_symbol {
    font-size: 18px;
}
.smallboxes .smallbox h2 span {
    display: block;
    color: #687087;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    vertical-align: top;
    font-size: 48px;
}
.ticklist2.list-scroll {
    height: 165px;
    padding: 10px 0 10px 0;
    border-top: 1px solid #eeeeee;
    margin: 0;
    margin-bottom: 20px;
}
.mCustomScrollbar {
    -ms-touch-action: none;
    touch-action: none;
}
.smallboxes .smallbox .mCustomScrollBox {
    padding-left: 0px;
}
.mCustomScrollBox {
    overflow-y: scroll;
    height: 100%;
    max-width: 100%;
    outline: none;
    padding: 0 10px;
    direction: ltr;
}
.mCSB_container {
    overflow: hidden;
    width: auto;
    height: auto;
}
.ticklist2 li {
    position: relative;
}
.ticklist2 li {
    font-size: 14px;
    padding: 0 0 0px 20px;
    text-align: left;
    position: relative;
    line-height: 24px;
}
.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 0 -11px 20px 0;
}
.mCSB_scrollTools .mCSB_draggerContainer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}
.pricing-sec .nav-pills li a {
    color: #717171;
    padding: 14px 15px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
}
.portfolio-page.pricing-sec .nav-pills li a {
    color: #fff;
}
.btn-packages:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #ffffff;
}
.smallboxes .smallbox:hover {
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.05);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 200ms ease-in;
    transform: scale(1.05);
}
.ticklist2 li::before {
    content: "\e962";
    position: absolute;
    font-family: 'icomoon' !important;
    font-size: 12px;
    color: #2261d1;
    left: 0;
    top: 0px;
}
.mCSB_scrollTools {
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}
.mCSB_scrollTools {
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #1668d4;
}
.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #33333326;
}
.smallboxes .smallbox .ad-don {
    display: none;
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    padding-bottom: 0px;
}
.smallboxes .smallbox .ad-don span {
    color: #2261d1;
}
.smallboxes .smallbox .actions {
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
    text-align: left;
}
.smallboxes .smallbox a.spek-us {
    font-size: 16px;
    color: #7b7b7b;
    position: relative;
}
.smallboxes .smallbox a.wnt-disx {
    font-size: 16px;
}
.smallboxes .smallbox .price-btnwrap {
    margin-top: 15px;
    text-align: center;
}
.smallboxes .smallbox .price-btnwrap a.btn-packages, .smallboxes .smallbox .price-btnwrap a.btn-packages:hover {
    background:linear-gradient(to right, rgb(241 47 110) 0%, #00b4f1 100%);
    color: #fff;
    text-decoration: none;
}
.smallboxes .smallbox .price-btnwrap .btn-packages {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    padding-top: 15px;
}
.smallboxes .smallbox .price-btnwrap a {
    display: block;
    max-width: 175px;
    margin: 3px auto;
    height: 45px;
    padding: 0px 0 12px 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #2261d1;
    background: #ffffff;
    border: none;
}
.btn-packages {
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
    background: linear-gradient(to right, rgb(129, 40, 185) 0%, #0c6ed6 100%);
    border-radius: 8px;
    font-size: 16px;
    border: 1px solid transparent;
    padding: 16px 16px;
    display: inline-block;
}
.smallboxes .smallbox .actions a span small {
    display: block;
    font-size: 12px;
    line-height: normal;
    color: #00b4f1;
    font-weight: bold;
}
.smallboxes .smallbox .actions a span {
    font-size: 13px;
    float: left;
    font-weight: bold;
    color: #7b7b7b;
}
.smallboxes .smallbox .actions {
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
    text-align: left;
}
.smallboxes .smallbox h2 span:last-child {
    font-size: 18px;
}
.ticklist2 li::before {
    content: "\e962";
    position: absolute;
    font-family: 'icomoon' !important;
    font-size: 12px;
    color: #2261d1;
    left: 0;
    top: 0px;
}
.smallboxes .smallbox h2 span {
    display: block;
    color: #687087;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    vertical-align: top;
    font-size: 48px;
}

@import url(https://fonts.googleapis.com/css?family=Cabin:400);

.webdesigntuts-workshop {
  text-align: center;
  width: 100%;
}

.webdesigntuts-workshop::before {
  content: '';
  display: block; 
  height: 5px;
  left: 50%;
  margin: 60px 0 0 -400px;
  position: absolute;
  width: 800px;
}

.webdesigntuts-workshop::before {
  background: #00b4f1;
  background: linear-gradient(left, #151515, #444, #151515);
}

.webdesigntuts-workshop::after {
  background: #000;
  background: linear-gradient(left, #151515, #000, #151515);  
  top: 191px;
}

.webdesigntuts-workshop form {
  background: #00b4f1;
  border: 1px solid white;
  border-radius: 5px;
  /*box-shadow: inset 0 0 0 1px #272727;*/
  display: inline-block;
  font-size: 0px;
  margin: 20px auto 0;
  padding: 20px 40px 20px 40px;
  position: relative;
  z-index: 1;
}

.webdesigntuts-workshop input {
  background: white;  
  border: 1px solid #444;
  border-radius: 5px 0 0 5px;
  color: black;
  display: block;
  float: left;
  font-family: 'Cabin', helvetica, arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  text-shadow: 0 -1px 0 #000;
  width: 200px;
}

.ie .webdesigntuts-workshop input {
  line-height: 40px;
}

.webdesigntuts-workshop input::-webkit-input-placeholder {
   color: #888;
}

.webdesigntuts-workshop input:-moz-placeholder {
   color: #888;
}

.webdesigntuts-workshop input:focus {
  animation: glow 800ms ease-out infinite alternate;
  background: #222922;
  background: linear-gradient(#333933, #222922);
  border-color: white;
  box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;
  color: #efe;
  outline: none;
}

.webdesigntuts-workshop input:focus::-webkit-input-placeholder { 
  color: #efe;
}

.webdesigntuts-workshop input:focus:-moz-placeholder {
  color: #efe;
}

.webdesigntuts-workshop button {
  background: #222;
  background: linear-gradient(#333, #222);
  box-sizing: border-box;
  border: 1px solid #444;
  border-left-color: #000;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 2px 0 #000;
  color: white;
  display: block;
  float: left;
  font-family: 'Cabin', helvetica, arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0;
  position: relative;
  text-shadow: 0 -1px 0 #000;
  width: 80px;
} 

.webdesigntuts-workshop button:hover,
.webdesigntuts-workshop button:focus {
  background: #292929;
  background: linear-gradient(#393939, #292929);
  color: white;
  outline: none;
}

.webdesigntuts-workshop button:active {
  background: #292929;
  background: linear-gradient(#393939, #292929);
  box-shadow: 0 1px 0 #000, inset 1px 0 1px #222;
  top: 1px;
}

@keyframes glow {
    0% {
    border-color: #393;
    box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;
    } 
    100% {
    border-color: #6f6;
    box-shadow: 0 0 20px rgba(0,255,0,.6), inset 0 0 10px rgba(0,255,0,.4), 0 2px 0 #000;
    }
}
.service_box{
            margin:20px 0;
            padding:40px 20px;
            text-align: center;
            border-radius:5px;
            background:#00b4f1;
            transition: all 0.30s ease 0s;
        }
        .service_box:hover{
            background:#ff6c39;
        }
        .service_box .service_icon{
            width:70px;
            height:70px;
            margin: 0 auto;
            font-size:35px;
            background: #fff;
            line-height:70px;
            border-radius:50px;
            transform: translateY(0);
            transition: all 0.30s ease 0s;
        }
        .service_box:hover .service_icon{
            transform: translateY(-100%);
        }
        .service_box .service_icon i{
            color:#333;
        }
        .service_box h3{
            position: relative;
            top:40px;
            margin:0;
            color:#fff;
            font-size:23px;
            text-transform:uppercase;
            transform: translateY(0%);
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
        }
        .service_box:hover h3{
            top:-40px;
        }
        .service_box  p{
            color:#fff;
            margin:0;
            opacity:0;
            transition: all 0.30s linear 0s;
        }
        .service_box:hover p{
            opacity:1;
        }
        .bs-example{
      margin: 20px;
    }
    .userform {
    width: 90%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid green;
    border-radius: 7px;
}
.p-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}
.pricing-btn{
  padding: 5px 10px;
  background-color: red;
  border-radius: 2px solid black;
}
.pricing-sect h2{
  font-family: none;
  font-weight: bold;
}
.pricing-sect p{
  word-spacing: 1px;
}
.sect-title h2 {
    font-size: 42px;
    font-family: 'Roboto';
    font-weight: bold;
}
.portfolio-details{
    background-color: #f1f6fe;
   }
   .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border-radius: 10px;
}
.technologies-list {
    border: 2px solid;
    text-align: center;
    padding-top: 12px;
    font-weight: bold;
    border-radius: 50px;
   /* box-shadow: 1px 1px 12px 1px;*/
}
.table-responsive{min-height:.01%;overflow-x:auto} 
.table{width:100%;border-collapse:collapse;border-spacing:0} 
.table td,.table th{background-color:#F3F5EF;border:1px solid #bbb;color:#333;font-family:sans-serif;font-size:100%;padding:10px;vertical-align:top}
 .table tr:nth-child(even) td{background-color:#F0F0E5}
  .table th {
    background-color: #ff6c39;
    color: #fff;
    font-size: 110%;
}
  .table tr.even:hover td,.table tr:hover td{color:#222;background-color:#FFFBEF}
  .tg-bf{font-weight:700} .tg-it{font-style:italic} .tg-left{text-align:left} 
  .tg-right{text-align:right} .tg-center{text-align:center}
  @media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar} 
  .table-responsive>.table{margin-bottom:0} .table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,
  .table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,
  .table-responsive>.table>thead>tr>th{white-space:nowrap} }
  .privacy-content ul li{
    font-family: "Poppins", sans-serif;
    color: black;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: normal;
    list-style-type: circle;
    margin-left: 27px;
   }
   .privacy-content h4{
    line-height: 27px;
    margin: 30px 0px 10px;
   }
.mob-link {
    margin-left: 40px;
}
.tab-list{
  display: contents;
}
a.btn.seo-table-btn {
    background: #00b4f1;
    margin-top: 20px;
    color: white;
    border-radius: -12px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.5s;
    padding: 10px 70px;
}
a.btn.seo-table-btn:hover {
    background: #ff6c39;
}

.tm-button-hover-animation01 {
  text-align: center;
}
  
.btn-11:before,
.btn-11:after {
  z-index: -1;
}
.btn-11 {
  text-decoration: none;
  line-height: 80px;
  color: black;
}
  .wrap {
    width: 100%;
    margin-bottom: 20px;
  }
[class="btn-11"] {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 80px;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
.btn-11 {
  position: relative;
  color: #00b4f1;
  font-weight: 500;
}
.btn-11:before, .btn-11:after {
  position: absolute;
  top: 50%;
  content: '';
  width: 20px;
  height: 20px;
  background-color: #00b4f1;
  border-radius: 50%;
}
.btn-11:before {
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.btn-11:after {
  right: -20px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  transition: 0.5s;
}
.btn-11:hover {
  color: white;
  border: 1px solid #00b4f1;
}
.btn-11:hover:before {
  -webkit-animation: criss-cross-left 0.8s both;
  animation: criss-cross-left 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  transition: 0.5s;
}
.btn-11:hover:after {
  -webkit-animation: criss-cross-right 0.8s both;
  animation: criss-cross-right 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  transition: 0.5s;
}
button.btn.btn-next {
  margin-bottom: 20px;
}
