@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:wght@400;500;600;700&display=swap');
/*--------------------------------------------------------------

# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

h3 {
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/


.scrolled-offset {
  margin-top: 88px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/


.dropdown-menu-card {
  width: 35rem;
}

/* .dropdown-menu-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
} */

.dropdown-menu-card li a {
  line-height: 2;
  white-space: normal;
}

.dropdown-menu-card li a img {
  width: 100px;
}

.dropdown-menu-card li a p {
  font-size: 12px;
  line-height: 2;
}

.dropdown-menu-card li:nth-child(1) {
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 10px;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  max-height: 900px;
  position: relative;
}

/*#hero:before {*/
/*  content: "";*/
/*  background: rgba(255, 255, 255, 0.6);*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*}*/

#hero .container {
  position: relative;
}

#hero .back-video {
  position: absolute;
  left: 0;
  opacity: 0.7;
}


#hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 56px;
  color: #222222;
  font-family: 'Montserrat', sans-serif;
}

#hero h1 span {
  color: #840407;
}

#hero h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 56px;
  color: #222222;
  font-family: 'Montserrat', sans-serif;
}

/* #hero h3{
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 500;
} */

#hero .btn-get-started {
  font-family: 'Montserrat', 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: #666666;
}

#hero .btn-get-started:hover {
  background: #840407;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #840407;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #840407;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  /* #hero h3{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
   } */

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  #hero {
    height: 100vh;
  }

  .dropdown-menu-card {
    width: 20rem;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  margin: 70px 0;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  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;
}

.featured-services .icon-box:hover::before {
  background: #840407;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #840407;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  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: 600;
  font-size: 26px;
}

.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: #840407;
  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: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #840407;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/







.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', 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;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #840407;
}

.services .icon-box:hover .icon {
  border-color: #840407;
}

/*--------------------------------------------------------------
# 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 .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.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 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #840407;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  /*margin-bottom: 20px;*/
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}


.team .member .social {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.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.9);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: rgba(255 255 255 7);
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 10px 0px;
}

.team .member h4 {
  font-weight: 600;
  font-size: 18px;
}

.team .member span {
  font-weight: 500;
  margin-bottom: 3px;
  font-size: 16px;
  color: #6ba7f5;
}

/*.team .member {*/
/*  display: block;*/
/*  font-size: 13px;*/
/*  font-weight: 400;*/
/*  color: #aaaaaa;*/
/*}*/

.team .member p {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# 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: #5f5f5f;
  background: #f8f8f8;
}



.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 .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}







/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/



.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
#video
--------------------------------------------------------------*/

#footer .back-video {
  width: 100%;
}

/*--------------------------------------------------------------
# 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;
  border-radius: 5px;
}

.contact .info-box i {
  font-size: 32px;

  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #666666;
}



.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {

  padding: 30px;
  padding-top: 0px;
  background: rgba(0, 0, 0, .3);
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;

  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;
}

.show-message {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  min-height: 20rem;
  max-height: 25rem;
}

.show-message h4 {
  font-size: 24px;
}

.show-message p {
  font-size: 16px;
  font-weight: 400;
}


.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}



.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #666666;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
























/* testimonial height */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  margin-top: 60px;
  background: #fff;
  padding: 0 0 5px 0;
  color: #444444;
  font-size: 14px;
  /* background: #f1f6fe; */
  background-color: #edeeef;

}

#footer .footer-newsletter {
  padding: 50px 0;

  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #840407;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #666666;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #840407;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  /* color: rgb(255, 255, 255); */
  color: black;
}

#footer .footer-top h3 {
  font-size: 16px;
  font-weight: bold;
  /* color: rgb(255, 255, 255); */
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #000;
  font-size: 12px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #840407;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #840407;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #666666;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}


/*Slider--- clients*/
.cuslider1 {
  height: 150px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
  background-color: #840407;
  align-items: center;
}

@keyframes cuscroll1 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 12));
  }
}

@keyframes cuscroll2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-150px * 12));
  }
}


.cuslider1 .cuslide-track1 {
  animation: cuscroll1 30s linear infinite;
  display: flex;
  width: calc(250px * 17);
}

.cuslider1 .cuslide1 {
  height: 150px;
  width: 250px;
  padding: 2rem 0 0 0;

}

.cuslider1 .cuimg1 {
  height: 100px;
  width: 100px;
}

@media (max-width: 576px) {

  .cuslider1 .cuslide-track1 {
    animation: cuscroll2 30s linear infinite;
    display: flex;
    width: calc(150px * 17);
  }

  .cuslider1 .cuslide1 {
    height: 100px;
    width: 150px;

  }

  .cuslider1 .cuimg1 {
    height: 80px;
    width: 80px;
  }
}

@media (max-width:768px) {
  .phone {
    display: block;
  }

  .desktop {
    display: none;
  }

}

@media (min-width:768px) {
  .phone {
    display: none;
  }

  .desk {
    display: flex;
  }

  .desktop {
    display: block;
  }
}

@media (max-width:768px) {
  .hero-slide {
    text-align: center;
    top: -1.5rem;
  }

  .hero-button {
    justify-content: center;
    padding-bottom: 1rem;
  }

  .single-p {
    flex-direction: column-reverse;
  }
}

.mindmap img {
  width: 100%;
}



.show {
  display: block;
}

.hide {
  display: none;
}

.contact-head {
  background-image: url("./assets/img/bg.jpg");
}

.banner-pos {
  background-image: url("../img/about-bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  /*background-position: center bottom;*/
  background-color: #fff;
  background-blend-mode: luminosity;
}

.ceo-main {
  text-align: justify;
}

.ceo-img {
  padding-top: 5px;
  float: left;
  width: 50%;
  padding-right: 15px;
}

.about-banner {
  background-image: url("../assets/img/about.jpg");
}

@media (max-width:768px) {
  .ceo-img {
    float: none;
    width: 100%;
    padding: 0rem 0rem 2rem 0rem;
  }

  .mindmap {
    margin-top: -5rem;
    margin-bottom: -4rem;
  }
}


.home-banner {
  top: 8rem;
  height: 20vh;
}



.pages {
  height: 50vh;
}

@media (max-width:556px) {
  .home-banner {
    top: -1rem;
    height: 12rem;
  }

  .mindmap {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .pages {
    height: 30vh;
  }

}

.space {
  height: 80px;
}

/* .service-head{
  color: #9e1b20;
} */

.qoute-color {
  color: #840407;
}


/* css for blog section start */
.first-section {
  padding-top: 100px;

}

.big-image-wrap {
  position: relative;
}

.inner-text-section {
  position: absolute;
  /* top: 0; */
  bottom: 0;
  /* padding-top: 5px; */
  left: 0;
  z-index: 1;
  /* background: linear-gradient(45deg,black, transparent); */
  background-color: rgba(0, 0, 0, .5);
  /* background-clip: content-box; */
  /* padding: 10px; */
  color: white;
  padding: 10px 26px 14px 20px;
  margin-left: 2px;
  margin-right: 2px;
  width: 99.2%;
  /* width: 100%; */
}

.entry-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 7px;
}

.td-module-meta-info {

  font-size: 11px;
  line-height: 14px;
}

.image-wrap-small {
  position: relative;
}

.small-text-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  /* width: 100%; */
  color: white;
  padding: 0 10px 2px;
  margin-left: 2px;
  margin-right: 2px;
  background-color: rgba(0, 0, 0, .5);
  /* background-clip: content-box; */
}

.small-content {
  font-size: 13px;
  line-height: 15px;
  /* font-weight: 500; */
  margin-top: 6px;
  margin-bottom: 7px;
}

/* code for trending button and sliding text start*/
/* trending button  code*/
.td-trending-now-title {
  background-color: #4db2ec;
  border-radius: 3px;
  color: #fff;
  display: inline-block;

  font-size: 10px;
  font-weight: 700;
  line-height: 19px;
  padding: 0 15px;
  position: relative;
  margin: 0 21px 0 0;
  text-transform: uppercase;
  background-color: #800000;
}

.sliding-text {
  margin: 0;
}

.slide-arrow-wrap {
  margin-bottom: 0;
}

.trending-wrap {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.block-title a {

  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background-color: #e29c04;
  padding: 2px 15px;
  border-radius: 3px;
}

/* trending button code ends */

/* code for filter start here */

.td-wrapper-pulldown-filter {
  display: inline-block;
}

.td-wrapper-pulldown-filter .td-pulldown-filter-display-option {
  color: #444444;
  border: 1px solid #e6e6e6;
}

.td-pulldown-filter-display-option {
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  right: 0;
  cursor: pointer;
  padding: 0 10px 0 14px;
  margin: 0 19px 21px 0;
  height: 20px;

  font-weight: 600;
  font-size: 10px;
  line-height: 18px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  white-space: nowrap;
}

.td-wrapper-pulldown-filter .td-pulldown-filter-list {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #e6e6e6;
}

.td-pulldown-filter-list {
  display: none;
  position: absolute;
  top: 8px;
  right: -1px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-border-radius: 3px;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius: 3px;
  -moz-border-radius-topright: 0;
  border-radius: 3px;
  border-top-right-radius: 0;
  padding: 5px 0 7px 0;
  text-align: left;
}

.all-btn {

  border: 1px solid #ddd;
  color: #444;
  display: inline-block;
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  padding: 0 10px 0 14px;
}

.all-btn:hover {
  color: #e29c04;
  ;

}

.all-btn i {
  font-size: 9px;
  padding-left: 8px;
  color: #444;
}

.td-module-thumb {
  position: relative;

}

.td-post-category {

  position: absolute;
  border-radius: 0 3px 0 0;
  bottom: 0;
  left: 10px;
  display: block;

  padding: 2px 5px 3px;
  background-color: #222;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  margin-right: 5px;

  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  vertical-align: middle;
  line-height: 1;
}

.td-post-category:hover {
  background-color: #9e1b20;
  color: white;
}

.td_module_4 .entry-title,
.td_module_5 .entry-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 9px 0;
}

.td-module-title a {
  color: black;
}

.td-module-title a:hover {
  color: #9e1b20;

}

.meta-info {

  font-size: 11px;
  color: #444;
  line-height: 16px;
  margin-bottom: 15px;
}

.td-module-comments {
  position: relative;
  top: -4px;
  background-color: #848484;
  float: right;

  font-size: 11px;
  text-align: center;
  border-radius: 2px;
  border-bottom-right-radius: 0;
}

.td-module-comments a {
  color: #ffffff;
  padding: 2px 4px 3px;
  display: inline-block;
  min-width: 22px;
  height: 20px;
  line-height: 16px;
}

.td-excerpt,
.td-module-excerpt {
  margin-bottom: 15px;
  margin-top: 5px;
  color: #444;
  font-size: 12px;
  line-height: 18px;
}

.entry-title,
.td_module_7 .entry-title,
.td_module_8 .entry-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  margin: 0 0 7px 0;
}

.post-title-date {
  margin-bottom: 5px;
}

.filter-container {
  display: flex;
  justify-content: end;
}

.entry-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 9px 0;
}

.td-excerpt,
.td-module-excerpt {
  margin-bottom: 15px;
  color: #444;
  font-size: 12px;
  line-height: 18px;
}

.td-module-image {
  position: relative;
}

.td-post-category {
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 10px;
}

.entry-title,
.td_module_8 .entry-title {
  font-size: 13px;
  /* font-weight: 600; */
  line-height: 15px;
  margin: 0 0 7px 0;
}

.slide-arrow {
  color: black !important;
}

.slide-controler .carousel-control-prev {
  right: 10px !important;
  left: auto;

}

.slide-controler .carousel-control-next,
.slide-controler .carousel-control-prev {
  width: auto !important;
  border: 1px solid#ddd !important;
}

/* code for filter ends */
.blog-image-wrap {
  position: relative;
}

.blog-image-title {
  position: absolute;

  bottom: 0px;
  background: rgba(0, 0, 0, .5);
  padding: 5px 5px;

  margin-left: 2px;
  margin-right: 2px;
}


.blog-image-title h3 a {
  font-size: 13px;
  color: white;
}

.td-editor-date {
  color: white;
  font-size: 13px;
}

.td-post-author-name {
  color: white;
}

.td-post-author-name a {
  color: white;
}

.all-post {
  margin-top: 20px;
  margin-bottom: 10px;
}

.filter-container .dropdown-menu li {
  padding-left: 10px;
  color: black;

}

.td-post-author-name {
  color: black;
}

.td-post-author-name a {
  color: black;
}

@media(max-width:600px) {
  .post-title-date {
    margin-bottom: 15px;

  }

  .sliding-text {
    margin: 0;
    padding: 10px 0;
  }
}

.big-image-wrap {
  overflow: hidden;

}

.big-image-wrap img {
  transition: all .3s linear;
}

.big-image-wrap img:hover {
  transform: scale(1.1);
}

.image-wrap-small {
  overflow: hidden;
}

.image-wrap-small img {
  transition: all .3s linear;
}

.image-wrap-small img:hover {
  transform: scale(1.1);
}

.post {

  font-size: 12px;
  line-height: 21px;
  color: #444;
}

.td-post-header .heading h1 {

  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: #222;
  margin: 6px 0 7px 0;
  word-wrap: break-word;
}

.meta-info {

  font-size: 11px;
  color: #444;
  line-height: 16px;
  margin-bottom: 15px;
}

.td-post-author-name {
  display: inline-block;
  margin-right: 3px;
}

.td-post-author-name a {
  color: #222;
  font-weight: 700;
}

.td-post-author-name div {
  display: inline;
}

.td-post-author-name a {
  color: #fff;
  font-weight: 700;
}

.td-post-author-name div {
  display: inline;
}

.td-post-date {
  display: inline-block;
  margin-right: 3px;
}

.td-post-views {
  display: inline-block;
  margin-left: 9px;
  font-size: 10px;
}

.td-post-comments {
  display: inline-block;
  margin-left: 9px;
}

.td-nr-views-677 {
  margin-left: 10px;
}

.social-link-container {
  max-width: 50%;
}

.social-items {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: black;
}

.facebook {
  background-color: #516eab;

}

.facebook a {
  color: white;
}

.twitter {
  background: #29c5f6
}

.twitter a {
  color: white;
}

.pinterest {
  background-color: #ca212a;
}

.pinterest a {
  color: white;

}

.whatsapp {
  background-color: #7bbf6a;
}

.whatsapp a {
  color: white;
}

.big-blog-post img {

  padding-top: 15px;
  padding-bottom: 15px;
}

.like-button {
  background: blue;
  padding: 2px 10px;
  color: white;
  border-radius: 5px;
  /* display: flex; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.artical-toggler {
  border: 1px solid black;
  border-radius: 5px;
}

.artical-toggler .nav-link {
  padding: 3px 10px !important;
  color: black;
  border-radius: 0;
}


.artical-toggler .nav-link.active {
  background: black !important;
  color: white;
}

.card-text a {
  color: black;
}

.post-image-top {
  position: relative;
}

.side-nav-blog-text {
  margin-left: 12px;
  margin-right: 12px;
  width: auto !important;
}

.side-nav-blog-image img:hover {
  transform: none;

}

/* code for trending button and sliding text  ends*/



/* css for blog section end */

/* careers section */

.career {
  padding-top: 100px;
}




.job-list button {
  width: 100%;
  white-space: nowrap;
}

.job-header {
  background: #fff;
  ;
}

.job-summary {
  color: #666666;
}

.career-submit-btn {

  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  width: 100%;
}

.career-submit-btn:hover {
  background-color: #666666;
  color: #fff;
}


.shadow {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


/* career end */

/* Quotes mark */

/* not found css */
.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mascot {
  width: 15rem;
}

.hero-form .php-email-form {
  box-shadow: 0 0 10px #66666666;

  padding: 20px;
  border-radius: 20px;
}

.hero-form .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.hero-form .php-email-form .error-message br+br {
  margin-top: 25px;
}

.hero-form .php-email-form .sent-message {
  display: none;
  color: var(--btn-color);
  background: var(--main-color);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.hero-form .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.hero-form .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;
}

.hero-form .php-email-form .form-group {
  margin-bottom: 20px;
}

.hero-form .php-email-form input,
.hero-form .php-email-form textarea {
  border-radius: 0;
  /* box-shadow: none; */
  font-size: 14px;
}

.hero-form .php-email-form input:focus,
/* .hero-form .php-email-form textarea:focus {
    border-color: #840407;
  } */

.hero-form .php-email-form input {
  padding: 10px 15px;
  border-radius: 15px
}

.hero-form .php-email-form textarea {
  padding: 12px 15px;
  border-radius: 15px
}

.hero-form .php-email-form button[type=submit] {
  background: #666666;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  width: 100%;
}


/* priyanka css */
.health-data-content {
  position: relative;
}

.health-data-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 65px;
  background: linear-gradient(45deg, #FB6703 60%, #DD9F41);
  margin-left: 4px;
}

.health-data-content p {
  padding-left: 15px;
  padding-right: 15px;
}

.service-heading {
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 15px;
  margin: 0;
}

.services_area .card {
  border: none;
}

.services-cards h3 {
  font-size: 20px;
  font-weight: 600;
}

.border_bottom_line {
  border-bottom: 1px solid #DFDBDB;

}

.service-area-spacing {
  padding-top: 15px !important;
  padding-bottom: 30px !important;

}

.services-cards img {
  width: 20%;
  height: 100px;
  padding-bottom: 12px;
}

.Custom_healthcare_img {
  width: 100%;
  object-fit: cover;
}

.commitment-top-padding {
  padding-top: 0 !important;
  padding-bottom: 40px !important;
}

.services-cards {
  justify-content: center;
  align-items: center;
}

.services-cards p {
  text-align: center;
}

.services-cards img:hover {
  color: red;
}

.desk {
  width: 100% !important;
}

.custom-spacing {
  padding-top: 30px !important;
}

@media screen and (max-width:576px) {
  .services_area .row {
    padding: 0 0 25px 0 !important;
  }

  .services_area .card {
    text-align: center;
  }

  .health-data-content {
    padding-left: 30px;
  }

  .health-data-content::before {
    height: 50px;
    margin-left: 33px;
  }

  .service-heading {
    padding-bottom: 0;
    padding-top: 40px;
  }

  .know-more {
    padding-top: 10px;
    padding-bottom: 42px;
  }
}

@media screen and (min-width:577px) and (max-width:992px) {
  .some-spacing {
    padding-top: 20px;
    text-align: center;
  }

  .health-data-content::before {
    height: 26px !important;
    margin-left: 18px;
  }

  .service-heading {
    font-size: 35px;
    text-align: center;
  }

  .know-more {
    padding-top: 10px;
    padding-bottom: 42px;
  }

  .health-data-content p {
    padding-left: 20px;
  }
}