:root {
  --radius: 20px;
  --wide: 30px;
  --height: 14px;
  --3d: 9px;
  --color-w: #fff;
  --color-1: #4c63fe;
  --color-1dark: #c6cdff;
  --color-2: #f7a41d;
  --color-3: #ebebeb;
  --color: #3333ff;
}
body {
  color: #585a61;
  font-family: 'Roboto', sans-serif;
}

a {
  color: #c41300;
  text-decoration: none;
}

a:hover {
  color: #919191;
  text-decoration: none;
}
span{
  font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  line-height: normal;
}
img{
  width: 100%;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c41300;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.card-img-top{
  height: auto;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  aspect-ratio: 16 / 9;
  object-fit: fill;
  border-bottom-right-radius: 15px;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #748ec6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 3px 0;
  background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
 /* background-color: #991b1b; */
  background: #d80e0e;
}

#header.header-scrolled {
  /*background: rgba(255, 255, 255, 0.95);*/
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #c41300;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  max-height: 64px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
  display: contents;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 10px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 14px;
  font-family: "Raleway", sans-serif;
  /*font-family: cursive;*/
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: #efefef;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}
/* .scrollto1{
  color: #000 !important;
} */

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
  font-weight: 700;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #c41300;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #748ec6;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #c41300;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

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

.mobile-nav-toggle.bi-x {
  color: #fff;
}



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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 4px;
  right: 15px;
}

.navbar-mobile ul {
     display: block;
    position: absolute;
    top: 5px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 26px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    border: 1px solid #dbdbdbdb;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #c41300;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #c41300;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Heroion
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 140px 0 0px 0;
}

#hero::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 20%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background-color: #fbebe9;
  transform: skewY(135deg);
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    color: #000;
    font-family: "Poppins", sans-serif;
}
.news-category {
    color: #c41300;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}
.side-textvideo a > div{
   color: white;
    font-weight: 700;
    font-size: 16px;
    background: #c41300;
    padding: 5px 5px;
    display: inline;
    border-radius: 4px;
}

#hero p {
  color: #c41300;
  font-weight: 800;
}

#hero h2 {
  color: #0d1123;
  /* margin-bottom: 20px; */
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

#hero .download-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  transition: 0.5s;
  color: #fff;
  background: #c41300;
  position: relative;
}

#hero .download-btn:hover {
  background: #c41300;
}

#hero .download-btn i {
  font-size: 20px;

  left: 18px;
  top: 8.5px;
}

#hero .download-btn + .download-btn {
  margin-left: 20px;
}



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

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

 

 

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 75px;
  padding: 15px 0;
  background-color: #f6f8fb;
  min-height: 40px;
}

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

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

.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;
  }
  .dev--v{
    flex-direction: column;
  }
  .ag-timeline-block{
    padding: 0px!important;
  }
  #ag-timeline-carousel {
    .slick-track li {
        padding: 90px 21px!important;
        padding-bottom: 165px;
    }
}

  .responsive-btn3{
    display: none;
  }
  

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
    .bd-layout {
      display: grid;
      gap: 1.5rem;
      grid-template-areas: "sidebar main";
      grid-template-columns: 4fr 4fr;
  }
  .libra-titleText {
    padding-top: 10% !important;
}
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}

.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #c41300;
}
.language-center{
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: start;
  z-index: 99;
}
 

.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }

  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #47536e;
}

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

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #c41300;
  line-height: 0;
}

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


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-slide {
  transition: 0.3s;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #c41300;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c41300;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    /*border: 6px solid #c41300;*/
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
    border-radius: 25px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px;
  min-height: 200px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e8ecf5;
  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: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #c41300;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c41300;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #c41300;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

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

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

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #47536e;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #c41300;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #c41300;
}

.pricing .featured .get-started-btn:hover {
  background: #748ec6;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .col-md-12.sidepublic-manage.mx-auto .row{
    flex-direction: column-reverse;
  }
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

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

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

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b1c0df;
}

.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .accordion-list .icon-show {
  display: none;
}

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

.faq .accordion-list a.collapsed:hover {
  color: #c41300;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}
@media screen and (max-width: 2400px) and (min-width: 992px) {

.multi-drop:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
  .main-d:hover .dropdown-sub {
          display: block;
      }
}
 

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #f1f3f6;
  color: #47536e;
  text-align: center;
  border: 1px solid #fff;
}

.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;
}

.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  color: #8a8c95;
}

.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: #c41300;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

.contact .php-email-form button[type="submit"] {
  background: #fff;
  border: 2px solid #c41300;
  padding: 10px 24px;
  color: #c41300;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 5px;
}

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

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 18px 0;
  color: #ffffff;
  font-size: 14px;
  background: #252525;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #eff2f8;
  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;
  color: #47536e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  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: #c41300;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #5d4fa6;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #252525;
  border-bottom: 1px solid white;
  border-top: 4px solid white;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #47536e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #d4d4d4;
}
.footer-links p{
  color: #d4d4d4;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  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: #f9f9f9;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
   
}

#footer .footer-top .footer-links ul a {
  color: #d4d4d4;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #c41300;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #c41300;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #27282c;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
  color: #ffffff;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
}
#footer .credits a{
   color: #ffffff;
}


.contact-deails-footer a{
  color: white;
   margin-left: 5px;
}
/*.card .update-img {
  height: 232px;
  object-fit: cover;
}
.card-body.update-body {
  background-color: #f2eefc;
}*/
.get-started-btn {
  background: #6a5a98;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}
.newsletter__content p{
  font-size: 18px;
  color: white;
  font-weight: 400;
  margin-bottom: 20px;
}
.newsletter__content p span a{

  color: #d8b6b3 !important;
}
a.get-started-btn.contri {
  background: #c41300;
}
a.get-started-btn.about {
  padding: 14px 77px;
  font-size: 16px;
  border-radius: 13px;
}
a.get-started-btn.contri {
  background: #c41300;
  padding: 14px 77px;
  font-size: 16px;
  border-radius: 13px;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(196 19 0 / 53%);
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
}

.item {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}

.item:hover .overlay {
  bottom: 0;
  height: 100%;
  width: 100%;
}

.top-overlay {
  bottom: 100%;
  height: 0;
}
.item:hover .top-overlay {
  bottom: 0;
}
.bottom-overlay {
  top: 100%;
}

.item:hover .bottom-overlay {
  top: 0;
}

.right-overlay {
  left: 100%;
  height: 100%;
}

.item:hover .right-overlay {
  left: 0;
}

.left-overlay {
  right: 100%;
  height: 100%;
  left: auto;
}

.item:hover .left-overlay {
  right: 0;
}
.fade-overlay {
  height: 100%;
  opacity: 0;
}

.item:hover .fade-overlay {
  opacity: 1;
}
.title-overlay {
  height: auto;
  top: auto;
  opacity: 0;
}
.item:hover .title-overlay {
  opacity: 1;
  height: auto;
  padding: 50px 0;
}
img.res-first {
    width: 55% !important;
    height: auto;
}
img.cpi-logo-v {
    width: 66% !important;
    height: auto;
}
img.left-img-c {
    margin-left: 17%;
    height: auto;
    width: 50% !important;
}
.text {
  color: white;
  font-size: 1.2vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
[data-aos^="fade"][data-aos^="fade"].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
.join-mentor h2 {
  color: #1f1f1f;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}
.join-mentor p {
  font-size: 18px;
  color: #685f78;
  margin: 30px 0;
}
.course-list {
  padding: 0;
  margin-bottom: 35px;
}
.course-list li {
  list-style: none;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.course-list li i {
  color: #f66962;
  margin-right: 15px;
}
.all-btn {
  margin-left: auto;
}
.all-category .btn-primary {
  color: #c41300;
  border: 1px solid #c41300;
  backdrop-filter: blur(151.39px);
  border-radius: 46.9159px;
  background: 0 0;
  border-radius: 46.9159px;
  min-width: 150px;
  padding: 10px 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
  .language-center{
    justify-content: center;
  }
}
section.top-head {
  padding: 12px 0px 0px 0px !important;
}
/* section#topslider {
  height: 100% !important;
} */
.height-img img {
  height: 510px;
}
.top-slide2 {
  padding: 0px 20px !important;
}
.update-v p {
  color: #d80e0e;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.video-v1 {
  background-color: #f6f4ff;
  padding: 40px 49px;
}
a.get-started-btn.about:hover {
  color: #fff;
}
.button-3d {
  font-size: 20px;
  position: relative;
  width: auto;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  color: var(--color-w);
  background: var(--color-1);
  border-radius: var(--radius);
  padding: var(--height) var(--wide);
  margin: 10px;
  top: 0px;

  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s ease;

  -webkit-box-shadow: 0px var(--3d) 0px var(--color-1dark);
  -moz-box-shadow: 0px var(--3d) 0px var(--color-1dark);
  box-shadow: 0px var(--3d) 0px var(--color-1dark);
}

.button-3d:active {
  -webkit-box-shadow: 0px 0px 0px var(--color-1dark);
  -moz-box-shadow: 0px 0px 0px var(--color-1dark);
  box-shadow: 0px 0px 0px var(--color-1dark);
  position: relative;
  top: var(--3d);
}
.button-3d:hover {
  color: #fff;
}

/*.sticky {
  position: fixed;

  background-color: #ad0007;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 2px 0;
}*/

/*.sticky + .content {
  padding-top: 60px;
}*/

/*.social-icon-head {
  border: 1px solid #fff;
  margin-left: 12px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding: 4px;
  width: 30px;
  height: 29px;
  transition: all ease-in-out 0.4s;
}*/
.social-icon-head i {
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.social-icon-head:hover {
 background-color: #ffcb51;
    border: 1px solid #ffcb51;
}*/
a.btn-getstarted {
  color: #ffffff;
  background: #c41300;
  font-size: 14px;
  padding: 5px 25px;
  margin: 0 0 0 -14px;
  border-radius: 50px;
  transition: 0.3s;
}
#blinking-button {
  padding: 8px 23px;
  border-radius: 48px 0px;
  border: 0px solid #6c8003;
}
/*@keyframes blink {
  0%, 100% {background-color:#c41300;}
  50% {background-color: #4c63fe;}
}*/
#blinking-button {
  background-color: #fff;
  color: #c41300;
  animation: blink 5s linear infinite;
  font-weight: 700;
}
.menu-2 li:before {

  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #fff;
  width: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: linear 0.5s;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.menu-2 li.current-menu-item:before {
  height: 3px;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.menu-2 li:hover:before {
   height: 3px;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.cad-body .col-md-6:nth-child(3) .img-lineGray{
  border: none;
}
.cad-body .col-md-6:nth-child(4) .img-lineGray{
  border: none;
}
.table-styless{

  h3{
        font-weight: 700;
    color: #ad0007;
    font-size: 24px;
  }
  ul li{
    font-size: 19px;
    line-height: 28px;
    color: rgb(24 23 23);
}
  
  table {
    border: 1px solid red;
    width: 100%;
    text-align: center;
}
tbody, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    line-height: 30px;
    border: 1px solid;
}
tbody, td  {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
          line-height: 18px;
        border: 1px solid;
        text-align: center;
        vertical-align: middle !important;
        padding: 10px;
}

}

.button1 {
  display: flex;
  width: 217px;
  justify-content: center;
  align-items: center;
  border-radius: 2.5rem;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  background-image: linear-gradient(
    to right,
    #8081cf,
    #847dc9,
    #8778c3,
    #8a74bd,
    #8d70b7,
    #8f6db2,
    #9169ac,
    #9266a7,
    #9362a1,
    #935e9a,
    #935b93,
    #93578d
  );
  color: white;
  animation: blurr 2s;
  animation-iteration-count: infinite;
  outline: none;
  cursor: pointer;
  border: none;
}
.c-btn-img {
  transition: 0.5s;
}
.title2 {
  font-size: 23px;
  padding: 13px;
  /* font-weight: bold; */
  /* margin-top: 1.6rem; */
  /* margin-left: 10rem; */
  transition: 0.5s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.title2:hover img {
  display: block;
  padding-left: 8px;
}
.c-btn-img:hover{
  display: none;
}

.title2 img {
  display: none;
  width: 30px;
  color: white;
  animation: blurr 2s;
  filter: blur("white");
}
.title2:hover ~ .custom_btn_2{
display: none;
}

@keyframes blurr {
  0%,
  100% {
    box-shadow: 0 0 10px var(--handshake);
  }

  50% {
    box-shadow: 0 0 36px var(--handshake);
  }
}

@keyframes fade {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}

/*.button1:hover .title2 {
  transform: translateX(-140px);
  animation: fade 0.5s;
  opacity: 0%;
}

.button1:hover img {
  transform: translateX(-370px);
}
*/

.description {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* margin-top: 1.4rem; */
  /* font-weight: bold; */
  /* line-height: 2rem; */
  font-size: 23px;
  /* font-style: italic; */
  /* transition: 0.5s; */
  opacity: 0%;
  /* margin-left: 6rem; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.button1:hover .description {
  transform: translateX(10px);
  opacity: 100%;
}
.button1 p {
  color: #fff !important;
  display: flex;
  align-items: center;
}
#animated-cards .card-header {
  height: 200px;
  background-color: #ffc107;
}

#animated-cards .service-icon {
  font-size: 30px;
  color: black;
  opacity: 0.4;
  font-size: 60px;
}

#animated-cards .heading-card {
  margin-top: 20px;
  font-size: 45px;
}

#animated-cards .cardheader-text {
  color: #fff;
}

#animated-cards .card-text.sub-text-color {
  color: #c41300;
}

#animated-cards .card-text:last-child {
  font-size: 30px;
  color: #595959;
}

#animated-cards .cardheader-subtext {
  font-size: 20px;
}

#animated-cards .card.cards-shadown {
  box-shadow: 2px 2px 30px #aaaaaa;
}

#animated-cards {
  margin: 0px;
}

#animated-cards .col {
  padding: 20px 7px 0px 7px;
}

/* Card Hover Scale & Effect */

#animated-cards .card:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  transition: all 1200ms;
  z-index: 99;
}

#animated-cards .card {
  transition: all 1200ms;
  height: 100%;
}

/* Color on hover */

#animated-cards .card-header:first-child:hover {
  background-color: #fed136;
}

#animated-cards .card:hover .card-header:first-child {
  background-color: #fed136;
}

/* Icons */

#animated-cards .card:hover .service-icon {
  -webkit-transform: translateX(10px) translateY(10px) scale(1.3);
  -moz-transform: translateX(10px) translateY(10px) scale(1.3);
  -o-transform: translateX(10px) translateY(10px) scale(1.3);
  -ms-transform: translateX(10px) translateY(10px) scale(1.3);
  transform: translateX(10px) translateY(10px) scale(1.3);
  transition: all 1200ms;
}

#animated-cards .card .service-icon {
  transition: all 1000ms;
}

.link1 {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  position: relative;
}
.link1 span,
.link1 i {
  position: relative;
}
.link1 i {
  margin-left: 0.5em;
}
.link1 .color {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background-color: #f9cac5;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: -0.65em;
}

.link1 span:hover {
  color: #c41300;
}
.nav-tabs a.nav-link {
  font-size: 22px;
  color: #5d4fa6;
}
.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #5d4fa6;
  border-color: #5d4fa6;
}
.wrap {
  margin-top: 13px;
  margin-right: 35px;
  padding: 20px 29px;
  letter-spacing: -1.3px;
  font-size: 55px;
  line-height: 1;
  background-image: url(http://174.138.76.229/cpiml/new/assets/img/Brush1.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
.cpiml-heading p{
    font-size: 19px;
    line-height: 28px;
    color: rgb(24 23 23);
    font-style: italic !important;
}

.box-cu2 {
  rotate: 345deg;
  width: 494px;
}
.box-cu {
  rotate: 16deg;
  width: 494px;
}
.box-cu2 a:hover {
  color: #faec57;
}

.box-cu a:hover {
  color: #faec57;
}
.box-custom a {
  color: #fff;
}
ul.cpi-ab li {
  list-style-type: none;
}
.service-wrapper {
  float: left;
  width: 100%;
}
.single-service:hover {
  /* -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15); */
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  z-index: 3;
  background: #5d4fa6;
}
.single-service {
  border: 1px solid #5d4fa6;
  padding: 26px 30px 14px;
  /* -webkit-transition: all 0.5s ease 0s; */
  transition: all 0.5s ease 0s;
}
.single-service img {
  margin-bottom: 20px;
}
.single-service h4 {
  font-weight: 400;
  font-size: 20px;
  color: #656565;
  margin-bottom: 18px;
}
.single-service:hover img {
  filter: brightness(3.5);
}
.single-service:hover h4 {
  color: #fff;
}
 .div--check{
      display: flex;
    gap: 5px;
    input{
          margin-top: 4px;
          

    }
 }
/* .clients {
  padding: 20px 0;
} */
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.clients .client-logo img {
 /* padding: 20px 0px!important;*/
  /*max-width: 82%;*/
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}
.clients .client-logo img {
  /*padding: 20px 0px;*/
  /*max-width: 100%;*/
  transition: 0.3s;
  /*opacity: 0.5;
    filter: grayscale(100);*/
}
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}
.call-to-action:before {
  content: "";
  background: color-mix(in srgb, #0e024f, transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
html:not(.no-js) [data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}
.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}
.call-to-action p {
  color: #ffffff;
}
.call-to-action .cta-btn {
  /* font-family: var(--heading-font); */
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}
.iconsWrp {
  text-align: center;
  margin-top: 18px;
}
.icon-box .icon-wrap.icon-dark {
  background-color: #3f3f3f !important;
}
.icon-box .icon-wrap.icon-dark {
  color: #fff;
}

.icon-box .icon-wrap.icon-circled {
  border-radius: 50%;
}
.icon-box .icon-wrap.icon-lg {
  height: 75px;
  line-height: 80px;
  text-align: center;
  width: 75px
}
.icon-box .icon-wrap.icon-border-effect {
  position: relative;
}
.icon-box .icon-wrap {
  display: inline-block;
  /* height: 64px; */
  margin-bottom: 8px;
  /* text-align: center; */
  /* -webkit-transition: all 0.3s ease; */
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 64px;
}
.icon-box .icon-wrap.icon-lg i {
  line-height: 76px;
}
.icon-box i {
  display: inline-block;
  font-size: 33px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.iconsWrp h6 {
  font-size: 15px;
  color: #000;
  font-weight: 800;
}
.iconsWrp li:nth-child(2) a {
  background: #3f3f3f !important;
}
.iconsWrp li:nth-child(2) h6 {
  color: #000;
}
.iconsWrp li:nth-child(3) h6 {
  color: #000;
}
ul.row.iconsWrp {
  list-style: none;
}
.iconsWrp li:nth-child(3) a {
  background: #3f3f3f !important;
}
.icon-box .icon-wrap.icon-border-effect.effect-circled::after {
  border-radius: 50%;
}
.icon-box .icon-wrap.icon-border-effect::after {
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
  height: 100%;
  left: -4px;
  opacity: 0;
  padding: 4px;
  top: -4px;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.icon-box .icon-wrap.icon-border-effect::after {
  box-shadow: 0 0 0 3px #000;
}
.iconsWrp li:nth-child(2) .icon-wrap.icon-border-effect::after {
  box-shadow: 0 0 0 3px #000;
}
.iconsWrp li:nth-child(3) .icon-wrap.icon-border-effect::after {
  box-shadow: 0 0 0 3px #000;
}
.icon-box .icon-wrap.icon-dark:hover {
  color: #fff;
}
.icon-box .icon-border-effect:hover::after,
.icon-box:hover .icon-border-effect::after {
  opacity: 1;
  transform: scale(1);
}
ul.row.iconsWrp {
  list-style: none;
  margin-left: -6%;
}

/*Blog Details Page*/

:root {
  --primary-color: #f7cd29;
  --primary-hover-color: #f7cd29db;
  --search-section-primary: #f5efcf;
  --search-section-secondary: #f9f6e5;
  --black: #000;
  --box-shadow: rgb(247 205 41 / 25%);
  --secondary-font: "Righteous", cursive;
  --primary-font: "Lato", sans-serif;
  --standard-border-radius: 3px;
  --standard-font-size: 18px;
}

.blog-section {
  margin: 20px 0;
}
.blog-main {
  margin-top: 35px;
}
.btn,
.form-control {
  border-radius: var(--standard-border-radius);
  font-size: var(--standard-font-size);
}

.blog-button {
  border-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 3px;
  min-width: 146px;
}
.blog-button:not(:first-of-type) {
  margin-left: 10px;
}

.btn:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.1rem var(--box-shadow);
}
.btn-custom {
  background-color: var(--primary-color);
  color: var(--black);
  transition: all 0.3s;
  border: 2px solid var(--primary-hover-color);
  border-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.btn-custom-reverse {
  background-color: var(--bs-white);
  border: 2px solid var(--primary-hover-color);
  color: var(--black);
  transition: all 0.3s;
}

/* .btn-custom:hover {
  background-color: var(--bs-white);
} */
.btn-custom-reverse:hover {
  background-color: var(--primary-hover-color);
}

.btn-custom.active::after {
  content: "\A";
  border-style: solid;
  border-width: 0px 21px 23px 104px;
  border-color: transparent var(--primary-color) transparent transparent;
  position: absolute;
  top: 73px;
  left: 83px;
}
/**
* Search
*/
.search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
.search .fa-search {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--bs-gray);
}
.search-box {
  background-color: var(--search-section-primary);
  border: 0;
  text-indent: 25px;
}
/**
* Blog Block
*/
.blog-block-container {
  border-bottom: 7px dotted #5d4fa6;
  padding-bottom: 25px;
}
.blog-block-container:not(:first-of-type) {
  margin-top: 30px;
}
.blog-block {
  padding: 30px 40px;
  background-color: #fff;
  /* background-color: #fcf0e599; */
  /*   background: linear-gradient(275deg, var(--primary-color), transparent); */
}
.blog-block-row {
  /*   align-items: center; */
}
.blog-block-image {
  width: 100%;
  filter: grayscale(1);
  transition: filter 0.3s;
}
.blog-block-image:hover {
  filter: grayscale(0);
}
.blog-title {
  font-size: 28px;

  margin-bottom: 0;
}
.blog-sub-title {
  font-size: 36px;

  color: #5d4fa6;
}

.blog-content {
  text-align: justify;
  padding-top: 8px;
  font-size: 19px;
  line-height: 28px;
  color: rgb(24 23 23);
}
.blog-content img{
  width: 100% !important;
  height: auto;
  object-fit: contain;
}
.blog-content p{
  font-size: 19px;
  line-height: 28px;
  color: rgb(24 23 23);
}

.blog-content h2{
    font-size: 26px;
    font-weight: 700;
    color: black;
}

.blog-content h2 > span{
    font-size: 26px;
    font-weight: 700;
    color: black;
}

.blog-content h3{
    font-size: 24px;
    font-weight: 600;
    color: black;
}
.blog-content h3 > span{
    font-size: 24px;
    font-weight: 600;
    color: black;
}

.blog-content h4{
    font-size: 22px;
    font-weight: 600;
    color: black;
}
.blog-content h4 > span{
    font-size: 22px;
    font-weight: 600;
    color: black;
}



.blog-content ul li , .blog-content span {
  font-size: 19px;
    line-height: 28px;
    color: rgb(24 23 23);
}

.blog-read-more-link {
  color: var(--bs-red);
}
.blog-block-container .text-secondary a {
  color: var(--bs-gray);
  text-decoration: none;
}
/*.footer-social-info {
  text-align: right;
}*/
.footer-social-info a {
  color: var(--black);
  width: 40px;
  border: 1px solid #5d4fa6;
  justify-content: center;
  display: inline-flex;
  height: 40px;
  align-items: center;
  text-decoration: none;
}
.footer-social-info a:hover {
  color: black;
  background-color: #7f6fd0;
}
.footer-social-info a:hover i {
  color: #fff;
}

.popular-blog-section {
  background-color: #f9f6e5;
  padding: 10px 10px 10px 10px;
}
.blog-preview img{
  width: 120px;
  height: auto;
}
 
.blog-preview:not(:first-of-type) {
  padding-top: 15px;
}
.blog-preview {
  display: flex;
  align-items: top;
  border-bottom: 2px solid #b6b6b6;
  padding-bottom: 15px;
  padding-top: 5px;
}
.blog-preview:last-of-type {
  border-bottom: none;
  min-height: 100%;
  padding: 14px 0px 0px 0px;
}

@media all and (max-width: 768px) {
  .blog-section {
    display: none;
  }
  .breadcrumb ol{
    display: flex;
    gap: 6px;
  }
}

/*subscribe
*/

:root {
  --text: #272324;
  --teal: #83b799;
  --yellow: #e2cd6d;
  --beige: #e4d8b4;
  --red: #e86f68;
}

.heading {
  width: 100%;
  position: relative;
}

.shapes {
  position: absolute;
  z-index: 5;
  width: 100%;
  top: 0px;
}
.circle {
  height: 25px;
  width: 25px;
  background-color: var(--teal);
  border-radius: 50%;
  left: 20px;
  top: 25px;
  position: absolute;
}
.firstbanner-img{
  background: #fff;
    padding: 20px;
    margin-top: -49px;
    z-index: 1;
    position: relative;
    border-radius: 20px;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.square {
  height: 25px;
  width: 25px;
  background-color: var(--red);
  left: 50px;
  top: -20px;
  position: absolute;
  transform: rotate(-15deg);
}
.triangle {
  width: 0;
  height: 0;
  left: 82%;
  top: 5px;
  position: absolute;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid var(--yellow);
  transform: rotate(20deg);
}

.subtext {
  font-size: 12px;
  margin-bottom: 25px;
  line-height: 15px;
  padding: 0px 50px;
}

.subsemail {
  border: 5px solid #5d4fa6;
  padding: 10px 10px;
  border-radius: 5px;
  width: 100%;
  transition: all 200ms ease-in-out;
  text-align: center;
}

.subsemail:focus {
  outline: none;
  border: 5px dotted #5d4fa6;
}

.error-msg {
  height: 30px;
}
.error {
  color: var(--red);
  margin: 5px;
  display: none;
}

.submitBtn1 {
  position: relative;
  display: block;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  background: #5d4fa6;
  font-size: 15px;
  color: white;
  font-weight: bold;
  /*text-transform: lowercase;*/
  height: 40px;
  width: 100%;
  letter-spacing: 1.5px;
  transition: all 150ms ease-in-out;
}

.submitBtn1:hover {
  background-color: #5d4fa6;
  /*     letter-spacing: 3px; */
  cursor: pointer;
}

.submitBtn1:active {
  font-size: 0px;
}

.line {
  width: 0px;
  height: 1px;
  display: inline-block;
  background-color: var(--text);
  position: absolute;
  top: 50%;
  left: 50px;
  transition: width 250ms ease-in;
}

.grow {
  width: 50px;
}

.not-sbt {
  display: inline-block;
  transition: margin 250ms ease-out;
}
.sbt {
  display: none;
  opacity: 0;
}

.submitBtn1:focus {
  outline: none;
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.inner-addon {
  position: relative;
}
.left-addon i {
  left: 0px;
}
.inner-addon i {
  position: absolute;
  top: 14px;
  padding: 0 12px;
  pointer-events: none;
  color: #858585;
}
.left-addon input,
.left-addon textarea {
  padding-left: 32px;
}
.form-control,
.selectcorp,
textarea {
  font-family: "Work Sans", sans-serif, "Font Awesome 6 Free";
  width: 100%;
  height: auto;
  min-height: 40px;
  padding: 8px 10px;
  border: solid 1px rgba(0, 0, 0, 0.11);
  background-color: #f9f9f9;
  color: #777;
  border-radius: 3px;
  box-shadow: none;
}
.comments-title {
  font-weight: 600;
  color: #676767;
  margin: 25px 0;
}
.comment {
  background-color: #f6f6f6;
  padding: 20px;
  margin: 17px 0;
  overflow: hidden;
  border-bottom: solid 1px #e1e1e1;
  border-radius: 3px;
}
.avatar {
  width: 42px;
  color: #2574a9;
  text-decoration: none;
}
.avatar img {
  max-width: 64px;
  min-width: 48px;
  margin: 0 15px 15px 0;
  border-radius: 3px;
}
.comment h5 {
  margin-bottom: 10px;
}
.comment p.small {
  display: inline-block;
}
.media-body > p.small > a {
  color: #777;
}
.imgcontent {
  display: flex;
}
h5.media-heading {
  margin-left: 6%;
  font-weight: 800;
}
ul.children {
  list-style: none;
}
a.btn-edit {
  margin-left: 10px;
}
.card-hover-view:hover{
  /* background-color: #8080801f; */
  transform: translateY(-7px);
  transition: 0.3s;
  /* scale: 1.06; */
}
.ag-format-container {
  width: 100%;
  margin: 0 auto;
}
.our-party-section-area {
  background-color: #fff9fc;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.our-party-section-area .party-bg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  min-height: 500px;
  width: 100%;
}
.our-party-section-area .party-shape {
  position: absolute;
  top: 0;
  left: 29%;
}
.our-party-section-area .party-shape-02 {
  width: 364px;
  height: 1px;
  background-color: #dd131a;
  position: absolute;
  top: 48%;
  left: 28%;
  -webkit-transform: rotate(61deg);
  transform: rotate(61deg);
}
.our-party-section-area .party-shape-03 {
  width: 287px;
  height: 1px;
  background-color: #dd131a;
  position: absolute;
  top: 145px;
  left: 30%;
  -webkit-transform: rotate(63deg);
  transform: rotate(63deg);
}
.our-party-section-area .party-shape-01 {
  position: absolute;
  bottom: 0;
  left: 44%;
}
.btn-wrapper .boxed-btn.btn-sanatory.style-02:hover {
  background-color: #ad0007;
    border-color: #ffffff;
    color: #fff;
}
.btn-wrapper .boxed-btn.btn-sanatory.style-02 {
  background-color: transparent;
  color: #04072e;
  border: 2px solid #04072e;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-left: 0px!important;
  margin-right: 0px!important;
}
.btn-wrapper .boxed-btn {
  /* background-color: var(--secondary-color); */
  /* color: #fff; */
  display: inline-block;
  padding: 17px 27px;
  border-radius: 5px;
  /* text-transform: capitalize; */
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  /* transition: all 0.3s ease-in; */
  /* -webkit-transition: 0.7s all ease; */
  transition: 0.7s all ease;
  /* font-weight: 600; */
}
.margin-bottom-50 {
  margin-bottom: 50px;
}

.donation-section-area .donate-bg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  min-height: 375px;
}
.donation-section-area .donate-bg-02 {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  min-height: 350px;
}
.btn-wrapper .boxed-btn.btn-sanatory {
  color: #fff;
  background-color: #dd131a;
  text-transform: uppercase;
  -webkit-box-shadow: 0 7px 20px rgba(221, 19, 26, 0.3);
  box-shadow: 0 7px 20px rgba(221, 19, 26, 0.3);
}
.btn-sanatory i{
  padding-right: 10px;
}
.blue-bg {
  background: #5d4fa6;
  padding-top: 0;
  padding-bottom: 0;
}
  .poster-sectionmanage img {
    border-radius: 15px;
}

/* #newsletter2 {
  padding-top: 30px;
} */
.newsletter-form {
  display: table;
}
#newsletter2 .newsletter-form .newsletter-title {
  width: 25%;
  text-align: left;
}
#newsletter2 .newsletter-form > *,
#newsletter2 .newsletter-form input[type="text"] {
  height: 40px;
}
.newsletter-form > * {
  display: table-cell;
  overflow: hidden;
  vertical-align: top;
  height: 35px;
}
#newsletter2 .newsletter-form .newsletter-title h5 {
  margin: 0;
  color: #fff;
  font-weight: normal;
  line-height: 21px;
  font-size: 19px;
}
#newsletter2 .newsletter-form .newsletter-zip {
  width: 20%;
  padding: 0 5px;
}

#newsletter2 .newsletter-form > *,
#newsletter2 .newsletter-form input[type="text"] {
  height: 43px;

}
.newsletter-form input[type="text"] {
  padding: 7px 10px;
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  height: 35px;
  background: #f3f4f6;
  width: 100%;
  color: #3e474c;
  font-size: 13px;
  margin-bottom: 0;
}
.newsletter-form .newsletter-submit {
  position: relative !important;
}
.newsletter-form > * {
  display: table-cell;
  overflow: hidden;
  vertical-align: top;
  height: 35px;
}
.newsletter-submit-btn button{
  width: auto;
  height: auto;
  text-align: center;
  padding: 10px 30px;
  background: #c41300;
  text-transform: uppercase;
  color: #f3f4f6;
  font-weight: 600;
  opacity: 1;
  border-top: 1px;
  box-shadow: none;
}
a.donate-button {
  color: #fff;
  font-size: 18px;
  border-top: 1px solid #be2e17;
  border-bottom: 1px solid #911f0f;
  padding: 37px 35px;
}
#navigation li.donate-button,
a.donate-button {
  /* color: #fff; */
  text-transform: uppercase;
  /* font-size: 18px; */
  background: #a82512;
  border: none;
  /* transition: background 0.3s; */
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
}
.f-right {
  float: right;
}

/*vaibhav css*/

.protest-img img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.protest-img p img{
  width: 100% !important;
  object-fit: contain;
  border-radius: 10px;
  height: auto;
}
.protest-img{
  position: relative;
}

.cur-date {
  border: 1px solid #5d4fa6;
  background-color: #5d4fa6;
  text-align: center;
  width: 70%;
  padding: 14px 1px;
  margin-left: 16px;
}
.cur-date p {
  line-height: 10px;
  font-size: 15px;
  color: white;
}
.cur-date h4 {
  line-height: 0px;
  color: white;
  font-size: 25px;
  font-weight: 700;
}
.date-social-icons {
  text-align: center;
}
.social-icons1 i {
  font-size: 14px;
  color: white;
  padding: 11px;
  background-color: #0000ffb0;
  padding-left: 14px;
  border-radius: 50%;
  padding-right: 14px;
}
.social-icons2 i {
  font-size: 16px;
  color: white;
  padding: 10px;
  background-color: #2196f3;
  border-radius: 22px;
}
.social-icons3 i {
  font-size: 14px;
  color: white;
  padding: 11px;
  background-color: rgb(210, 24, 24);
  padding-left: 14px;
  border-radius: 50%;
  padding-right: 14px;
}
.social-icons4 i {
  font-size: 13px;
  color: white;
  padding: 11px;
  background-color: rgb(220, 61, 61);
  border-radius: 50%;
}
.blogger1-img img {
  width: 100%;
  height: 100%;
}
.blogger-id {
  display: flex;
}
.comments-icon i {
  font-size: 20px;
  color: rgb(84, 84, 195);
}
.date-icon i {
  font-size: 22px;
  color: rgb(196 19 0);
}
.date-icon p {
      font-size: 20px;
}
.color-change {
  color: #6179c8e0;
  font-style: italic;
}
.input-container {
  display: flex;
}

::placeholder {
  color: #757575;
  opacity: 1;
}

.search-input {
  background: #eeeeee;
  color: #212121;
  vertical-align: middle;
  font-size: 16px;
  line-height: 2;
  padding: 10px 20px;
  border: 0;
  outline: none;
  box-shadow: inset 0 -1px 1px -1px #cccccc, inset 0 1px 1px -1px #cccccc,
    inset 1px 0 1px -1px #cccccc;
  width: 100%;
}

.search-submit {
  color: black;
  vertical-align: middle;
  padding: 0 20px;
  border: 0;
  outline: none;
  cursor: pointer;
}

.search-submit:hover {
  background: #ffcb51;
}
.submit-btnform{
  text-align: center;
}

.search-submit i {
  font-size: 20px;
  margin-top: 5px;
}
.cont-box h4 {
  font-size: 16px;
  color: black;
  font-weight: 600;
  margin-bottom: 0px;
}
.cont-box {
  padding: 25px;
  background-color: #f4f4f4e0;
}
.cont-box2 {
  padding: 25px;
  background-color: #e3e9fce0;
}
.cont-box2 h6 {
  font-size: 15px;
  color: gray;
  padding-top: 10px;
}
.cont-box2 h2 {
  font-size: 22px;
  font-weight: 700;
}
.cont-box p {
  font-size: 13px;
  color: gray;
  /* margin-bottom: 1px; */
  margin-top: -10px;
}
.social-icons {
  padding-top: 10px;
}
.client-round {
  height:  auto;
}
.client-round h2 a strong{
  border-left: 3px solid #c41300;
  padding-left: 9px;
}
.back-colour {
  background-color: #5d4fa6;
  padding: 0px 13px;
}
.back-colour p {
  color: white;
  font-size: 12px;
  line-height: 12px;
  padding-top: 5px;
}
.poster-sectionmanage{
   padding: 40px 0px 40px 0px;
}
.back-colour h4 {
  color: white;
  font-size: 20px;
  line-height: 6px;
  font-weight: 700;
}
.metting-room img {
  width: 100%;
}
.metting-room {
  position: relative;
}
/* .back-colour{
    display: inline;
} */
.date-up {
  display: flex;
  position: absolute;
}
.tags-first {
  display: flex;
  gap: 10px;
}
.desig1 {
  border: 1px solid gray;
  padding: 0px 14px;
}
.desig1 h4 {
  font-size: 15px;
  color: gray;
  margin-top: 3px;
  font-weight: 400;
}

.cont-box h2 {
  font-size: 22px;
  font-weight: 700;
}
.cont-box3 {
  padding: 25px;
  background-color: #e3e9fce0;
}
.cont-box3 h2 {
  font-size: 22px;
  font-weight: 700;
}
.post2 {
  font-size: 22px;
  font-weight: 700;
}
.all-comments {
  padding-top: 50px;
}
.all-comments h2 {
  font-size: 22px;
  font-weight: 700;
}
.user-comments img {
  width: 100%;
  border-radius: 30px;
}
.user-comments {
  padding: 15px;
}
.user-name h4 {
  font-size: 16px;
  font-weight: 600;
  display: flex;
}
.user-name h4 span {
  font-size: 16px;
  font-weight: 600;
  color: #cfbbbb;
}
.user-name h6 {
  font-size: 14px;
  font-weight: 400;
  color: #212121;
}
.user-name a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #5d4fa6;
}
.leave-reply h2 {
  font-size: 22px;
  font-weight: 700;
}
.leave-reply p {
  font-size: 14px;
  font-weight: 400;
  color: #212121;
  font-style: italic;
}
.leave-reply p span {
  color: red;
}
.leave-reply {
  padding-top: 50px;
}
.btn-post {
  padding: 7px 14px;
  background-color: #5d4fa6;
  color: white;
  border: 1px;
  font-size: 13px;
  font-weight: 600;
}
.form-blog {
  background-color: #eef1f7;
}
.heading-one.mt-4{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 37px;
    margin-top: 10px!important;
}
.content-line {
  display: flex;
}
.line1 {
  height: 66px;
  width: 4px;
  background-color: blue;
  margin-top: 5px;
}
.top-blog {
  font-size: 22px;
  color: black;
  font-weight: 700;
}
.blog-dis {
  font-size: 16px;
  font-weight: 400;
  color: #212121;
}
.blog-dis span{
  /*font-size: 42px;*/
  color: red;
}
.title-content {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
/* slider owl */
/*img {
    height: 100%;
    object-fit: cover;
  }*/
.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(117 114 114 / 68%) !important;
}

.owl-nav button:focus {
  outline: none;
}

.item {
  width: 100%;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(117, 114, 114, 0.38) !important;
}
 
.article-list {
  list-style-type: disclosure-closed;
  margin-left: 5px;
}
.article-list li a{
  color: #c41300;
  font-size: 14px;
  text-decoration: underline;
}
.tags-coloums{
     padding: 0px 0px;
    border: 1px solid #bababa;
    border-radius: 4px;
    height: 36px;
    display: flex;
    align-items: center;

}
 
.tags-content{
  display: flex;
  align-items: center;
  gap: 17px;
  line-height: 0px;
  flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 10px;
    transition: 0.2s all;
}

 .tags-content a:hover{
  background-color: #d80e0e;
  color: white!important;
  border-radius: 5px;
 }
 .tags-coloums:hover h4{
  color: white;
 }
 .tag-col{
    padding-top: 15px;
    /* border-bottom: 1px solid #dfdfdf; */
    padding-bottom: 15px;
    margin-top: 0px;
 }
 .tags-coloums:hover{border: 1px solid rgba(255, 255, 255, 0);}
 .protest-img{
    /* border-bottom: 1px solid #dfdfdf; */
 }
 .time-date1 p{
  margin-bottom: 0px;
 }
 .protest-img{
  padding-top: 15px;
  padding-bottom: 15px;
 }
@media screen and (max-width: 770px) {
  .cur-date {
    border: 1px solid blue;
    background-color: blue;
    text-align: center;
    width: 20%;
    padding: 10px 1px;
    margin-left: 0px;
  }
  .date-social-icons {
    display: flex;
    /* text-align: center; */
    justify-content: space-between;
    padding-bottom: 20px;
  }
  .user-comments img {
    width: 30%;
    border-radius: 30px;
  }
}
.owl-nav button svg path {
  fill: white;
}
/* changes in web sites......................---------------$$$
........................................................... */
.lang-option {
  display: flex;
  justify-content: space-between;
   position: relative;
   top: 90%;
}
.input-container {
  display: flex;
  width: 450px;
  margin-top: 4px;
}

::placeholder {
  color: #757575;
  opacity: 1;
}

.search-input {
  background: #eeeeee;
  color: #212121;
  vertical-align: middle;
  font-size: 14px;
  line-height: 2;
  padding: 1px 15px;
  border: 0;
  outline: none;
  box-shadow: inset 0 -1px 1px -1px #cccccc, inset 0 1px 1px -1px #cccccc,
    inset 1px 0 1px -1px #cccccc;
  width: 100%;
}

.search-submit {
  color: black;
  vertical-align: middle;
  padding: 0 20px;
  border: 0;
  outline: none;
  cursor: pointer;
}

.search-submit:hover {
  background: #ffcb51;
  color: white;
}

.title-right-side {
  display: inline-block;
  margin: 0 0.5rem;

  animation: bounce; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}
.social-icon1 .cta-btn {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0px;
  display: inline-block;
  padding: 7px 9px;
  border-radius: 27px;
  transition: 0.5s;
  /* margin: 14px; */
  border: 2px solid #ffffff;
  color: #ffffff;

}
.hammer1 {
  width: 50px;
}
.header-transparent .btn-getstarted {
  display: none;
}
.header-transparent.header-scrolled .btn-getstarted {
  display: block;
}
.header-transparent .nav-link.scrollto.active {
  display: none;
}
.header-transparent.header-scrolled .nav-link.scrollto.active {
  display: block;
}
.lang-option a{
  font-size: 10px;
    color: #6e6a6a;
    font-weight: 400;
}
/* .green-hover1{
  display: none;
}
.menu-2 .current-menu-item .green-hover1:hover{
  display: block;
  width: 24px;
} */
.text-video h2{
  font-size: 25px;
  font-weight: 700;
}
.text-video h6{
  font-size: 16px;
  font-weight: 500;
  line-height:  28px;
}
/* videos section  */
.youtube-text h4 img{
     width: 25px;
 }
.youtube-text h4{
   font-size: 16px;
   font-weight: 600;
   color: #000;

}
.youtube-dis span{
  font-size: 14px;
  font-weight: 600;
  color: #000;

}
.youtube-dis p{
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #adaaaa;
}

.youtube-text3{
  display: flex;
  justify-content: space-between;
}
.youtube-view button{
  background-color: #f61c0d;
  border: 1px;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.libr-text{
  display: flex;
  justify-content: space-between;
}
.libr-first h4{
  font-size: 16px;
  font-weight: 700;
  color:  black;
  line-height: 12px;
}
.libr-first h6{
  font-size: 12px;
  font-weight: 500;
  color:  black;
  line-height: 12px;
}
.libr-second h4{
  font-size: 16px;
  font-weight: 700;
  color:  black;
  line-height: 12px;
}
.libr-second h6{
  font-size: 12px;
  font-weight: 400;
  color:  black;
  line-height: 12px;
}
.libr-mid img{
  width: 80px;

}
.libr-text{
  padding: 14px;
}
.img-bottom-text{
  font-size: 12px;
  font-weight: 400;
  color:  black;
  line-height: 22px;
}
.libr-text-img h2{
  font-size: 25px;
  font-weight: 700;
  color: white;
  padding-left: 15px;
}
.libr-text-img{
  position: absolute;
  left: 0%;
  bottom: 0;
  /* background-color: rgb(173 238 120 / 77%); */
  background-color: rgb(236 50 50 / 77%);
  width: 100%;
}
.libr-text-img2{
  position: absolute;
  bottom: 0;
  background-color: #c41300ad;
  width: 100%;
  color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.libr-box-4{
  border: 1px solid gray;
  padding: 7px 7px;
}
.libr-box-4 h2{
    font-size: 12px;
    line-height:  12px;
    font-weight: 600;
    color: #777272;
}
.four-box{
  display: flex;
  justify-content: space-between;
}
.box-heading{
  font-size: 28px;
  font-weight: 700;
  color: #18d26e;
}
.libra-titleText{
  padding-top: 4%;
}
.libra-titleText p{
 font-size: 16px;
 color: gray;
 font-weight: 600;
 margin: 0;
}
.libra-titleText h2{
  font-size: 33px;
  font-weight: 700;
  color:  black;
}
.libra-titleText h6{
  font-size: 14px;
  color: gray;
  font-weight: 500;
 }
 .libra-titleText h4{
  font-size: 20px;
  font-weight: 700;
  color: #c41300;
}
.libra-titleText h5{
  font-size: 20px;
  font-weight: 700;
  color: black;
  line-height: 30px;
}
.line-date{
  background-color: #c41300;
  height: 3px;
  width: 10%;
}
.box-background{
  box-shadow: 2px 6px 11px 0px;
}
.text-video button{
  padding: 8px 18px;
  font-size: 14px;
  border: 2px solid #585a61;
  background-color: transparent;
}




.play_btn_width button {
  width: auto;
  height: auto;
  background-color: transparent !important;
  border: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* <button type="button" class="btn btn-primary " data-bs-toggle="modal" data-bs-target="#staticBackdrop">
                                <img src="images/play-icon.png" class="img-fluid modal_play_btn" width="40%" alt="">
                            </button> */

/* .......................breadcrumbs */
.breadcrumb {
  font-family: Arial, sans-serif;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 1em;
  align-items: baseline;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #eae3e3;
  font-weight: 800;
}
.breadcrumb li span a:hover{
  color: #ffffff !important;
  transition: 0.4s;
}
.breadcrumb li:hover{
  color: #d80e0e !important;
  transition: 0.8s;
}

.breadcrumb li:not(:last-child):after {
  content: '';
}

.breadcrumb-separator {
  margin: 0 0.5em;
  color: #5c5c5c;
}

.breadcrumb a {
  color: #000;
  transition: color 0.3s;
}

.breadcrumb a:hover, .breadcrumb a:focus {
  color: #000;
}
#blinking-button2{
  font-weight: 700;
  padding: 9px 16px;
  font-size: 12px;
  margin-left: 0px;
  color: #d80e0e;
  border-radius: 30px 0px;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
  display: none;
}
#blinking-button3 {
    font-weight: 700;
    padding: 9px 16px;
    font-size: 12px;
    margin-left: 0px;
    position: relative;
    color: #ffffff;
    border-radius: 30px 0px;
    background-color: #00a9af;
    font-family: 'Roboto', sans-serif;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: block;
    z-index: 1;
}

#blinking-button3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: travel-wave 1.5s infinite linear;
    z-index: 10;
}

@keyframes travel-wave {
    0% { left: -100%; }
    100% { left: 100%; }
}

#blinking-button3:hover {
    transform: translateY(-1px);
   box-shadow: 0 6px 16px rgb(200 200 200);
}




.get-updates1 img{
  width: 100%;
    height: 100px;
    object-fit: cover;
}
.get-updates1{
  position: relative;
}
.get-updates1::before {
  content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(196 19 0 / 69%);
}
.heading-gets{
  position: absolute;
  top: 18%;
  left: 40%;
}
.manage-responsive-space{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.heading-gets a{
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 9;
}
.heading-gets a img{
  width: 30px;
  height: 24px;
}
.play-butt img{
   width: 20%;
}
.play-butt{
  position: absolute;
  top: 40%;
}
.cpiml-heading h1{
  font-size: 30px;
  font-weight: 800;
  color: #000;
  line-height: 46px;
}
.cpiml-heading h4{
  font-size: 20px;
  font-weight: 500;
  color: gray;
}
 
.img-responsive{
  width: 84px;
}
.search-input2 {
  background: #eeeeee;
  /* color: #212121; */
  vertical-align: middle;
  font-size: 14px;
  line-height: 2;
  padding: 12px 12px;
  border: 0;
  outline: none;
  box-shadow: inset 0 -1px 1px -1px #cccccc, inset 0 1px 1px -1px #cccccc, inset 1px 0 1px -1px #cccccc;
  width: 100%;
}
.search-submit2 i {
  font-size: 30px;
  margin-top: 10px;
}
.search-submit2 {
  color: black;
  vertical-align: middle;
  padding: 0 20px;
  border: 0;
  outline: none;
  cursor: pointer;
}
.search-submit2:hover {
  background: #c41300;
  color: white;
}
.input-container2 {
  display: flex;
  width: 100%;
}
.social-iconsW{
  font-size: 16px;
  color: white;
  padding: 7px 12px;
  background-color: #30d14e;
  border-radius: 50%;
}
.social-iconsT{
  font-size: 16px;
  color: white;
  padding: 7px 12px;
  background-color: #2196f3;
  border-radius: 50%;
}
.social-twobtn{
  display: flex;
  justify-content: space-between;
  row-gap: 10px;
  flex-wrap: wrap;
}
.cover-pagebox{
 padding: 40px 0px 10px 0px;
}
  #delayedPopup {
    .book-new .btn-close {
      text-align: end;
      display: block;
      margin-left: auto;
      margin-bottom: 14px;
    }

    .bt-subcribe:hover {
      background-color: #af1706;
      color: white;
    }

    .bt-subcribe {
      width: auto;
      height: auto;
      text-align: center;
      padding: 8px 22px;
      background: #c41300;
      text-transform: uppercase;
      color: #f3f4f6;
      font-weight: 600;
      opacity: 1;
      border-top: 1px;
      box-shadow: none;
      display: block;
      width: fit-content;
      text-decoration: auto;
      transition: 0.5s all;
      margin-top: 20px;
      margin: auto;
      margin-top: 20px;
    }
  }



/* .bd-sidebar {
  grid-area: sidebar;
} */
@media (min-width: 768px) {
  .bd-main {
      display: grid;
      gap: inherit;
      grid-template-areas:
      "intro"
      "toc"
      "content";
      grid-template-rows: auto auto 1fr;
     
  }
}
/* .bd-main {
  grid-area: main;
} */


.collapse:not(.show) {
  display: none;
}

@media (min-width: 768px) {
  .bd-links {
      position: -webkit-sticky;
      position: sticky;
      top: 5rem;
      display: block !important;
      height: calc(100vh - 7rem);
      padding-left: .25rem;
      margin-left: -.25rem;
      overflow-y: auto;
  }
}
.bd-links {
  overflow: auto;
  font-weight: 600;
}
/* quats line css */
blockquote {
   font-style: italic;
    color: #f0715f;
    margin: 1em 0;
    padding: 0.5em 2em;
}

section#block_content {
   min-height: 400px;
   padding-top: 40px;
   text-align: left;

}

blockquote p {
  font-size: 1em
}

blockquote:before,
blockquote:after {
  font-family: Arial, serif;
  font-size: 2.5em;
  vertical-align: middle;
  line-height: 0
}

blockquote:before {
  content: open-quote;
  margin-right: 4px
}

blockquote:after {
  content: close-quote;
  margin-left: 3px
}

blockquote.blockstyle,
blockquote.style2 {
  background: #fff;
  font-style: italic
}

blockquote.blockstyle p,
blockquote.style2 p {
  display: inline
}

/*blockquote.blockstyle {
  border-left: 3px solid#c41300;
   position: relative;
}
*/
blockquote.blockstyle>span.triangle:before {
  text-indent: 0;
  content: "\f0da";
  font-family: FontAwesome;
  color: #f0715f;
  position: absolute;
  left: -1px;
  top: 50%;
  margin-top: -11px;
  font-style: normal
}
 .book-boxnew{
    padding: 0% 17%;
    padding-bottom:30px;
    position:relative;
    min-height: 100%;
 }
.book-boxnew::after {
    background: #ffffff;
    content: "";
    display: block;
    width: 100%;
    height: 75%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

blockquote.blockstyle:before,
blockquote.blockstyle:after {
     color: #f0715f;
}

blockquote.blockstyle.border-color-blue {
  border-color: #01b7f2
}

blockquote.blockstyle.border-color-blue>span.triangle:before {
  color: #01b7f2
}

blockquote.blockstyle.border-color-yellow {
  border-color: #fdb714
}

blockquote.blockstyle.border-color-yellow>span.triangle:before {
  color: #fdb714
}
.youtube-dis{
  padding-left: 20px;
}
.libr-text-img2 h2{
  font-size: 18px;
  padding-left: 14px;
}
/* .top-sec-one {
    padding: 75px 0px !important;
} */
.news-item {
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    min-height: 100%;
}
.lib-img {
    position: relative;
}
#section-area-5 {
  background: rgba(0, 0, 0, 0) url(../img/img/about-back-cpiml3.png) no-repeat scroll center center / cover;
  min-height: 500px;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.video-view-one {
    padding-bottom: 51px;
}
.blog-det123 {
    position: relative;
}

/*about css*/
.red-about{
  background-image: url("../img/about-red.jpg");
  width: 100%;
  height: 600px;

}
.red-text p{
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  max-width: 517px;
}
.political1 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
}
.other1 h4{
  font-weight: bold;
  color: #15213D;
  text-transform: capitalize;
  font-size: 30px;
}
.other1 a{
  font-size: 30px;
  font-weight: 500;
  margin: 1em 0 5em;


  text-decoration: none;
}
.old-men{
  position: absolute;
  max-width: 100%;
  height: auto;
}
.old-men img{
  width: 100%;

}
.play-btn{
  width: 138px;
  padding: 22px 20px;
  border-radius: 50%;
  background-color: white;
  position: relative;
  bottom: -64px;
  left: 45%;
  border: 1px;
}
.play-colour{
  width: 100px;
  padding:  30px 44px;
  border-radius: 50%;
  background-color:#ce3626;
}
.play-colour i{
  color: white;
  font-size: 27px;
}
.human-icon img{
  padding: 8px 8px;
  border-radius: 6px;
  background-color: #c7c5f6;
}
.economic-heading h2{
  color: #15213D;
  font-weight: 500;
  font-size: 22px;
}
.text-eco p{
  color: #787C8B;
  font-size: 19px;
  max-width: 316px;
}
.card1-box{
  background-color: #ffff;
  border-radius: 10px;
}
.three-card{
  position: absolute;
  top: 80%;
  left: 5%;
}
.main-sec{
  position: relative;
  overflow: unset;
}
.client-met1 img{
  width: 100%;
}
.space-pd1{
  padding-top: 250px;

}
.star-content img{
  width: 20px
}
.title-about{
  color: #d41e44;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
}
.title-mission{
  color: #0c1a3c;
  font-weight: 700;
  font-size: 54px;
}
.civil-rights img{
  width: 60px;
}
.civil-rights h4{
  color: #0c1a3c;
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: #d41e44;
}
.three-box{
  display: flex;
  justify-content: space-between;
}
.star-content{
  padding: 34px;
  padding-top: 160px;
}
.aboutthree-text1{
  margin: 0;
  color: #7c859b;
  font-size: 20px;

}
.btn-learn{
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: #d41e44;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding: 20.5px 50.5px;
  transition: all .4s ease
}
.btn-learn:hover{
  background-color: #fff;
  color: #0c1a3c;
}
.potisen-text2{
  color: #d41e44;
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 2em;
}
.about-politics h2{
  margin: 0;
  color: #0c1a3c;
  font-weight: 700;
  font-size: 50px;
  padding-bottom: 20px;
  line-height: 60px;
}
.star-text1 img{
  width: 15px;
}
.star-text1{

  color: #7c859b;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
}
.aboutTwo-persons{
  width: 100%;
}
.vote-status img{
  width: 64px;
}
.vote-status span{
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: -.02em;
  line-height: 1em;
  margin-left: 10px;
}

.voting-info{
  padding: 34px;
  background-color: #d41e44;
  padding-bottom: 41px;
}
.btn2-learn{
  background-color: #fff;
  color: #0c1a3c;
  border: 1px;
  padding: 6px 22px;
  font-size: 20px;
  font-weight: 600;
}
.about-fourtext{
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  margin-top: 23px
}
@media screen and (max-width: 517px){
  .old-men {
      position: absolute;
      max-width: 100%;
      height: auto;
      bottom: -28%;
  }
  .red-text p {
      font-size: 14px;
      font-weight: 400;
      color: #ffffff;
      max-width: 517px;
  }
  .three-card {
      position: relative;
      top: 80%;
      left: 5%;
  }
  .three-card {
      position: relative;
      top: 80%;
      left: 0%;
  }
  .old-men {
      position: absolute;
      max-width: 100%;
      height: auto;
      bottom: 54%;
  }
  .play-colour {
      width: 80px;
      padding: 25px 32px;
      border-radius: 50%;
      background-color: #ce3626;
  }
  .play-btn {
      width: 100px;
      padding: 11px 10px;
      border-radius: 50%;
      background-color: white;
      position: relative;
      bottom: -378px;
      left: 1%;
  }
  .play-colour i {
      color: white;
      font-size: 25px;
  }
  .red-about {
      background-image: url(../img/about-red.jpg);
      width: 100%;
      height: 775px;
  }
  .old-men {
      position: absolute;
      max-width: 100%;
      height: auto;
      bottom: 51%;
  }
  .political1 {
      color: #F44336;
      font-size: 25px;
      font-weight: 600;
      padding-top: 18px;
  }
  .space-pd1 {
      padding-top: 0px;
  }
  .star-content {
      padding: 14px;
      padding-top: 0px;
  }
  .btn-learn {
      display: inline-block;
      vertical-align: middle;
      border: none;
      outline: none;
      background-color: #d41e44;
      font-size: 20px;
      color: #fff;
      font-weight: 600;
      padding: 11.5px 25.5px;
      transition: all .4s ease;
  }


}
.client-met1{
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
.client-met1 img{
  position: relative;
  z-index: 9;
}


.client-met1:before {
  content: '';
  width: 200%;
  height: 100%;
  background-color: #d41e44;
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 1;
}

/*li.grading-one {
    margin-left: -20%;
}
*//*.logo {
    margin-left: 11%;
}*/
.search-btn1 {
    filter: invert(1);
    /*margin-left: 3%;*/
    padding-right: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-btn1 a i{
    font-size: 21px;
    filter: invert(1);
}
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgb(79 79 79 / 90%);
  background-color: rgb(79 79 79 / 90%);
}

.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #dda0a0;
  color: white;
  font-size: 17px;
  border: none;
  cursor: pointer;
}
.overlay button i{
  font-size: 20px;
}

.overlay button:hover {
  background: #bbb;
}
.icon-one-view1{
  border: 1px solid #fff;
    margin-left: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 4px;
    width: 30px;
    height: 29px;
}
.social-icon-head {
    padding: 0px 0px 0px 5px !important;
}
.header-scrolled .social-links {
    display: none !important;
}
button.btn.btn-blue {
    color: #ffffff;
    width: 166px;
    border-radius: 24px;
    font-weight: 800;
    border: 2px solid #ffffff;
    font-size: 17px;

}
button.btn.btn-blue:hover {
background-color: #ad0007;
    color: #fff;
    border: 2px solid #ad0007;
}

section#clients {
    /* background-color: #efdfd2; */
    background-color: #dedede;
}
.libration123 img{
  border-radius: 15px;
  height: 100%;
  object-fit: fill;
}
.libration123 {
   height: 436px;
    border: unset;
    object-fit: contain ;
    background-color: #ffffff00;
    /* margin-top: 25%; */
    top: 2%;
    /*box-shadow: unset;*/
    border-radius: 20px;
}
.clients {
    padding: 0px 0px 0px 0px;
}
.telegram-social {
    display: flex;
}
.soc-text a {
    font-size: 18px;
    color: #5d4fa6;
    background-color: #fff;
    padding: 10px 20px 10px 51px;
    border-radius: 25px;
    font-weight: 900;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}.soc-icon {
    width: 10%;
    position: relative;
    top: -12px;
    left: 38px;
}
.soc-icon img {
    width: 50px;
}
.telegram-social {
    margin-left: 11%;
}
/*bannercss and video css*/
.video-container {
            position: relative;
            max-width: 100%;
            margin: auto;
            text-align: center;
        }
       /* iframe {
            width: 100%;
            height: 100%;
            border: none;
        }*/

        .banner-1 {
          /* background-image: url('../img/img/video-banner.webp');
       
        background-repeat: no-repeat;
        background-size: cover; */
         background: linear-gradient(287deg, #ed1c24 0%, #f35050 44%, #e74b4b 100%);
        width: 100%;
        height: auto;
    }
    .video-text p{
    font-size: 18px;
    font-weight: 600;
    color: #f8f8f8;
    }
    .videotext-all p{
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    }
 
    .video-text a{
    font-size: 16px;
    padding: 6px;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    
    background-color: #fff;
    color: #e4162a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .card-img img {
    width: 15rem;
    height: 8.5rem;
    object-fit: cover;
}
.banner-img2 img{
    width: 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.img-1 p{
    padding-left: 8px;
    line-height: 18px;
    font-weight: 600;
    color: #f8f8f8;

}
   .logo-row {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    padding: 1rem 3.5rem;
    margin-right: 30px;
    border-bottom: 1px solid #e5e7eb;
    }
    .logo-row:last-child {
      border-bottom: none;
    }
    .logo-row a img {
      height: 60px;
      width: auto;
      border-radius: 8px;
      transition: transform 0.2s;
    }
    .logo-row a:hover img {
      transform: scale(1.05);
    }
.banner-2{
    background-image: url(../img/img1.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        height: auto;
}
.banner-2 p{
    font-size: 14px;

}
.head h1{
    font-size: 38px;
    font-weight: 700;
}
.btn1 a {
    text-decoration: none;
    color: #000000bd;
    font-size: 17px;
    font-weight: 900;
    background: white;
    padding: 6px 24px;
    border-radius: 10px;

}
/*.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}*/
.video-wrapper iframe{
  border-radius: 10px;
  width: 100%;
  height: 221px;
}
.card-img-f img {
    height: 100%;
}
.brand-view {
    margin-left: 25px;
}

/*publications*/
.line-r1{
 height: 3px;
 width: 100%;
  background-color: #00a9af;
  margin-top: 8px;

}
.line-pur1{
  height: 3px;
  width: 60px;
  background-color: #00a9af;
  display: none;
}
.line-r3{
  height: 4px;
  width: 190px;
  background-color: #00a9af;
}

.report-line h4{
    font-size: 15px;
    font-weight: 600;
    font-family: poppins;
    color: #000;
    line-height: 10px;
}
.cpiml-heading h1{
  font-size: 35px;
  font-weight: 600;
  color: #000;
      font-size: 38px;
    font-weight: 800;
    color: #000;
    line-height: 46px;
    font-family: 'Roboto', sans-serif;
}
/* .cpiml-heading  p{
  font-size: 18px;
  font-weight: 400;
  color: #000;
  font-style: italic;
} */
.red-line1{
  display: none;
}
 
.first-img1 img{
  width: 100%;
}
.second-img2 img{
  width: 100%;
}
.upper-content{
  position: absolute;
  left: 1%;
  background-color: #ffffff;
  bottom: 4%;
}
.upper-content h4{
  font-size: 18px;
  color: gray;
  font-weight: 500;
  line-height: inherit;
}
/*.blockquote.blockstyle {
  border-left: 3px solid#c41300;
   position: relative;
}*/
.blog-dis {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
}
.blog-dis span a{
    text-decoration: underline;
    color: #00b0ff;
    font-size: 16px;
    font-weight: 600;
}
.article-list {
  list-style-type: disclosure-closed;
}
.article-list li a{
  color: #c41300;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 600;
}
.article-list   span a{
  color: #00b0ff;
   text-decoration: none;
}
.download1 a img{
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 6px;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #d80e0e;
    border-color: #d80e0e;
}
.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: #d80e0e;
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid #d80e0e1f;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.pagination{
  margin-top: 30px;
}
.download1 a  span{
  color: #686767;
    border-radius: 7px;
    background-color: #eaeaea;
    padding: 1px 15px;
    font-size: 16px;
    margin-left: 21px;
    font-weight: 600;
}
.download2 a img{
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 6px;

}
.download2 a  span{
 color: #686767;
    border-radius: 7px;
    background-color: #eaeaea;
    padding: 1px 15px;
    font-size: 16px;
    margin-left: 21px;
    font-weight: 600;
}
.gray3px-line{
height: 4px;
    width: 100%;
    background-color: #b4b4b4;
    border-radius: 3px;
}
.time-date1 p{
   font-size: 13px;
   font-weight: 500;
   color: gray;
   font-style: italic;
}
.all-tags{
  margin-bottom: 0px;
}
.all-tags h2{
      font-size: 17px;
    color: #474646;
    font-weight: 700;
    margin-bottom: 0px;
}
 
.tags-coloums h4{
  font-size: 15px;
    color: gray;
    font-weight: 400;
    margin-bottom: 0px;
   padding: 0px 9px;
}
 
/*.newsletter-zip2{
  margin-left: 0px;
    padding-left: 0px;
    width: 34%;
}
*/.newsletter-zip2 input{
  width: 100%;
  border: 1px solid;
  padding: 6px;
  border-radius: 6px;
}
.newsletter-email2 input{
  width: 100%;
  border: 1px solid;
  padding: 6px;
  border-radius: 6px;
}
.name-add1{
  display: flex;
  justify-content: space-evenly;
}
.sub-joinBtn button{
  width: auto;
  height: auto;
  text-align: center;
  padding: 6px 18px;
  background: #c41300;
  text-transform: uppercase;
  color: #f3f4f6;
  font-weight: 600;
  opacity: 1;
   
  box-shadow: none;
  border: 1px;
  border-radius: 33px;
}
.sub-joinBtn{
  display: flex;
  justify-content: center;
}
.social-twobtn{
  display: flex;
  justify-content: space-evenly;
}
.gray2px-line{
  height: 2px;
  width: 100%;
  background-color: #80808054;
}
.get-upJOin1 h4{
   font-size: 20px;
   font-weight: 500;
   color: #000;
}
.img-responsive{
  width: 120px;
}

.blog-preview .blog-preview-content {
  padding: 0px 6px;
}
.blog-preview-content h4{
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 30px;
}
.re-font{
  font-size: 22px;
    font-weight: 700;
}
.img-lineGray{

  border: 1px dotted gray;
  width: 100%;
}
 
a.tag-view123 {
    margin-left: 0px;
}
input[type="text"]::placeholder {
    font-size: 14px;
    color: #b5b5b5;
}
.brand-view {
    position: absolute;
     top: 0;
}
h1.logo-width {
    width: 78%;
}
.social-links a i:hover {
    color: #000;
    background-color: #fff;
    border:1px solid #fff;
  }
  .social-links1{
    display: flex;
    justify-content: center;
    align-items: center;
  }

.social-links1 a i:hover{
color: #fff;
    background-color: #ad0007;
    border: 1px solid #ad0007 !important;
}
 
.lan{
  position: relative;
    z-index: 999909;
}
.second-top-one {
    margin-top: -4%;
}
img.cpi-logo-v {
    position: relative;
    z-index: 999;
      top: -25px;
    left: 0;
    right: 0;
}
img.left-img-c {
    margin-left: 17%;
  }

.update-v h4 {
    line-height: 24px;
    font-weight: 700;
    font-size: 17px;
    padding-right: 10px;
  }

.border-unset{
  border:unset!important;

}
.border{
  border: 1px;
  padding: 10px 20px;
  background: #ffffff;
}
.cl-logo button.owl-prev {
    width: 22px;
    background-color: #ad0007 !important;
        left: -12px;
    margin-top: -22px;

}
.cl-logo span {
    color: #fff;
    /* font-size: 21px; */
}
.cl-logo button.owl-next {
    width: 22px;
    background-color: #ad0007 !important;
        right: -12px;
    margin-top: -22px;

}
.cl-logo span {
    color: #fff;
    /* font-size: 21px; */
}
.cl-logo .owl-dots {
    display: none;
  }

  .newsletter__area {
    /* height: 329px; */
    position: relative;
    padding: 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
        background: linear-gradient(135deg, #c41300 0%, #e74c3c 100%);
}
.newsletter__img-wrap {
    position: relative;
    text-align: center;
}
[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}
.newsletter__img-wrap img:nth-child(2) {
    left: 5%;
    bottom: 0;
    z-index: -1;
}
.newsletter__img-wrap img:not(:nth-child(1)) {
    position: absolute;
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s;
}
[data-aos^=fade][data-aos^=fade] {

    transition-property: opacity, transform;
}
.newsletter__img-wrap img:nth-child(3) {
    right: 16%;
    top: 18%;
    z-index: -1;
}
.newsletter__img-wrap img:not(:nth-child(1)) {
    position: absolute;
}
.alltuchtopdown {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}
.newsletter__content .title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
}
.newsletter__content .title span {
    font-weight: 700;
}
.newsletter__form {
    width: 80%;
}
.newsletter__form form {
    /* display: -webkit-box; */
    display: -moz-box;
    display: -ms-flexbox;
    /* display: -webkit-flex; */
    display: flex;
    align-items: center;
    gap: 10px;
}
.newsletter__form form .btn {
    background: #e6e6e6;
    min-width: 186px;
    border: 1px solid #141109;
    padding: 10px 9px;
    color: #161439;
    box-shadow: 4px 6px 0px 0px #3D3D3D;
}
.newsletter__shape img {
    position: absolute;
    right: 14%;
    top: 0;
    z-index: -1;
}
 
.popup-container{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgb(96 95 127 / 70%);
    position: absolute;
    top: 0;
    left: 0;
}
.popup{
    background-color: #ffffff;
    padding: 20px 30px;
    width: 50%;
    border-radius: 15px;
}
.close-popup{
    display: flex;
    justify-content: flex-end;
}
.close-popup a{
    font-size: 1.2rem;
    background-color: rebeccapurple;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
}
.popup > h2{
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.popup > p{
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.popup-btn{
    display: inline-block;
    text-decoration: none;
    border: 2px solid rebeccapurple;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 10px 0px;
    transition: .2s all ease-in;
}
.popup-btn:hover{
    background-color: rebeccapurple;
    color: #fff;
}
#myModal1 h4.modal-title {
    color: #fff;
    font-size: 17px;
}
#myModal1 button.btn-close {
    filter: invert(1);
    opacity: 1;
    /* color: #fff; */
  }
  .modal-title{
    color: white;
  }

#myModal2 h4.modal-title {
    color: #fff;
    font-size: 17px;
}
#myModal2 button.btn-close {
    filter: invert(1);
    opacity: 1;
    /* color: #fff; */
}
.search-icon{
  margin-top: 20px;
}


.ag-format-container {
  width: 100%;
  margin: 0 auto;
}

.ag-timeline-block {
  padding: 50px 0;
}
.ag-timeline_box {
  position: relative;
}

.ag-timeline-carousel-arrow_box {
  z-index: 99;
    position: absolute;
    bottom: -50%;
    right: -6%;
    display: flex;


}
.ag-timeline-block{
  position: relative;
  padding: 0px;
}
.timeline-scroll-one{
      position: absolute;
    bottom: 40px;
    width: 100%;
        left: 0px;
    right: 0px;
}
.our-journey{
  margin-left: 0px!important;
  margin-bottom: 30px;
}
#ag-timeline-carousel{
  padding-left: 0px;
  margin: 0px!important;
  .slick-track li{
    padding: 90px 221px;
    padding-bottom: 165px;
  }
}
.ag-timeline-carousel-arrow {
  margin-left: 13px;
  display: block;
  height: 30px;
  width: 30px;
 /* border: 1px solid #000;
  background-color: #000;*/

  cursor: pointer;

  stroke: #FFF;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;

  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  -o-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;

  position: relative;
}
/*.ag-timeline-carousel-arrow:hover {
  border: 1px solid #000;
  background-color: transparent;
}*/
.js-ag-timeline-carousel-arrow_prev {
  margin: 0 0 10px;
}
.js-ag-timeline-carousel-arrow_prev:hover,
.js-ag-timeline-carousel-arrow_next:hover {
  stroke: #000;
}
.svg-arrow-left,
.svg-arrow-right {
  height: 18px;
  width: 10px;
  margin: -8px 0 0 -5px;

  position: absolute;
  top: 50%;
  left: 50%;
}

.ag-timeline-carousel_list {
  padding: 0 0 0 31px;
}
.ag-timeline_year {
  line-height: 1;
  margin: 27px 0 14px;

  font-weight: 500;
  font-size: 32px;
  color: #fff;
}
.ag-timeline_text p {
  line-height: 1.36;
  margin: 0 0 15px;

  font-size: 16px;
  color: #fff;
}
.ag-timeline_text a {
  text-decoration: underline;
  color: #1646D0;
}
.ag-timeline_text a:hover {
  text-decoration: none;
}

.ag-timeline-carousel-nav_box {
  position: relative;
}
.ag-timeline-carousel-nav_box:before,
.ag-timeline-carousel-nav_box:after {
  content: "";
  height: 42px;
  width: 20%;
  margin: 0 0;

  z-index: 9;
  position: absolute;
  bottom: 0;
  display: none;
}
/*.ag-timeline-carousel-nav_box:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left,  rgba(244,244,244,0) 0%, rgba(244,244,244,1) 35%, rgba(244,244,244,1) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(244,244,244,0)), color-stop(35%,rgba(244,244,244,1)), color-stop(100%,rgba(244,244,244,1)));
  background: -webkit-linear-gradient(left,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
  background: -o-linear-gradient(left,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
  background: -ms-linear-gradient(left,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
  background: linear-gradient(to right,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f4f4f4', endColorstr='#f4f4f4',GradientType=1 );

  right: 0;
}
.ag-timeline-carousel-nav_box:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY1JSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left,  rgba(244,244,244,1) 0%, rgba(244,244,244,1) 65%, rgba(244,244,244,0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(244,244,244,1)), color-stop(65%,rgba(244,244,244,1)), color-stop(100%,rgba(244,244,244,0)));
  background: -webkit-linear-gradient(left,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
  background: -o-linear-gradient(left,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
  background: -ms-linear-gradient(left,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
  background: linear-gradient(to right,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#00f4f4f4',GradientType=1 );

  left: 0;
}*/
.ag-timeline-carousel-nav_list {
  position: relative;
}
/*.ag-timeline-carousel-nav_list:after {
  content: "";
  height: 1px;
  background-color: #ad0007;

  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
}*/
.ag-timeline-carousel-nav_item {
  display: inline-block;
  line-height: 1;
  width: 70px;
  padding: 8px 15px 0;

  cursor: pointer;

  vertical-align: bottom;
  text-align: center;
  font-size: 16px;
  color: #fff;

  position: relative;
}
/*.ag-timeline-carousel-nav_item:before {
  content: "";
  height: 5px;
  width: 5px;
  margin: 0 auto;
  background-color: #cd574a94;

  position: absolute;
  left: 0;
  right: 0;
  bottom: 102px;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;

  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}*/

/*.ag-timeline-carousel-nav_item:after {
  content: "";
  height: 40px;
  width: 1px;
  margin: 0 auto;
  background-color: #ad0007;

  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
}*/

.ag-timeline-carousel-nav_item.slick-current {

    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
    padding-bottom: 10px;
    color: #fff;
   border-bottom: 2px solid #fff !important;
}
.ag-timeline-carousel-nav_item.slick-current:before {
  height: 16px;
  width: 16px;
  background-color: #ad0007;

  bottom: 110px;
}
.ag-timeline-carousel-nav_item.slick-current:after {
  bottom: 59px;
}


@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 100%;
  }

  .ag-timeline-carousel_list {
    padding: 0;
  }

  .ag-timeline-carousel-arrow_box {
    padding: 12px 0 12px 12px;
    background-color: transparent;

    z-index: 1000;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
  }
  .ag-timeline-carousel-arrow {
    display: inline-block;
    height: 33px;
    width: 33px;
  }
  .js-ag-timeline-carousel-arrow_prev {
    margin: 0 8px 0 0;
  }
  .js-ag-timeline-carousel-arrow_prev:before,
  .js-ag-timeline-carousel-arrow_next:before {
    height: 12px;
    width: 8px;
    margin: -6px auto 0;
  }

  .ag-timeline_year {
    font-size: 30px;
  }

  .ag-timeline-carousel-nav_box:before,
  .ag-timeline-carousel-nav_box:after {
    display: none;
    background: none;

    position: static;
  }
  .svg-arrow-left, .svg-arrow-right {
    height: 12px;
    width: 8px;
    margin: -6px 0 0 -4px;
  }
}





@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 100%;
  }

}
.right_conatct_social_icon{
     background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
}
.contact_us{
    background-color: #f1f1f1;
    padding: 120px 0px;
}

.contact_inner{
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 25px;
}
.contact_field{
    padding: 60px 340px 90px 100px;
}
.right_conatct_social_icon{
    height: 100%;
}

.contact_field h3{
   color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px
}
.contact_field p{
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.contact_field .form-control{
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus{
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder{
    font-size: 13px;
    letter-spacing: 1px;
}

.contact_info_sec {
    position: absolute;
    background-color: #2d2d2d;
    right: 1px;
    top: 18%;
    height: 340px;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
}
.contact_info_sec h4{
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.info_single{
    margin: 30px 0px;
}
.info_single i{
    margin-right: 15px;
}
.info_single span{
    font-size: 14px;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
}
.socil_item_inner li{
    list-style: none;
}
.socil_item_inner li a{
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}
.socil_item_inner{
    padding-bottom: 10px;
}
.diff-color{
   
  background: linear-gradient(50deg, rgb(191 191 191 / 91%) 38%, #c3a29f 38%);
}
.form-center{
  background-color: #ffffff96;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  padding: 45px;
}
.contact-hammer img{
  width: 68px;
  margin-left: 26px;
  margin-bottom: 24px;
}
.contact-info1 h2{
  font-size: 50px;
  font-weight: 800;
  color: #cc0000;
}
.contact-info1 {
  font-size: 14px;
  color: gray;
}
.contact-us-heading{
  display: flex;
  justify-content: center;
  padding-top: 20px;
  align-items: center;
}
.contact-social-info a img{
  width: 24px;
}
.contact-social-info a {
  font-size: 14px;
  line-height: 30px;
}
.contact-social-info {
  border: 3px solid purple;
  padding: 2px 7px;
   align-items: center;
   border-radius: 10px;
}
.arrow-right-mail{
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.arrow-right-mail a img{
  width: 30px;
}
.arrow-right-mail a p{
  font-size: 13 px;
  color: gray;

}
.submit-btn3 button{
  width: auto;
  height: auto;
  text-align: center;
  padding: 10px 47px;
  background: #c41300;
  text-transform: uppercase;
  color: #f3f4f6;
  font-weight: 600;
  opacity: 1;
  border-top: 1px;
  box-shadow: none;
}
.submit-btn3{
  display: flex;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 30px;
}
.input-handels input{
  border-radius: 5px;
  border: 2px solid purple;
  padding: 4px 10px;
  font-size: 16px;
}
.input-handels label{
  font-weight: 600;
    color: purple;
}
.input-handels textarea{
  border: 2px solid purple;
}
.form-white{
  background-color: white;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}
.input-handels select{
  border: 2px solid purple;
}
.social-icon-head2 {
  border: 1px solid  purple;
  margin-left: 12px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding: 4px;
  width: 30px;
  height: 29px;
  transition: all ease-in-out 0.4s;
}
.social-icon-head2 i {
  color:  purple;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header#header {
    position: sticky;
    top: 0;
}
.diff-color{
   
  background: linear-gradient(50deg, rgb(191 191 191 / 91%) 38%, #c3a29f 38%);
}
.form-center{
  background-color: #ffffff96;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  padding: 45px;
}
.contact-hammer img{
  width: 68px;
  margin-left: 26px;
  margin-bottom: 24px;
}
.contact-info1 h2{
  font-size: 40px;
  font-weight: 800;
  color: #cc0000;
}
.contact-info1 {
  font-size: 14px;
  color: gray;
}
.contact-us-heading{
  display: flex;
  justify-content: center;
  padding-top: 20px;
  align-items: center;
}
.contact-social-info a img{
  width: 24px;
}
.contact-social-info a {
  font-size: 14px;
  line-height: 30px;
}
.contact-social-info {
  border: 3px solid purple;
  padding: 2px 7px;
   align-items: center;
   border-radius: 10px;
}
.arrow-right-mail{
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.arrow-right-mail a img{
  width: 30px;
}
.arrow-right-mail a p{
  font-size: 13 px;
  color: gray;

}
.submit-btn3 button{
  width: auto;
  height: auto;
  text-align: center;
  padding: 10px 47px;
  background: #c41300;
  text-transform: uppercase;
  color: #f3f4f6;
  font-weight: 600;
  opacity: 1;
  border-top: 1px;
  box-shadow: none;
}
.submit-btn3{
  display: flex;
  justify-content: center;
  padding-top: 32px;
}
.input-handels input{
  border-radius: 5px;
  border: 2px solid purple;
  padding: 4px 10px;
  font-size: 16px;
}

.input-handels label{
  font-weight: 600;
    color: purple;
}
.input-handels textarea{
  border: 2px solid purple;
}
.form-white{
  background-color: white;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}
.input-handels select{
  border: 2px solid purple;
}
.social-icon-head2 {
  border: 1px solid  purple;
  margin-left: 12px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding: 4px;
  width: 30px;
  height: 29px;
  transition: all ease-in-out 0.4s;
}
.social-icon-head2 i {
  color:  purple;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.diff-color {
    background: linear-gradient(50deg, rgb(236 236 236 / 91%) 38%, #ad000721 38%);
}
/*.email-v {
    padding: 18px 0px;
}*/
.email-v p {
    font-size: 13px;
    line-height: 14px;
}
#myModal1 .modal-body.p-0 {
    min-height: 266px;
}
p.email-content1 {
    border: 1px solid #000;
    padding: 4px 4px;
    border-radius: 5px;
}
.col-md-8.email-v {
    margin-left: -11px;
}
.timeline-scroll-one {
    padding: 0px 102px;
}
.slick-initialized .slick-slide span {
    border-right: 2px solid #7a7a7a;
    padding-right: 15px;
}
.our-journey{
  font-size: 36px;
  font-weight: 400;
  margin-left: 3%;
  color: #fff
}
.form-container {
  display: flex;
}

.left-container {
  flex: 1;
  height: 480px;
  background-color: #00b4cf;
}

.right-container {
  display: flex;
  flex: 1;
  height: 460px;
  background-color: #ffffff;
  justify-content: center;
  align-items: center;
}

.left-container {
  display: flex;
  flex: 1;
  height: 480px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.left-container p {
  font-size: 0.9rem;
}

.right-inner-container {
  width: 70%;
  height: 80%;
  text-align: center;
}

.left-inner-container {
  height: 50%;
  width: 80%;
  text-align: center;
  line-height: 22px;
}

input, textarea {
  background-color: #eee;
  border: none;
  padding: 12px 15px;

  width: 100%;
  font-size: 0.8rem;
}

input:focus, textarea:focus {
  outline: 1px solid #00b4cf;
}

/*button {
  border-radius: 20px;
  border: 1px solid #00b4cf;
  background-color: #00b4cf;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
}*/

@media only screen and (max-width: 600px) {
  .left-container {
    display: none;
  }

  .lg-view {
    display: none;
  }
}
@media only screen and (min-width: 600px) {
  .sm-view {
    display: none;
  }
}
form p {
  text-align: left;
}
img.become-img {
    position: absolute;
    bottom: -14%;
    width: 100%;
  }

    .input-handels input.form-control::placeholder {
    color: #b4b2b2;
    font-size: 14px;
}
.input-handels textarea.form-control::placeholder {
    color: #b4b2b2;
    font-size: 14px;
}
.overlay button {
  font-size: 17px;
}

#navbarview {
  overflow: hidden;
  background-color: #333;
}

#navbarview a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 7px 16px;
  text-decoration: none;
  font-size: 17px;
}

#navbarview a:hover {
  background-color: #ddd;
  color: black;
}

#navbarview a.active {
  background-color:#ad0007;
  color: white;
}
.stickyone {
  position: fixed;
  top: 11%;
  width: 100%;
  z-index: 9;
}
.sideline-document h4{
    font-weight: 700;
    color: #000;
    border-left: 3px solid #c41300;
    padding-left: 7px;
}
section.documentview {
    background-color: #fff;
     /* background-color: #f0e7ed; */
    padding: 56px 0px;
}
.media {
    display: -ms-flexbox;
    display: flex;
    }
    .home2 .content .topic .single-item .main-img {
    margin-right: 30px;
}
.main-img img{
  border-radius: 8px;
}
.home2 .content .topic .single-item img {
    width: 100%;
}
.home2 .cat-sm, .home2 .cat-big {
    background: #151a33;
    /* font-family: var(--heebo); */
}
.cat-big {
    line-height: 28px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
}
.cat-sm, .cat-big {
    display: inline-block;
    /* font-size: 12px; */
    /* padding: 0 13px; */
    text-transform: capitalize;
    color: #fff;
    /* font-weight: 400; */
    /* line-height: 20px; */
    /* background: var(--light-blue); */
    /* -webkit-transition: all linear 0.3s; */
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
  }
  .home2 .content .topic .single-item h3 {
    /* font-family: var(--raleway); */
    font-weight: 700;
    color: #151a33;
    padding-top: 10px;
    padding-bottom: 10px;
}
.home2 .content .topic .single-item .cmnt {
    margin-top: 10px;
}
.home2 .content .topic .single-item .cmnt li:first-child {
    padding-right: 30px;
}
.home2 .content .topic .single-item .cmnt li {
    position: relative;
}
.home2 .content .topic .single-item .cmnt li:first-child:after {
    content: "";
    height: 15px;
    width: 1px;
    background: #ddd;
    position: absolute;
    top: 5px;
    right: 15px;
}
.all-item ul {
    list-style: none;
}
.media-body a {
    color: #000;
}
.media-body h3 {
 font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    color: black;
}
 
.cmnt li {
    font-size: 14px;
}
.cmnt li a p{
     font-weight: 700;
         font-size: 15px;
    color: grey;
}
.cmnt li p{
     font-weight: 700;
         font-size: 15px;
    color: grey;
}

/* table of content css start here */
.toc-container {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 30%; /* Starting width */
    overflow: hidden; /* Prevent content overflow during transition */
    transition: width 0.5s ease, height 0.5s ease; /* Smooth transition for width and height */
  }
  .toc-container.expanded {
    width: 100%; /* Expanded width */
  }
  .toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .toc-header i {
    font-size: 1.2rem;
    transition: transform 0.3s ease; /* Smooth rotation animation */
  }
  .toc-header.collapsed i {
    transform: rotate(180deg); /* Rotate the icon on collapse */
  }
  .toc-list {
    margin: 0px;
    padding-left: 20px;
    max-height: 0; /* Initially collapsed */
    overflow: hidden; /* Hide overflowing content */
    transition: max-height 0.5s ease; /* Smooth open/close animation */
  }
  .toc-list.show {
    max-height: 500px; /* Max height for expanded state */
  }
  .toc-list li a {
    text-decoration: none; /* Remove underline from links */
    color: #007bff; /* Default Bootstrap link color */
  }
  .toc-list li a:hover {
    text-decoration: underline; /* Add underline on hover */
  }
  /* tab content css close here */
.cpiml-category{
    display: flex;
    justify-content: space-between;
    background-color: #fbf8f8;
}
.category-h h4{
    font-size: 20px;
    font-weight: 600;
    color: #ad0007;
}
/* start vaibhav new css cmipl second */
/* .multi-drop{
	display: block;
	float: left;
	 
	text-decoration: none;
  transition-duration: 0.5s;
} */
/* .multi-drop a {
  color: #fff;
} */
.multi-drop:hover {
	cursor: pointer;
}
.multi-drop ul{
  background: #252525;
  visibility: hidden;
  opacity: 0;
  min-width: 140px;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: auto;
  left: 0;
  display: none;
  height: auto;
}

.multi-drop ul li {
	clear: both;
  width: 100%;
}
.multi-drop ul li a {
  color: #b5b5b5 !important;
  font-weight: 600;
}
.multi-drop ul li a:hover{
  color: red;
  font-weight: 600;
}
.card-hover-view{
  height: 100%;
 border-radius: 15px;
  /* background: #efdfd2; */
  box-shadow: 2px 0px 7px 0px rgba(0, 0, 0, 0.25);

}
#topslider{
  overflow: visible !important;
 }
.content-bg2{
  background-color: #FBEBDC;
  align-items: center;
  overflow-x: hidden;
  margin-top: -328px;
}
.mob-nave{
  display: flex;
}


@media screen and (max-width: 768px){
   .header-transparent .btn-getstarted{
    display: block;
  }
  .h1-mobile{
    margin-top: 20px;
  }
  .text-card-animation:hover:before {
    transform: scale(32);
}
.media-body h3{
  margin-top: 10px;
  font-size: 20px;
}
.sticky #blinking-button2 {
  display: block;
}
  .mob-nave{
    display: flex;
    justify-content: end;
    align-items: center;
  }
  /* section#topslider {
    height: 100% !important;
} */
 
#hero h2 {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}
  .breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #eae3e3;
    font-weight: 800;
}
section.documentview {
  /* background-color: #f0e7ed; */
  background-color: #fff;
  padding: 14px 0px;
}
.content-bg {
  background-color: #FBEBDC;
  align-items: center;
  position: absolute;
  top: -15px;
}

#blinking-button2 {
    font-weight: 800;
    padding: 7px 12px;
    border: 0px solid #6c8003;
    font-size: 9px;
}
.header-transparent .nav-link.scrollto.active {
  display: block;
  padding: 0px 13px 0px 0px;
}
/* #navbar{
  width: 100%;
} */
.social-links{
  display: none !important;
}

.respon-n{
  display: none;
}
.mobile-nav-toggle{
  color: white;
  /* filter: invert(1); */
}
.hammer1 {
  width: 30px;
}
.cpi-logo-v{
  width: 180px !important;
}
.search-btn1{
  padding-right: 5px;
}

#section-area-5 {
  min-height: 100px;
  background-position: right;
  background-attachment: fixed;
  padding: 0px;
}
#section-area-5 .p-5{
background: #ffffffe8;
padding: 16px !important;
}
.multi-drop ul {
  background: #fff;
  visibility: hidden;
  opacity: 0;
  min-width: 140px;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: auto;
  left: 0;
  display: none;
  top: 168px;
  height: 127px;
  z-index: 9;
  width: 176px;
}
.line1{
  width: 102px !important;
}
 
 
.video-text p {
  font-size: 14px;
  font-weight: 600;
  color: #f8f8f8;
}
.img-1{
  flex-direction: column;
  padding-right: 10px;
  padding-left: 10px;
}

.libration123 img{
  object-fit: cover;
}
.video-text{
margin-top: 10px !important;
  padding-left: 0px;
   
}
 
 
.update-v h4 {
  line-height: normal;
  font-weight: 600;
  font-size: 14px;
  padding-right: 38px;
}
.link1 {
  font-size: 16px;
  font-weight: bold;
 
}
.menu-2 {
display: block;
position: absolute;
top: 55px;
right: 15px;
height: 387px;
bottom: 15px;
left: 15px;
padding: 10px 0;
border-radius: 6px;
background-color: #fff;
overflow-y: auto;
transition: 0.3s;
}
.navbar-mobile img.hammer1  , .navbar-mobile .openBtn {
display: none;
}
.navbar-mobile .head2{
  display: none !important;
}
.text-white {
--bs-text-opacity: 1;
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
font-size: 16px;
line-height: 22px;
height: 62px;
}
.m-space1{
padding-top: 2px !important;
}
#hero h1 {
font-size: 18px;
line-height: 26px;
}
.top-slide2 a{
margin-bottom: 30px;
}
.gp-readMore{
margin-bottom: 21px;
}
 
.libration123{
height:auto;
border: unset;
background-color: #ffffff00;
/* margin-top: 25%; */
top: 0%;
/* box-shadow: unset; */
}
.clients {
padding: 0px 0px 0px 0px;
margin-top: 15px;
}
.clients .client-logo img {
padding: 0px 0px;
/* max-width: 100%; */
transition: 0.3s;
}
.heading-gets {
top: 29%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 999;
}
.sections-li:hover .sections-dd {
display: flex !important;
top: 40px;
height: 118px;
}

.fw-bold{
margin: 0 !important;
font-size: 15px;
}
.footer-contact h3{
font-size: 16px;
font-weight: 800;
}
.newsletter-submit-btn button {
width: auto;
height: auto;
text-align: center;
padding: 5px 16px;
background: #c41300;
text-transform: uppercase;
color: #f3f4f6;
font-weight: 600;
opacity: 1;
border-top: 1px;
box-shadow: none;
}
.libra-titleText h2 {
font-size: 22px;
font-weight: 900;
color: black;
}
.libra-titleText h3{
font-size: 17px !important;
color: #555555;
font-weight: 900;
line-height: 23px;
}
.soc-icon {
width: 10%;
position: relative;
top: -5px;
left: 3px;
}
.soc-icon img {
width: 33px;
}
.soc-text a {
font-size: 10px;
color: #5d4fa6;
background-color: #fff;
padding: 6px 10px 7px 18px;
border-radius: 25px;
font-weight: 800;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.telegram-social {
margin-left: 4%;
}
#newsletter2 .newsletter-form > *, #newsletter2 .newsletter-form input[type="text"] {
height: 36px;

}
.btn-wrapper .boxed-btn.btn-sanatory.style-02:hover {
background-color: #ad0007;
border-color: #ffffff;
color: #fff;
text-align: start;
font-size: 15px;
margin: 0 !important;
margin-bottom: 8px !important;
}
.btn-wrapper .boxed-btn.btn-sanatory.style-02{
width: 100%;
text-align: start;
font-size: 14px;
padding: 10px 20px;
margin: 0 !important;
margin-bottom: 8px !important;
width: auto;
}
.space-btm1{
margin-bottom: 10px !important;
}
#footer .footer-top {
padding: 20px 0 30px 0;
background: #252525;
}

.newsletter-form input[type="text"] {
padding: 5px 6px;
border: none;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
height: 35px;
background: #f3f4f6;
width: 100%;
color: #3e474c;
font-size: 13px;
margin-bottom: 0;
}
#newsletter2 .newsletter-form .newsletter-title h5 {
margin: 0;
color: #fff;
font-weight: normal;
line-height: 17px;
font-size: 11px;
}
.newsletter-submit-btn{
text-align: center;
padding-top: 6px !important;
padding-bottom: 10px !important;
}
.blue-bg {
padding-top: 12px !important;
padding-bottom: 0;
}
#newsletter2{
padding-top: 5px !important;
padding-bottom: 5px !important;
}
#header.header-transparent{
z-index: 9999;
}
.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
transition-property: transform;
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
box-sizing: content-box;
justify-content: start;
align-items: center;
}
.lb-Respon{
font-size: 21px;
}
.lb-Respon svg{
width: 38px;
height: 38px;
}
.cpiml-heading h1{
  font-size: 28px;
  line-height: 36px;
}
.cpiml-heading p {
  line-height: 23px;
  font-size: 17px;
  font-weight: 400;
  color: #000;
  font-style: italic !important;
}
.blog-block {
padding: 9px 11px 14px 6px;
/* background: linear-gradient(275deg, var(--primary-color), transparent); */
}
.client-round h2 {
  font-size: 18px;
  color: black;
  font-weight: 400;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 5px;
  right: 19px;
  color: black;
  font-size: 30px;
}
.blog-dis {
  font-size: 14px;
  font-weight: 600;
  color: #212121;
}

.article-list{
  margin-left: 5px;
}
.re-font{
font-size: 17px;
padding-top: 15px;
}
.blog-preview-content h4{
font-size: 16px;
padding-left: 8px;

}
.get-upJOin1 h4 {
font-size: 16px;
font-weight: 500;
color: #000;
line-height: 24px;
}
button.btn.btn-blue{
font-size: 17px;
}
button.btn.btn-blue:hover{
font-size: 18px;
}
.heading h3{
line-height: normal;
font-size: 21px;
margin-bottom: 14px;
}
#navbarview1 {
padding-left: 8px;
}
#newsletter2 .newsletter-form .newsletter-zip {
width: 42%;
padding: 0 5px;
}
#newsletter2 .newsletter-form .newsletter-title {
/* width: 26%; */
text-align: center;
display: flex;
}
.newsletter-form {
display: contents;
}
.newsletter__content .title {
  margin-bottom: 46px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2;
}
.newsletter__form form .btn {
  background: #e6e6e6;
  min-width: 143px;
  border: 1px solid #141109;
  padding: 10px 9px;
  color: #161439;
  box-shadow: 4px 6px 0px 0px #3D3D3D;
}
.our-journey {
  font-size: 28px;
  font-weight: 700;
  margin-left: 3%;
  color: #fff;
}
}
@media screen and (min-device-width: 310px) and (max-device-width: 440px){
.telegram-social {
margin-left: 6%;
}

.soc-icon img {
width: 27px;
}
#newsletter2 .newsletter-form .newsletter-title h5 {
margin: 0;
color: #fff;
font-weight: normal;
line-height: 17px;
font-size: 8px;
}
.get-updates1 img {
  width: 100%;
  height: 64px;
  object-fit: cover;
}
.heading-gets a {
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

a.cta-btn {
   
  padding: 10px 10px !important;
  font-size: 14px !important;
   
}
.bd-main svg{
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.media-body h3 {
  font-size: 14px;
  line-height: 23px;
}
.all-item {
  padding-right: 0%;
}
.media-body p{
  font-size: 13px;
  margin: 0;
}
.soc-text a {
font-size: 8px;
color: #5d4fa6;
background-color: #fff;
padding: 6px 4px 7px 15px;
border-radius: 25px;
font-weight: 800;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.soc-icon {
width: 0%;
position: relative;
top: -2px;
left: -11px;
}

}
.content-my{
display: flex;
justify-content: center;
align-items: center;
background: #FBEBDC;
}
.footer-contact h3{
font-size: 16px;
font-weight: 800;
color: #fff;
}
.name-add1 .col-md-5 {
padding: 0 !important;
margin-bottom: 10px;
}
#navbarview1{
  background: #ebebeb  !important;
}
.banner-videoV video{
  object-fit: cover;
  object-position: top;
}

.social-iconSubmit {
  display: flex;
  margin-top: 10px;
  align-items: center;
}

.share-icon1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-textvideo h1{
  line-height: 49px;
  font-size: 36px;
  font-weight: 700;
}
.video-section {
  position: relative;
  height: 580px;
  width: 100%;
  overflow: hidden;
}

.video-section video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
 
  top: -90px;
  bottom: 0;
  position: relative;
  background-color: white!important;
}
/* .video-section video::after{
  background-color: #000;
} */

.overlay-text {
  position: absolute;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 0px;
  z-index: 9;
  top: 168px;
  left: 0;
  right: 0;
}

.wave {
  position: absolute;
  bottom: -1px;
  width: 100%;
  z-index: 2;
}
.videoimg{
  height: auto;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 9;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0px 2px 6px 1px #00000078;
}

 
/* .go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #00838d;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

 
.card1-animation {
  display: block;
  position: relative;
  max-width: 100%;
  background-color: #f2f8f9;
  border-radius: 0px;
  padding: 10px 12px;
  margin: 0px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.card1-animation:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #00838d;
  height: 34px;
  width: 34px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1-animation:hover:before {
  transform: scale(21);
}

.card1-animation:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card1-animation:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
} */
/* card css end */
.go-corner {
  display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: 32px;
      height: 32px;
      overflow: hidden;
      bottom: 0px;
      right: 0;
      background-color: #d80e0e;
      border-radius: 20px 0px 16px 0px;
}
.go-arrow {
  margin-top: 5px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
  font-size: 20px;

  font-weight: 900;
}
/* text card design  */
.side-corner {
  display: flex ;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: 40px;
      height: 40px;
      overflow: hidden;
      top: 0px;
      right: 0px;
      background-color: #00a9af;
      border-radius: 0 4px 0 32px;
}

.side-arrow1 {
  margin-top: 3px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.text-card-animation {
  display: block;
  position: relative;
  max-width: 100%;
  background-color: white;
  border-radius: 15px;
  padding: 14px 19px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  min-height: 100%;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  padding-right: 38px;
  margin-top: 0px;
  margin-bottom: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.text-card-animation:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #02b9bf;
  color: white;
  height: 34px;
  width: 45px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.text-card-animation:hover h4{
  color: white !important;
}

.text-card-animation:hover:before {
  transform: scale(24);
}

.text-card-animation:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.text-card-animation:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff !important;
}
.text-card-animation h4{
  line-height: 22px;
    font-weight: 700;
    font-size: 17px;
}
.text-card-animation p{
  color: #00a9af;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}
/* css end there */
.heading-spaceall{
    padding: 20px 0px 26px 0px;
}
.update-v{
  position: relative;
}
.update-v
.video-section::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #00000069;
  top: 0;
}
.text-card-animation .news-category{
  color: rgb(0, 169, 175);
}


/*accordion-button*/

  .accordion-button:focus{
    box-shadow: none!important;
  }
  .accordion-button:not(.collapsed){
        background-color: #f5f5f5 !important;
        box-shadow: none!important;
  }
  button.accordion-button {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}
.card-body.update-body.update-v {
  background: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  text-align: start !important;
}
/* .banner-img2 {
  margin-top: 6rem;
} */

 
.side-textvideo h2 p span{
  color: #fff !important;
}
.side-textvideo a{
  color: #fff;
}
/* box card design */
.subscribe-btnP {
  min-height: 100%;
 border-radius: 15px;
  background: #fff;
}
.mail-iconSub {
  padding-top: 33px;
}
.mail-iconSub i {
  font-size: 50px;
  color: black;
}
.report--main{
      display: flex;
    align-items: center;
    justify-content: space-between;
}
.whatsapp-btnOne {
  color: #c41300;
  padding: 6px 10px;
  font-size: 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #c41300;
}
.first-mailText h2 {
  font-size: 23px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
}
.first-mailText p {
  font-size: 16px;
  padding: 2px 14px 2px;
  color: #292828;
}
.whatsapp-btnOne {
  color: #c41300;
  padding: 6px 10px;
  font-size: 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #c41300;
}
.tele-btntwo {
  color: #c41300;
  padding: 6px 10px;
  font-size: 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #c41300;
}
.social-newCard {
  min-height: 100%;
  border-radius: 15px;
  background: #fff;
  justify-content: center;
}
.first-socialText h2 {
  font-size: 23px;
  line-height: 15px;
  font-weight: 600;
  color: #000000;
}
.first-socialText p {
  font-size: 16px;
  padding: 2px 14px 2px;
  color: #292828;
}
.first-socialText {
  padding-top: 23px;
}
.whatsapp-btnOne i {
  padding-right: 9px;
  font-size: 26px;
  padding-right: 9px;
  font-size: 26px;
}
.tele-btntwo i {
  padding-right: 9px;
  font-size: 26px;
  padding-right: 9px;
  font-size: 26px;
}
/* end card design */
.box-threef{
  position: relative;
  background-image: url("http://cpiml.techsaga.live/assets/img/get-img.jpg");
  height: 100%;
  width: 100%;
  background-size: contain;
}
.box-threef::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background: rgb(196 19 0 / 69%);
}
/* .box-threef img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
/* .threecard-get {
  position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */
 .threecard-get{
  position: relative;
 }
.this-week1 {
  border-bottom: 1px solid #80808026;
  padding: 5px;
}
.wrapper{
  margin-bottom: 20px;
}
.title-wrapper{
  min-height: 1.5rem;
  margin-bottom: 0.5rem;
}
.gallery-slider .img-fluid {
  height: 40vh;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.gallery-desciption{
    font-size: 13px;
    font-weight: 400;
    font-family: 'Poppins';
    color: #484747;
    line-height: normal;
}
#gallery img{
    aspect-ratio: 4/ 4 ;
    object-fit: fill;
    width: 100%;
}
.book-items img{
    aspect-ratio: 3 / 4 !important;
    object-fit: fill;
    width: 100%;
}
.arti-textH h4 {
    font-size: 12px;
    font-weight: 400;
    font-family: 'Poppins';
    color: #484747;
    line-height: normal;
    margin: 7px 0px 7px;
}
.line-detailV {
    width: 100%;
    height: 2px;
    background-color: gray;
}
.tabs-manage{
  margin-bottom: 10px;
}
.tabs-manage a{
    color: #d80e0e!important;
    font-weight: bold;
    font-size: 16px;
}
.tabs-manage a{
    color: #d80e0e;
    font-weight: bold;
    font-size: 16px;
}
.tabs-manage span{
    font-weight: bold;
    font-size: 16px;
}
.contact-section-new{
  position: relative;
  overflow: hidden; 

.contact-wrapper {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-info h2 {
    position: relative;
    padding-bottom: 15px;
  }
  
  .contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: white;
  }
  
  .contact-method {
    transition: transform 0.3s ease;
  }
  
  .contact-method:hover {
    transform: translateX(5px);
  }
  
  .contact-method .icon {
    transition: all 0.3s ease;
  }
  
  .contact-method:hover .icon {
    background: rgba(255,255,255,0.3);
    transform: rotate(5deg);
  }
  
  .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #ddd;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    box-shadow: none;
    border-bottom-color: #c41300;
  }
  
  .form-label {
    color: #555;
    font-weight: 500;
  }
  
  .btn-submit {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 12px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #c41300;
  }
  
  .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
  }
  
  .btn-submit:hover::before {
    left: 100%;
  }
  
  .contact-form h2 {
    position: relative;
    padding-bottom: 15px;
    color: #333;
  }
  
  .contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c41300;
  }
  
  .floating-label {
    position: relative;
    margin-bottom: 20px;
  }
  
  .floating-label label {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    color: #777;
  }
  
  .floating-label input:focus + label,
  .floating-label input:not(:placeholder-shown) + label,
  .floating-label textarea:focus + label,
  .floating-label textarea:not(:placeholder-shown) + label {
    transform: translateY(-20px);
    font-size: 12px;
    color: #c41300;
  }
  
  .bg-custom-gradient {
    background: linear-gradient(135deg, #c41300 0%, #e74c3c 100%);
    height: 100%;
  }
  
  .bg-custom {
    background-color: #c41300;
  }
  
  .bg-custom:hover {
    background-color: #a31000;
    border-color: #a31000;
  }
  
  .icon {
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
  }
  
  .social-links-new a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
  }
  
  .social-links-new a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
  }
  
  @media (max-width: 991.98px) {
    .contact-info {
      padding: 30px !important;
    }
    
    .contact-form {
      padding: 30px !important;
    }
  }
    @media screen and (max-width: 576px) {
    .soc-icon {
        width: 10%;
        position: relative;
        top: -8px;
        left: 3px;
    }

}
}
.contact-section-new::before {
  content: '';
  position: absolute;
  top: 2px;
  right: 0px;
  width: 200px;
  height: 200px;
  background: #ebebeb7d;
  border-radius: 0%;
  z-index: 0;
}

.contact-section-new::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 223px;
  height: 223px;
  background: #ebebeb7d;
  border-radius: 0%;
  z-index: 0;
}
.wave img{
  width: 100%;
}
.padding-imagev{
  padding: 60px 0px 35px 0px;
}
#clients .swiper-wrapper {
align-items: center;
}
.video-youtube{
  padding-right: 20px;
}
.social-iconsvideo{
  display: flex;
  gap: 10px;
}
.card-1{
  display: flex;
  flex-direction: column;
  row-gap: 72px;
}
.videotext-bottom{
  margin-bottom: 26px;
}
.client-round h2 {
  font-size: 20px;
  color: black;
  font-weight: 400;
  line-height:  normal;
 gap: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
   margin-left: 5px;

}
.authorSide-line {
    width: 3px;
    height: 17px;
    background-color: #c41300;
    position: absolute;
    top: 8px;
    left: -5px;
}
 /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .newsletter__area {
    height: auto;
    padding: 18px 0px;
}
.text-card-animation h4{
    font-size: 14px;
}
.blog-preview img {
    width: 120px;
    height: auto;
    aspect-ratio: 4 / 3.8;
}
 .media-body p{
  font-size: 13px;
  margin: 0;
}
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .video-section {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
  }
  .overlay-text {
    font-size: 1.5rem;
    margin-top: -510px;
  }
  .overlay-text {
    font-size: 1.5rem;
    margin-top: -127px;
}
.side-textvideo h1{
  line-height: 22px;
  font-size: 17px;
  margin-bottom: 0px;
  margin-top: 10px;
}
.side-textvideo a {
  color: #fff;
  font-size: 30px;
  line-height: normal;
}
.overlay-text .row{
  align-items: center;
}
.side-textvideo a > div {
    color: white;
    font-weight: 700;
    font-size: 9px;
    background: #c41300;
    padding: 5px 5px;
    display: inline;
    border-radius: 4px;
}
.trusted-sidebar{
      padding: 1.3rem 1rem;
}
.videoimg{
    margin-top: 20px;
}
.blog-content p{
  font-size: 18px;
  line-height: 28px;
  color: rgb(24 23 23);
}
.blog-content {
  font-size: 18px;
  line-height: 28px;
  color: rgb(24 23 23);
}
.blog-content span {
    font-size: 18px;
    line-height: 28px;
    color: rgb(24 23 23);
}


}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.book-items {
  position: relative;
  cursor: default;
  margin: 0;
  display: grid;
  break-inside: avoid;
}
.main-book-wrap {
  position: relative;
}
.book-cover {
  position: relative;
}
.book-cover .book-inside {
  position: absolute;
  width: 90%;
  height: 96%;
  top: 1%;
  left: 16px;
  border: 1px solid grey;
  border-radius: 2px 6px 6px 2px;
  background: white;
  box-shadow: 10px 40px 40px -10px #00000030, inset -2px 0 0 grey, inset -3px 0 0 #dbdbdb, inset -4px 0 0 white, inset -5px 0 0 #dbdbdb, inset -6px 0 0 white, inset -7px 0 0 #dbdbdb, inset -8px 0 0 white, inset -9px 0 0 #dbdbdb;
}
.book-cover .book-image {
  line-height: 0;
  position: relative;
  border-radius: 2px 6px 6px 2px;
  box-shadow: 6px 6px 18px -2px rgba(0, 0, 0, 0.2), 24px 28px 40px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  transform: perspective(2000px) rotateY(-15deg) translateX(-10px) scaleX(0.94);
  cursor: pointer;
}
.book-image img {
  grid-row: 1 / -1;
  grid-column: 1;
  width: 100%;
  border-radius: 2px 6px 6px 2px;
}
.effect {
  position: absolute;
  width: 20px;
  height: 100%;
  margin-left: 16px;
  top: 0;
  border-left: 2px solid #00000010;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.5s ease;
  z-index: 5;
}
.light {
  width: 90%;
  height: 100%;
  position: absolute;
  border-radius: 3px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  top: 0;
  right: 0;
  opacity: 0.1;
  transition: all 0.5s ease;
  z-index: 4;
}
.book-image:hover {
  transform: perspective(2000px) rotateY(0deg) translateX(0px) scaleX(1);
  transform-style: preserve-3d;
  box-shadow: 6px 6px 12px -1px rgba(0, 0, 0, 0.1), 20px 14px 16px -6px rgba(0, 0, 0, 0.1);
}
.sixlogo a img{
  width: 90px !important;
  object-fit: contain;
}
.sixlogo{
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background-color: white;
  border-radius: 34px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.sixlogo:hover{
  transform: translateY(-7px);
  transition: 0.3s;
}
/* line code start here */
.double-line {
  text-align: center;
  overflow: hidden;
  padding: 2px;
  font-size: 30px;
}

.double-line h2 {
  display: inline-block;
  position: relative;
  padding: 0px 8px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}
.double-line h2::after{
    display: block;
    content: "";
    width: 82%;
    height: 1px;
    background-color: #ed1c24;
    display: block;
    margin: auto;
    position: absolute;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
}

.double-line h2::before {
    display: block;
    content: "";
    width: 18%;
    height: 3px;
    background-color: #ed1c24;
    display: block;
    margin: auto;
    margin-top: 7px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
}
  .trusted-logos .logo-row a{
      width: 250px;
    }


/* .double-line h2:before,
.double-line h2:after {
  content: '';
  display: block;
  position: absolute;
  width: 95px;
  border-bottom: 1px solid #444;
  border-top: 1px solid #444;
  height: 4px;
  top: 50%;
  margin-top: -2px;
}

.double-line h2:before {
  right: 100%;
} */
/* .double-line h2:after {
  left: 100%;
} */

/* end line code here  */
.new-updatetwo{
  background: linear-gradient(90deg, rgb(241 231 237 / 20%) 28%, rgb(236 233 242 / 49%) 62%);
}
@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .download-btn + .download-btn {
    margin: 0 10px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .manage-responsive-space{
    justify-content:  space-between !important;
  }
  .double-line h2{
    font-size: 22px !important;
  }
  .timeline-scroll-one {
    padding: 0px 0px;
}
.timeline-scroll-one ul{
  padding: 0px !important;
}
  /* .double-line h2:before,
.double-line h2:after {
  width: 46px !important;
  height: 3px !important;
} */

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
  
#blinking-button3{
  display: none;
}
.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    text-align: center;
    padding: 1rem 0.5rem;
    margin-right: 5px;
    border-bottom: 1px solid #e5e7eb;
}
.logo-row a span{
  display: block;
  padding: 0px !important;
   margin-top: 7px;
   font-size: 12px;
}
.trusted-sidebar{
  width: 100% !important;
}
.table-styless{
tbody, td  {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
          line-height: 18px;
        border: 1px solid;
        text-align: center;
        vertical-align: middle !important;
        padding: 6px;
        font-size: 13px;
}
}
}

.desktop--img{display: block;}
.mobile--img{display: none;}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  .desktop--img{display: none;}
.mobile--img{display:block ;}

}

@media (max-width: 768px) {
  .videotext-bottom {
    margin-bottom: 0px;
  }
  .search-btn1 a i{
    font-size: 18px;
    filter: invert(1);
}
  .poster-sectionmanage img {
    height: auto !important;
}
  .box-threef{
    height: max-content !important;
  }
   img.res-first {
    width: 80px !important;
    height: auto;
}
img.cpi-logo-v {
    width: 100% !important;
    height: auto;
}
img.left-img-c {
    height: auto;
    width: 80px !important;
    position: relative;
    left: 23px;
}
.cad-body .col-md-6:nth-child(3) .img-lineGray{
     border: 1px dotted gray;
    width: 100%;
}
.cad-body .col-md-6:nth-child(4) .img-lineGray{
    border: 1px dotted gray;
    width: 100%;
}
 .div--check{
      display: flex;
      
    gap: 5px;
    input{
          margin-top: 3px !important;
          padding: 10px;

    }
 }
.iconbox-theme-colored{
  margin-top: 20px;
}
.heading-spaceall{
   padding: 0px 0px 16px 0px;
}
.padding-imagev {
    padding: 22px 14px 0px 14px;
}
.cover-pagebox{
 padding: 36px 0px 0px 0px;
}
.line-pur1 {
    height: 3px;
    width: 59px;
    background-color: #00a9af;
}
.line-r3 {
    height: 4px;
    width: 160px;
    background-color: #00a9af;
}
 #delayedPopup{
      width: 88%;
      .bt-subcribe {
        width: auto;
        height: auto;
        text-align: center;
        padding: 8px 13px;
        background: #c41300;
        text-transform: uppercase;
        color: #f3f4f6;
        font-weight: 600;
        opacity: 1;
        border-top: 1px;
        box-shadow: none;
        display: block;
        width: fit-content;
        text-decoration: auto;
        transition: 0.5s all;
        margin-top: 20px;
        margin: auto;
        margin-top: 8px;
        font-size: 12px;
    }
    }
.iconsWrp h6 {
    font-size: 13px;
    color: #000;
    font-weight: 800;
}
.btn-wrapper{
margin: 0 !important;
padding-bottom: 16px;
}
.poster-sectionmanage  .wrapper{
  padding-top: 10px;
}
.poster-sectionmanage {
    padding: 40px 0px 25px 0px;
}
.poster-sectionmanage .wrapper {
        padding-top: 28px;
   }
   .bd-main h2{
  font-size: 21px;
  padding: 20px 0px 0px 0px !important;
}
.share-icon1 {
        display: flex;
        align-items: start;
        flex-direction: column;
        margin-bottom: -10px;
        row-gap: 16px;
    }
    .social-iconSubmit  a i{
      font-size: 18px !important;
    }
    #orgid_wrapper {
    width: max-content !important;
    background: #ebebeb7d  !important;
}
.dt-empty-footer {
      width: max-content !important;
}
.dt-layout-row{
  display: flex!important;
    flex-direction: row!important;
    justify-content: left!important;
    gap: 20px!important;
    align-items: center!important;
}
.dt-search label{
  margin-bottom: 10px;
  text-align: start;
  width: 100%;
}
ul.row.iconsWrp {
  list-style: none;
  margin: 0px !important;
  padding: 0 !important;
}
.report--main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.firstbanner-img{
   background: transparent;
        margin-top: 0px;
        padding: 0px;
            border-radius: 0px;
    box-shadow: none;
    margin-top: -29px;
}
.banner-img2 img{
    border-radius: 8px;
}
.banner-img2{
  padding: 10px;
}
.heading-one.mt-4{
    line-height: auto;

}
.heading-one.mt-4 {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 23px;
    color: black;
}

.book-boxnew {
    padding: 0% 10%;
    padding-bottom: 20px;
    position: relative;
    min-height: 100%;
}
.card-img-top{
  border-radius: 8px;

}
.card-body.update-body.update-v{
  padding: 8px;
}
.go-corner{
  width: 35px;
  height: 35px;
}
.go-arrow i {
    font-size: 16px;
    position: relative;
    top: -2px;
}
.updatecard-mobile{
  padding: 12px;
}
.navbar a,
.navbar a:focus{
    padding: 3px 14px 3px 14px;
}
.navbar li{
  margin-bottom: 6px;
}
.multi-drop ul li a {
    color: #47536e !important;
}
  .dropdown-sub {
    position: static !important;
    width: 100% !important;
    background-color: #dfdfdf !important;
    padding: 10px;
}
.first-mailText h2 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #000000;
}
.new-updatetwo {
    padding: 8px;
}
 img.cpi-logo-v {
    top: -19% !important;
}
.trusted-logos .logo-row a{
      width: 90px;
  }
  .all-item ul{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
blockquote {
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 20px;
  border-left: none;
  position: relative;
  text-indent: -19px;
}
.social-iconSubmit {
    margin-top: 0px;
}
.report-line {
  padding-top: 0px;
      margin-top: 25px !important;
      width: fit-content;
}
.tabs-manage a:hover{
  color: #920000!important;
}
.client-round h2{
  margin-bottom: 0px;
}
/* .multi-drop > ul.dropdown {
  display: none;
} */
.multi-drop > ul.dropdown.myopen{
  display: block !important;
  visibility: visible;
  opacity: 1;
  width: 100%; 
  padding: 0;
}
.client-round h2 a strong {
    border-left: 3px solid #c41300;
    padding-left: 9px;
    font-size: 17px;
}
.client-round {
    height: 100%;
    width: 100%;
}

#collapseThreeSection1 ul{
  list-style: none;
  padding-left: 32px;
}
#collapseThreeSection1 h2{
  font-size: 26px;
    font-weight: 600;
    margin-bottom: 18px;
}
#collapseThreeSection1 h3{
  font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}
#collapseThreeSection1 h4{
  font-size: 21px;
    font-weight: 600;
    margin-bottom: 14px;
}
#collapseThreeSection1 ul li{
    font-size: 18px;
    line-height: 27px;
}
#collapseThreeSection1 p{
    font-size: 18px;
    line-height: 27px;
}
 /* new book design css */


#gallery img{
height:300px;
}

#gallery .book-image img{
      height: 376px;
}

 /* anshu css header css */

 .language-center {
   margin-top: 2px;
    background: #ffffff;
    padding-top: 0px;
    padding-bottom: 5px;
        padding-left: 25px;
    padding-right: 25px;
}
.manage-imge{
  justify-content: end;
}

nav.breadcrumb {
    margin-bottom: 0px;
}
nav.breadcrumb {
    margin-bottom: 0px;
}
.breadcrumb ol{
    margin-bottom: 0px;
}

.second-top-one {
    margin-top: 0px;
}
.top-head{
.breadcrumb a {
    color: #414141;
    transition: color 0.3s;
    font-size: 15px;
}
}

.second-top-one .col-md-3.col-3.d-flex{
    align-items: end;
}
/* 
end anshu */

.trusted-container {
      width: 100%;
      margin: auto;
      border: 1px solid #e5e7eb;
      display: flex;
      border-radius: 15px;
      flex-direction: column;
    }
    @media (min-width: 576px) {
      .trusted-container {
        flex-direction: row;
      }
      .trusted-sidebar {
        border-right: 1px solid #e5e7eb;
        width: 180px;
        text-align: left;

      }
    }
    .trusted-sidebar {
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    width: 264px;
    justify-content: center;
    margin: 15px 0px;
    }
    .trusted-sidebar p {
      font-weight: 600;
      color: #111827;
      font-size: 1.125rem;
      line-height: 1.6;
    }
    .trusted-logos {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
  
 
.author-content{
  border-bottom: 1px solid gray;
  display: flex;
  align-items: center;
    padding: 10px 0px;
}
.firstcard{
  width: 50%;
  text-align: start;
}
.authorall-details{
   padding: 14px;
  margin-top: 35px;
}
.firstcard a{
 text-transform: capitalize;
}
.firstcard h4{
      font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.first-cardside img{
  width: 100%;
}
.first-cardside{
  padding-bottom: 10px;
}
.sidebar-accordion button{
    padding: 14px 18px;
    font-size: 20px;
    font-weight: 600;
}
.sidebar-accordion .accordion-item{
  margin-top: 6px;
}
#orgid_wrapper {
    background: #ebebeb7d  !important;
    width: 100%;
}
.dt-empty-footer {
    background: #ebebeb7d !important;
    width: 100%;
}
.all-videosSection{
  position: relative;
  padding: 20px 0px 7px 0px;
}
.all-videosSection::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 0px;
    width: 200px;
    height: 200px;
    background: rgba(196, 19, 0, 0.1);
    border-radius: 0%;
    z-index: 0;
}
.all-videosSection::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 223px;
    height: 223px;
    background: rgba(196, 19, 0, 0.1);
    border-radius: 0%;
    z-index: 0;
}
  .dkrow
  {
    background: #ebebeb7d;
    padding: 10px;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 0px 0px 2px 0px;
  }
  .dkrow:hover
  {
    background: #ffffff;
    padding: 10px;
    border-radius:0px;
    box-shadow: 0px 0px 2px 0px;
  }
  .dkgap .col-6{
    margin-top: 0px!important;
  }
  .single-item  ul{
        padding-left: 0px;
  }
  .dkgap{
    row-gap: 20px;
  }
  .dkgap a{
    color: #919191;
  }
  .dkrow{
    height: 100%;
  }
  .media-body a{
          word-break: auto-phrase;
  }
  .all-item ul{
        height: 100%;
    margin-bottom: 0px;
  }
  .media{
    height: 100%;
  }
  .all-item {
    height: 100%;
    li{
      height: 100%; 
    }
}
.row.dkrow {
    align-items: center;
}
.documentview{
  .pagination{
    justify-content: center;
  }
  .active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #d80e0e;
    border-color: #d80e0e;
}
.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: #d80e0e;
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid #d80e0e1f;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.accordion-button {
  padding: 14px 14px;
    background: #f5f5f5;
}
}

.sidebar-accordion1 {
  .accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
    background-color: #ebebeb7d   !important;
}
.accordion-body{
   background-color: #ebebeb7d   !important;
}
 
.accordion-body  h2, .accordion-body h3{
        font-size: 22px;
        font-weight: 600;
        line-height: 32px;
}
}
.sidepublic-manage .row > em{
  width: 25%;
  .col-md-3{
    width: 100%;
  }
}
 .dropdown-sub {
  display: none;
}
.dropdown-sub.myAcrhive {
  display: block;
}



@media screen and (min-width: 768px) and (max-width: 992px) {
   .header-transparent .btn-getstarted{
    display: block;
  }
  .text-card-animation:hover:before {
    transform: scale(32);
}
.sticky #blinking-button2 {
  display: block;
}
  .mob-nave{
    display: flex;
    justify-content: end;
    align-items: center;
  }
  /* section#topslider {
    height: 100% !important;
} */
 
#hero h2 {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}
  .breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #eae3e3;
    font-weight: 800;
}
section.documentview {
  /* background-color: #f0e7ed; */
  background-color: #fff;
  padding: 14px 0px;
}
.content-bg {
  background-color: #FBEBDC;
  align-items: center;
  position: absolute;
  top: -15px;
}

#blinking-button2 {
    font-weight: 800;
    padding: 7px 12px;
    border: 0px solid #6c8003;
    font-size: 9px;
}
.header-transparent .nav-link.scrollto.active {
  display: block;
  padding: 0px 13px 0px 0px;
}
/* #navbar{
  width: 100%;
} */
.social-links{
  display: none !important;
}

.respon-n{
  display: none;
}
.mobile-nav-toggle{
  color: white;
  /* filter: invert(1); */
}
.hammer1 {
  width: 30px;
}
.cpi-logo-v{
  width: 180px !important;
}
.search-btn1{
  padding-right: 5px;
}

#section-area-5 {
  min-height: 100px;
  background-position: right;
  background-attachment: fixed;
  padding: 0px;
}
#section-area-5 .p-5{
    background: rgba(0, 0, 0, 0) url(../img/img/about-back-cpiml3.png) no-repeat scroll center center / cover;
    min-height: 500px;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.book-boxnew {
    padding: 0% 7%;
    padding-bottom: 8px;
    position: relative;
    min-height: 100%;
}
.heading-one.mt-4 {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 21px;
}

.multi-drop ul {
  background: #fff;
  visibility: hidden;
  opacity: 0;
  min-width: 140px;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: auto;
  left: 0;
  display: none;
  top: 168px;
  height: 127px;
  z-index: 9;
  width: 176px;
}
.line1{
  width: 102px !important;
}
 
 
.video-text p {
  font-size: 14px;
  font-weight: 600;
  color: #f8f8f8;
}
.img-1{
  flex-direction: column;
  padding-right: 10px;
  padding-left: 10px;
}

.libration123 img{
  object-fit: cover;
}
.video-text{
margin-top: 10px !important;
  padding-left: 12px;
  padding-right: 12px;
}
 
 
.update-v h4 {
  line-height: normal;
  font-weight: 600;
  font-size: 12px;
  padding-right: 38px;
}
.update-v p {
    font-size: 14px;
}
.text-card-animation{
  padding-right: 0px;
  padding: 12px 10px;
    margin: 0px;
}

.link1 {
  font-size: 16px;
  font-weight: bold;
 
}
.menu-2 {
display: block;
position: absolute;
top: 55px;
right: 15px;
height: 387px;
bottom: 15px;
left: 15px;
padding: 10px 0;
border-radius: 6px;
background-color: #fff;
overflow-y: auto;
transition: 0.3s;
}
.navbar-mobile img.hammer1  , .navbar-mobile .openBtn {
display: none;
}
.navbar-mobile .head2{
  display: none !important;
}
.text-white {
--bs-text-opacity: 1;
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
font-size: 16px;
line-height: 22px;
height: 62px;
}
.m-space1{
padding-top: 2px !important;
}
#hero h1 {
font-size: 18px;
line-height: 26px;
}
.top-slide2 a{
margin-bottom: 30px;
}
.gp-readMore{
margin-bottom: 21px;
}
 
.libration123{
height:auto;
border: unset;
background-color: #ffffff00;
/* margin-top: 25%; */
top: 0%;
/* box-shadow: unset; */
}
.clients {
padding: 0px 0px 0px 0px;
margin-top: 15px;
}
.clients .client-logo img {
padding: 0px 0px;
/* max-width: 100%; */
transition: 0.3s;
}
.heading-gets {
top: 29%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 999;
}
.sections-li:hover .sections-dd {
display: flex !important;
top: 40px;
height: 118px;
}

.fw-bold{
margin: 0 !important;
font-size: 15px;
}
.footer-contact h3{
font-size: 16px;
font-weight: 800;
}
.newsletter-submit-btn button {
width: auto;
height: auto;
text-align: center;
padding: 5px 16px;
background: #c41300;
text-transform: uppercase;
color: #f3f4f6;
font-weight: 600;
opacity: 1;
border-top: 1px;
box-shadow: none;
}
.libra-titleText h2 {
font-size: 22px;
font-weight: 900;
color: black;
}
.libra-titleText h3{
font-size: 17px !important;
color: #555555;
font-weight: 900;
line-height: 23px;
}
.soc-icon {
width: 10%;
position: relative;
top: -5px;
left: 3px;
}
.soc-icon img {
width: 33px;
}
.soc-text a {
font-size: 10px;
color: #5d4fa6;
background-color: #fff;
padding: 6px 10px 7px 18px;
border-radius: 25px;
font-weight: 800;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.telegram-social {
margin-left: 4%;
}
#newsletter2 .newsletter-form > *, #newsletter2 .newsletter-form input[type="text"] {
height: 36px;

}
.btn-wrapper .boxed-btn.btn-sanatory.style-02:hover {
background-color: #ad0007;
border-color: #ffffff;
color: #fff;
text-align: start;
font-size: 15px;
margin: 0 !important;
margin-bottom: 8px !important;
}
.btn-wrapper .boxed-btn.btn-sanatory.style-02{
width: 100%;
text-align: start;
font-size: 14px;
padding: 10px 20px;
margin: 0 !important;
margin-bottom: 8px !important;
width: auto;
}
.space-btm1{
margin-bottom: 10px !important;
}
#footer .footer-top {
padding: 20px 0 30px 0;
background: #252525;
}

.newsletter-form input[type="text"] {
padding: 5px 6px;
border: none;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
height: 35px;
background: #f3f4f6;
width: 100%;
color: #3e474c;
font-size: 13px;
margin-bottom: 0;
}
#newsletter2 .newsletter-form .newsletter-title h5 {
margin: 0;
color: #fff;
font-weight: normal;
line-height: 17px;
font-size: 11px;
}
.newsletter-submit-btn{
text-align: center;
padding-top: 6px !important;
padding-bottom: 10px !important;
}
.blue-bg {
padding-top: 12px !important;
padding-bottom: 0;
}
#newsletter2{
padding-top: 5px !important;
padding-bottom: 5px !important;
}
#header.header-transparent{
z-index: 9999;
}
.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
transition-property: transform;
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
box-sizing: content-box;
justify-content: start;
align-items: center;
}
.lb-Respon{
font-size: 21px;
}
.lb-Respon svg{
width: 38px;
height: 38px;
}
.cpiml-heading h1{
  font-size: 18px;
  line-height: 30px;
}
.cpiml-heading p {
  line-height: 23px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-style: normal;
}
.blog-block {
padding: 9px 11px 14px 6px;
/* background: linear-gradient(275deg, var(--primary-color), transparent); */
}
.client-round h2 {
  font-size: 18px;
  color: black;
  font-weight: 400;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 5px;
  right: 19px;
  color: black;
  font-size: 30px;
}
.blog-dis {
  font-size: 14px;
  font-weight: 600;
  color: #212121;
}
 .manage-responsive-space{
    justify-content:  space-between !important;
  }
  img.cpi-logo-v {
    position: relative;
    z-index: 999;
    top: -10px;
    left: 0;
    right: 0;
}

.article-list{
  margin-left: 5px;
}
.re-font{
font-size: 17px;
padding-top: 15px;
}
.blog-preview-content h4{
font-size: 16px;
padding-left: 8px;

}
.get-upJOin1 h4 {
font-size: 16px;
font-weight: 500;
color: #000;
line-height: 24px;
}
button.btn.btn-blue{
font-size: 17px;
}
button.btn.btn-blue:hover{
font-size: 18px;
}
.heading h3{
line-height: normal;
font-size: 21px;
margin-bottom: 14px;
}
#navbarview1 {
padding-left: 8px;
}
#newsletter2 .newsletter-form .newsletter-zip {
width: 42%;
padding: 0 5px;
}
#newsletter2 .newsletter-form .newsletter-title {
/* width: 26%; */
text-align: center;
display: flex;
}
.newsletter-form {
display: contents;
}
.newsletter__content .title {
  margin-bottom: 46px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2;
}
.newsletter__form form .btn {
  background: #e6e6e6;
  min-width: 143px;
  border: 1px solid #141109;
  padding: 10px 9px;
  color: #161439;
  box-shadow: 4px 6px 0px 0px #3D3D3D;
}
.our-journey {
  font-size: 28px;
  font-weight: 700;
  margin-left: 3%;
  color: #fff;
}
.social-twobtn {
    flex-direction: column;
}
.social-twobtn a{
    margin-top: 6px;
}
.social-links1{
  display: flex;
}
.first-mailText h2 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #000000;
}
.first-mailText p {
    font-size: 12px;
    padding: 2px 4px 2px;
    color: #292828;
}
.iconsWrp h6 {
    font-size: 11px;
    color: #000;
    font-weight: 800;
}
}


.privacy-datah{
  h4 {
        font-size: 19px;
        line-height: 32px;
        color: #000;
    }
        h3 {
        color: #000;
        font-size: 23px;
    }
        p {
        font-size: 18px;
        color: #000;
        margin-bottom: 4px;
    }
    ul {
        line-height: 35px;
        font-size: 17px;
        color: #000;
    }
}
.sub-formHwading{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 24px;
    border-radius: 15px;
    background: #ffffff;
}
.bg-subscribe{
  background-color:  #fbfbfb;
}
.btn-captchf {
    width: auto;
    height: auto;
    text-align: center;
    padding: 8px 22px;
    background: #c41300;
    text-transform: uppercase;
    color: #f3f4f6;
    font-weight: 600;
    opacity: 1;
    border-top: 1px;
    box-shadow: none;
    margin-top: 10px;
}
.cptach-designl {
    display: flex;
    gap: 10px;
    align-items: start;
}
.cptach-designl button {
    padding: 6px 12px;
    background: #ad0007;
    color: #ffffff;
    border: 1px;
}
.captcha {
    font-size: 20px;
    font-weight: bold;
    background-color: #fdf5ed;
    padding: 3px 20px;
    display: inline-block;
    color: black;
    margin-bottom: 10px;
}
.sub-formHwading form label{
  color: #000;
}
 
.first-mailText{
  padding-top: 5px;
}
.first-mailText h2{
  font-size: 23px;
  line-height: 30px;
  font-weight: 700;
  color: #000000;
}
.first-mailText p{
  font-size: 16px;
  padding: 2px 14px 2px;
  color: #292828;
}
 
.first-mailText ul li{
    list-style: none;
        padding: 0px 100px;
    i{
        color: #c41300;
        margin-right: 6px;
    }
}
.upi-c {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            padding: 5px;
            border-radius: 5px;
            width: fit-content;
            cursor: pointer;
            margin:auto;
        }
        .bi-copy, .bi-check2 {
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .copied {
            color: green;
            transform: scale(1.2);
        }
        .rupess{
            font-size:22px;
            font-weight:bold;
        }
        .payment-uu{
font-family: 'Montserrat', sans-serif;
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 300px; */
}
.upload-files-container {
    background-color: #ebebeb7d;
    width: 504px;
    padding: 20px 47px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
/*    box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 20px, rgba(0, 0, 0, 0.28) 0px 6px 6px;*/
}
.drag-file-area {
    border: 2px dashed #c41300;
    border-radius: 40px;
    margin: 4px 0 15px;
    padding: 10px 17px;
    width: 427px;
    text-align: center;
    position: relative;
}
.drag-file-area .upload-icon {
    font-size: 50px;
}
.drag-file-area h3 {
    font-size: 26px;
    margin: 0px 0;
            margin-bottom: 25px;
}
.drag-file-area label {
    font-size: 19px;
}
.drag-file-area label .browse-files-text {
    color: #c41300;
    font-weight: bolder;
    cursor: pointer;
}
.browse-files span {
    position: relative;
    top: -25px;
}
.default-file-input {
    opacity: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    right: 0px;
    height: 100%;
}
.cannot-upload-message {
    background-color: #ffc6c4;
    font-size: 17px;
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 5px 10px 5px 30px;
    border-radius: 5px;
    color: #BB0000;
    display: none;
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cannot-upload-message span, .upload-button-icon {
    padding-right: 10px;
}
.cannot-upload-message span:last-child {
    padding-left: 20px;
    cursor: pointer;
}
.file-block {
    color: #f7fff7;
    background-color: #c41300;
    transition: all 1s;
    width: 390px;
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 15px;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}
.file-info {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.file-icon {
    margin-right: 10px;
}
.file-name, .file-size {
    padding: 0 3px;
}
.remove-file-icon {
    cursor: pointer;
}
.progress-bar {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 4.5%;
    width: 0;
    height: 5px;
    border-radius: 25px;
    background-color: #4BB543;
}
.upload-button {
    font-family: 'Montserrat';
    background-color: #c41300;
    color: #f7fff7;
    display: flex;
    align-items: center;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    margin: 10px;
    padding: 7.5px 50px;
    cursor: pointer;
    margin-top: 0px;
}
}
.first-mailText img{
  width: 20%;
}
.h1--book{
  font-size: 30px!important;
}
@media (max-width: 575px) {
  .img--about {
    /* width: 38px; */
    display: block;
    margin-bottom: 10px;
}
.video-section{
          height: 580px!important;
}
  .update-v p , .text-card-animation p{
    font-size: 15px;
  }
  .update-v h4{
    font-size: 17px;
  }
  .breadcrumb a{
    font-size: 12px!important;
  }
  .top-sec-one , .cover-pagebox , .videoo-ss  , #section-area-5 .bd-main , .new-updatetwo  , .libra-titleText , .important-section , #getupdate , .footer-top , .video-section .overlay-text.container , .banner-img2{
    padding-left: 20px!important;
    padding-right: 20px!important;
  }
  .padding-imagev  .banner-img2{
    padding: 0px!important;
  }
  .cover-pagebox .col-md-3{
    padding: 0px!important;
  }
  /* .bd-main .line1{
    display: none!important;
  } */
  #gallery img {
    height: 300px !important;
}
.video-section video {
    min-width: 100%;
    min-height: 100%;
    object-fit: scale-down;
    object-position: right;
    top: -109px;
    bottom: 0;
    position: relative;
    left: -100%;
}
#gallery .book-image img{
height: 352px !important;
}
  .px-2.manage-responsive-space{
    padding: 5px 0px;
  }
  .card.box-background.libration123{
    width: 88%;
    margin: auto;
  }
  .padding-imagev{
    padding-left: 30px!important;
    padding-right: 30px!important;
  }
  .col-md-3.updatecard-mobile {
    margin-bottom: 0px;
  }
  .second-top-one div:nth-child(2){
      width: 100%!important;
  }
  .second-top-one div:nth-child(1){
      /* width: 32%!important; */
      display: none!important;
  }
  img.res-first{
    width: 100%!important;
  }
  .col-md-3.col-3.d-flex.manage-imge{
    display: none!important;
  }
  .row.second-top-one{
    justify-content: space-between;
  }
      img.cpi-logo-v {
        top: 0% !important;
        width: 80%!important;
        padding: 10px 0px;
    }
  .heading-spaceall{
    /* padding-bottom: 0px; */
  }
  .h1--book{
  font-size: 18px!important;
  line-height: 28px;
}
  .updatecard-mobile{
    padding-top: 0px;
  }
  .padding-imagev{
        padding-top: 0px;
  }
  .mobile-mm{
    margin-top:16px!important;
  }
  #gallery{
    padding-top: 0px!important;
    padding-bottom: 0px!important;
  }
  .important-section{
  padding-top: 40px!important;
  margin-top: 0px!important;
}
.videoo-ss{
  padding-top: 0px!important;
}
.trusted-sidebar{
      padding-top: 12px;
    padding-bottom: 0px;
}
.padding-imagev{
  .banner-img2{
  padding:0px ;
  }
}
section#gallery.poster-sectionmanage{
  padding-top: 25px !important;
    padding-bottom: 25px !important;
}
.important-section{
      padding-bottom: 25px !important;

}
.language-center{
  padding-bottom: 0px;
}
.mail-iconSub{
      padding-top: 16px;
}
.newsletter-submit-btn{
          padding-bottom: 0px !important;
}
.new-updatetwo {
  .heading-spaceall{
    padding-bottom: 0px;
  }
}
    .m-space1 {
        padding-top: 2px !important;
        padding-bottom: 25px !important;
    }
    .h1-mobile{
      font-size: 21px!important;
    }
        .newsletter__area {
        height: auto;
        padding: 30px 0px;
    }
    .ag-timeline-block{
      padding: 35px 0px;
    }
    .time-date1{
          margin-top: 13px;
    }

    .col-lg-3.col-md-6.footer-contact {
    margin-bottom: 0px !important;
}
#footer .footer-top{
  padding-top: 30px;
  padding-bottom: 30px;
}
}
#ag-timeline-carousel .slick-list {
  margin: 0px!important;
}
@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 100%;
  }
  .trusted-logos .logo-row a {
    width: 100%;
    text-align: center;
}
.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    padding: 0.5rem 0.5rem;
    margin-right: 0px;
    border-bottom: 1px solid #e5e7eb;
}
.logo-row a span{
  display: block;
}

}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-size: 16px;
    font-weight: 800;
    background: white;
    color: #bd0000;
    padding: 10px 14px;
    border-radius: 50%;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    font-size: 16px;
    font-weight: 800;
    background: white;
    color: #bd0000;
    padding: 10px 14px;
    border-radius: 50%;
}
a.icon-wrap.icon-dark.icon-circled.icon-border-effect.effect-circled.icon-lg {
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    img{
      width: 59%;
    }
}
.img--about{
  width: 53px;
  margin-right: 10px;
}
.heading-one.mt-4{
  color: black;
}

.cad-body .row .col-md-6 .img-lineGray:nth-child(1) {
  display: none;
}
.first-mailText h5{
  font-size: 16px;
}
.bank-detailstext h5 , .bank-addrestext h5{
   font-size: 17px;
}
.sub-formHwading.mt-4{
  padding-left: 40px;
  padding-right: 40px;
}
.book-items .heading-one{
      color: #585A61;
}
.protest-img .blog-content .article-list li a{    color: #030303;}
.protest-img .blog-content .article-list li span a{
  color: #c41300!important;
}
.download--image img{
  width: 150px;
  border-radius: 5px;
}
@media screen and (min-width: 992px) and (max-width: 1200px){
.navbar a, .navbar a:focus{
        padding: 8px 6px 9px 6px;
            font-size: 13px;
}
.iconsWrp h6 {
    font-size: 13px;
    color: #000;
    font-weight: 800;
}
  .trusted-logos .logo-row a {
    width: 100%;
    text-align: center;
}
.logo-row {
    display: flex;
    justify-content: space-between;
    align-items:  self-start;
    padding: 0.5rem 0.5rem;
    margin-right: 0px;
    border-bottom: 1px solid #e5e7eb;
}
.logo-row a span{
  display: block;
}
}
.sorting_1{
  text-align: center !important;
}
.draggable{
  margin-left: 3% !important;
}
/* .cad-body .img-lineGray.mb-2:nth-child(3){
  
} */
.cad-body{
.img-lineGray:nth-child(3){
display: none!important;
}
}

/* .img-lineGray:nth-child(1){
display: none!important;
} */
  .gallery-container {
      max-width: 1318px;
      margin: 0 auto;
   

    .gallery-title {
      font-weight: 600;
      font-size: 2rem;
      margin: 2rem 0 3rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      color: #333;
    }

    .gallery-title::before {
      content: "—";
      font-weight: 700;
      font-size: 2rem;
      color: rgba(180, 150, 50, 0.8);
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 0.5rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      background-color: #222;
      height: 300px;
      cursor: pointer;
      margin-bottom: 5px;
      transition: transform var(--transition-speed) ease;
    }

    .gallery-item:hover {
      transform: scale(1.02);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform var(--transition-speed) ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
      transition: 0.6s;
    }

    @media (max-width: 767.98px) {
      .gallery-item {
        height: 220px;
      }
    }

    @media (max-width: 575.98px) {
      .gallery-item {
        height: 180px;
      }
    }

    /* Modal Image Style */
    #imageModal .modal-dialog {
      max-width: 90vw;
    }

    #modalImage {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
    }

    .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 1056;
      border-radius: 4px;
    }


  }
  .gallery-arrow-left {
    left: -60px;
}

 .gallery-arrow-right {
    right: -60px;
}
    .gallery-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: white;
    color: black;
    border: none;
    padding: 12px 13px;
    cursor: pointer;
    z-index: 1056;
    display: flex;
    align-items: center;
    border-radius: 50%;
}
  .gallery-arrow-btn i{
    font-size: 18px;
   font-weight: 400;
  }