/**
* Template Name: PhotoFolio
* Template URL: https://bootstrapmade.com/photofolio-bootstrap-photography-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  /* --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Cardo", sans-serif; */
}
@import "../css/responsive.css"; /* Using a string */
/* Colors */
:root {
  --color-default: #fafafa;
  --color-primary: #27a776;
  --color-secondary: #161718;
}
p{
  text-align: justify !important;
}
ul{
  margin: 0;
  padding: 0;
}
/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 /* font-family: 'ScaniaSansRegular' !important; */
 font-family: 'SwitzerlandCondensed';
 font-style: bold;
 color: #5f259f;
 font-size: 18px;
}
p{
  margin: 0;
  line-height: 1.5;
  color: #0d0f13;
  /* font-size: 18px; */
}
h1,h2,span{
  font-weight: bold;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #32cf93;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
.section-header {
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-primary);
}

.section-header h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #5bd9a9;
  margin: 4px 10px;
}
.content p{
  padding-bottom: 10px;
  text-align: left;
}

.section-header p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: #fff;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  padding: 120px 0 60px 0;
  min-height: 30vh;
  position: relative;
}

.page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

@media (max-width: 768px) {
  .page-header h2 {
    font-size: 36px;
  }
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.page-header .cta-btn {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--color-primary);
}

.page-header .cta-btn:hover {
  background: #2cbc85;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(39, 167, 118, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: var(--color-secondary);
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: #999;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e2e2e2;
  padding-left: 25px;
}

.header .logo {
  transition: 0.3s;
}

.header .logo img {
  max-height: 90px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-secondary);
}

.header .logo i {
  font-size: 32px;
  margin-right: 8px;
  line-height: 0;
}

@media (max-width: 575px) {
  .header .logo h1 {
    font-size: 26px;
  }

  .header .logo i {
    font-size: 24px;
  }
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: rgba(255, 255, 255, 0.5);
  padding-left: 15px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: #fff;
}

@media (max-width: 575px) {
  .header .header-social-links a {
    padding-left: 5px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  
}

@media (min-width: 1280px) and (max-width: 1366px) {
  
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
   

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(22, 23, 24, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--color-primary);
  line-height: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  margin-top: 80px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  background: var(--color-secondary);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 5px solid #474a4d;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.5);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.gallery {
  margin-top: 40px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #fff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #222425;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Gallery Single Section
--------------------------------------------------------------*/
.gallery-single .portfolio-details-slider img {
  width: 100%;
}

.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery-single .swiper-button-prev,
.gallery-single .swiper-button-next {
  width: 48px;
  height: 48px;
}

.gallery-single .swiper-button-prev:after,
.gallery-single .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-single .swiper-button-prev:hover:after,
.gallery-single .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .gallery-single .swiper-button-prev,
  .gallery-single .swiper-button-next {
    display: none;
  }
}

.gallery-single .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: var(--font-secondary);
}

.gallery-single .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.gallery-single .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.gallery-single .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.gallery-single .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #6b7075;
  font-size: 14px;
}

.gallery-single .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.gallery-single .portfolio-info .btn-visit:hover {
  background: #2cbc85;
}

.gallery-single .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-secondary);
}

.gallery-single .portfolio-description p {
  padding: 0;
}

.gallery-single .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: var(--color-secondary);
  height: 100%;
  margin-bottom: 50px;
}

.gallery-single .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #2e3133;
  float: left;
  margin: 0 10px 0 0;
}

.gallery-single .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.gallery-single .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left,
.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  color: #5bd9a9;
  font-size: 26px;
  line-height: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.gallery-single .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-secondary);
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: #1d1f20;
  top: -200px;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--color-primary);
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: #fff;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 15px 0 0 0;
}

.services .service-item:hover:before {
  background: var(--color-primary);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: #fff;
}

.services .service-item:hover i {
  background: #fff;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  margin-top: 80px;
}

.pricing .pricing-item {
  border-bottom: 1px dashed #474a4d;
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--color-primary);
  float: left;
  width: 44px;
  height: 44px;
  background: #222425;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}

.contact .info-item:hover i {
  background: var(--color-primary);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  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: var(--color-primary);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-secondary);
  text-align: center;
  padding: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.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 var(--color-primary);
  border-top-color: var(--color-secondary);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  background-color: var(--color-secondary);
  border: 1px solid #2e3133;
  color: #fff;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(39, 167, 118, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 30vh;
  background: #000;
  background-size: cover;
  position: relative;
  padding: 140px 0 60px 0;
}

.hero h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
}

.hero h2 span {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
}

.hero h2 span:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  z-index: -1;
}

.hero p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  font-size: 18px;
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--color-primary);
}

.hero .btn-get-started:hover {
  background: #2cbc85;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
 

.footer .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.footer .credits {
  padding-top: 6px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer .credits a {
  color: var(--color-primary);
}


.main-wrapper img{
  width: 100%;
  display: block;
}
.main-wrapper a{
  color: #000;
  text-decoration: none;
}
.main-wrapper ul li{
  list-style-type: none;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  
}
.brand-and-icon{
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}
.navbar-brand{
  font-size: 1.8rem;
  letter-spacing: 3px;
  font-weight: 700;
}
.navbar-toggler{
  display: block;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: all 0.4s ease;
  border: 2px solid #000;
  border-radius: 4px;
}
.navbar-toggler:hover{
  opacity: 0.7;
}
.navbar-collapse{
  overflow-y: scroll;
  display: none;
}
.navbar-nav > li > a{
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  padding: 0.6rem 0;
  margin: 0.2rem 0;
  border-bottom: 1px solid #ddd;
  border-radius: 1px;
  position: relative;
  transition: all 0.4s ease;
}
.drop-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.navbar-nav > li > a:hover{
   color: #361374;
}
.sub-menu h4{
  text-transform: capitalize;
  font-size: 1rem;
  padding: 0rem 0 0 0;
  font-weight: bold;
}
.sub-menu ul li{
  text-transform: capitalize;
  padding: 0.2rem 0;
  margin: 0.2rem 0;
  font-size: 0.95rem;
}
.sub-menu ul li a{
  color: #000 !important;
  opacity: 0.8;
  transition: all 0.5s ease;
}
.sub-menu ul li a:hover{
  padding-left: 14px;
  opacity: 0.9;
}
.sub-menu{
  display: none;
}

.sub-menu-item{
  padding-left: 1.2rem;
}
/* .sub-menu-item:nth-child(3){
  background: #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sub-menu-item:nth-child(3) h2{
  text-transform: capitalize;
  margin: 1.5rem 0;
}
.sub-menu-item:nth-child(3) .btn{
  border: 1px solid #000;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  background: #000;
  color: #fff;
  transition: all 0.5s ease;
}
.sub-menu-item:nth-child(3) .btn:hover{
  background: transparent;
  color: #000;
}
.sub-menu-item:nth-child(4){
  width: 50%;
  margin: 0 auto;
  padding: 2rem 0;
} */

 

/* Media Queries */
@media screen and (min-width: 992px){
  .navbar{
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      border-bottom: 1px solid #ddd;
      padding: 0 0px;
      position: relative;
  }
  .navbar-toggler{
      display: none;
  }
  .brand-and-icon{
      flex: 0 0 100px;
      border-bottom: none;
      padding: 0;
  }
  .navbar-collapse{
      display: block!important;
      overflow-y: hidden;
      flex: 1 0 auto;
  }
  .navbar-nav{
      display: flex;
     
  }
  .navbar-nav > li > a{
      border-bottom: none;
      margin: 0 0.4rem;
      padding: 0.7rem 1.8rem 0.7rem 0.8rem;
      font-size: 0.8rem;
  }
  .sub-menu{
      position: absolute;
      left: 0;
      width: 100%;
      top: 100%;
      background: #f8f8f8;
      /* padding: 15px; */
  }
  .navbar-nav > li:hover .sub-menu{
      display: grid!important;
      grid-template-columns: repeat(4, 1fr);
      padding: 1rem 1rem;
  }
  .navbar-nav > li{
      border-bottom: 2px solid transparent;
      transition: border-bottom 0.4s ease;
  }
  .navbar-nav > li:hover{
      border-bottom-color: #361374;
  }
  .sub-menu-item{
      padding-left: 0;
  }
  /* .sub-menu-item:nth-child(3){
      padding-left: 2rem;
      padding-right: 2rem;
  } */

  /* header */

}

.banner__title{
  /* font-family: 'ScaniaSansHeadlineBold'; */
  font-size: 30px !important;
}
.main-wrapper{
  position: relative;
  z-index: 99999;
}
h2.globle_title{
  /* font-family: 'ScaniaSansHeadlineBold'; */
  
 
}
.title{
  /* font-family: 'ScaniaSansHeadlineBold'; */
  font-size: 56px;
  padding-bottom: 30px;
}
.title span{
  display: block;
  font-size: 24px;
  
}
.content{text-align: center;}

.content_section{
  padding: 60px 0 30px;
}
.footer_section{
  background-color: #f5f5f5;
  padding: 30px 0 30px 0;
  position: relative;
}
.mt-6{
  margin-top: 60px;
}
.Products{

}
.Products span{
  font-weight: 700;
  color: #0d0f13;
  padding-bottom: 10px;
  display: block;
  /* font-size: 16px; */
}
.Products ul{
padding: 0;
margin: 0;
}
.Products li{
  list-style: none;
}
.Products li a{
  color: #0d0f13;
  font-size: 14px;
}
.Products li a:hover{
  text-decoration: underline;
}
footer{background-color: #5f259f;padding: 15px 0;}

footer{

}
footer .Products span{
 color: #ffffff;
 /* font-size: 16px; */
}
footer .Products p{
  color: #ffffff;
  font-size: 14px;
 }
 footer .Products p a{
  color: #fafafa;
  font-size: 14px;
 }
.copy-right p{
  padding: 10px 0 0 0;
  color: #f5f5f5;
  font-size: 12px;
  text-align: center;
}

.arrow-up{
  cursor: pointer;
  margin-right: 40px;
  padding: 15px;
  background-color: #361374;
  color: #fafafa;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  width: 45px;
  height: 45px;
  right: 0;
  top: 40px;
  text-align: center;
  color: #fff;
  line-height: 0;
}
.arrow-up a{
  color: #fff;
  font-size: 17px;
}

/**********************************/
/********** Effect #5 CSS *********/
/**********************************/
.effect-5 {
  position: relative;
 
  overflow: hidden;
}

.effect-5 * {
  transition: .3s;
}

.effect-5 .effect-img {
  font-size: 0;
  overflow: hidden;
}

.effect-5 .effect-img img {
  width: 100%;
  height: auto;
  transition: .5s;
}

.effect-5:hover .effect-img img {
  transform: scale(1.2);
}

.effect-5 .effect-text {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 15px 15px 15px 15px;
  text-align: center;
  /* background: rgba(0, 0, 0, .1); */
  /* border: 15px solid rgba(255, 255, 255, .1); */
  transition: .5s;
}

.effect-5 .effect-text h2 {
  position: relative;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 15px;
  top: calc(50% - 13px); 
  transition: .5s;
  
}

.effect-5 .effect-text p {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  transform: scale(0);
  opacity: 0;
  transition: .5s;
  transition-delay: .1s;
 
}


.effect-5 .effect-btn .btn {
  display: inline-block;
  height: 35px;
  padding: 7px 15px;
  color: #333333;
  background: #ffffff;
  transform: scale(0);
  opacity: 0;
  transition: .2s;
  transition-delay: .3s;
}

.effect-5:hover .effect-text {
  background: rgba(0, 0, 0, .5);
  /* border: 15px solid rgba(255, 255, 255, .5); */
  
}

.effect-5:hover .effect-text h2 {
  top: 0;
  padding-top: 35px;
}

.effect-5:hover .effect-text p {
  transform: scale(1);
  opacity: 1;
}

.effect-5:hover .effect-text .btn {
  transform: scale(1);
  opacity: 1;
}

.pt-6{
  padding-top: 5px;
}
.pt-8{
  padding-top: 25px;
}

.product_des{
  font-size: 20px;
                display: block;
                line-height: 25px;
}

.inner_banner{
  position: relative;
}
.inner_banner img{
  width: 100%;
}
.content_banner{
  position: absolute;
  /* top: 0; */
  z-index: 999;
  bottom: 0;
  /* top: 0; */
  padding: 25px;
  color: #fff;
}
.content_banner h1{
  font-size: 45px !important;
  /* font-family: 'ScaniaSansHeadlineBold'; */
}

.infrastructure_wrapper{

}
.infrastructure_wrapper h2{
  /* font-family: 'ScaniaSansHeadlineBold'; */
  text-align: left;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.infrastructure_wrapper h2 span{
  display: block; font-size: 18px;
}
.infrastructure_wrapper h2 a{
  color: #5f259f;
}

.datainfo{padding-top: 15px;}
.datainfo span{
  font-weight: 700;
  color: #0d0f13;
  padding-bottom: 10px;
  display: block;
  font-size: 16px; text-align: left;
}
.datainfo ul{
  margin: 0px;
  padding: 0px 0 0 18px;
}
.datainfo ul li{
  color: #0d0f13;
  font-size: 14px;
  text-align: left;
  padding-bottom: 5px;
}
 .divided{
  display: flex;
 }
.divided ul.part-1{
    width: 50%;
}
.divided ul.part-2{
    width: 50%;
}
.product_info{
  /* font-family: 'ScaniaSansHeadlineBold'; */
  text-align: left;
  color: #5f259f;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.rad_more{
  text-align: left;
}
.rad_more a{
  text-align: left;
  display: block;
  color: #5f259f;
  padding-top: 5px;
  display: inline-block;
}
.rad_more a i{
  
}
.testing_wrapper img{
  height: 270px;
  border: solid 2px #292929;
  padding: 2px;
}

.regenerative_motor img{
  height: auto;
}

.infrastructure_images img{
  border: none;
  margin-bottom: 10px;
  height: auto;
}
.regenerative_motor_buttons{ padding: 15px 0; text-align: center;}
.regenerative_motor_buttons li{
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}
.regenerative_motor_buttons li a{
  background-color: #361374;
  color: #ffffff;
  padding: 15px;
  display: block;
}
.regenerative_motor_buttons i{
  padding-right: 10px;
  font-size: 18px;
}

.regenerative_motor_video h3{
  /* font-family: 'ScaniaSansHeadlineBold'; */
  text-align: left;
  font-size: 24px;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 20px;
  margin-top: 30px;
  margin-bottom: 25px;
}
 

.globel_button{
  background-color: #361374;
    color: #ffffff;
    padding: 10px 15px;
    display: block;
}
.globel_button:hover{
  color: #ffffff;
}
.header_button{
  margin-top: 25px;
 
  text-align: center;
}
.header_container{
  width: 100%;
}

.WhatsApp{
  width: 180px;
  margin: 5px 0 0 0;
}
.hydraulic_infrastructure_features span{
  display: block;
  padding-bottom: 15px;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
}
.hydraulic_infrastructure_features p span{
  display: block;
  padding-bottom: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  color: #5f259f;
}
.hydraulic_infrastructure_features ul{
  padding-left: 20px;
}
.hydraulic_infrastructure_features li{
  margin: 0;
    line-height: 1.5;
    color: #0d0f13;    text-align: left;
    font-size: 18px;
}


.contact_info{border-right: solid 1px #d5d5d5;padding-right: 60px;}
#contact_form{text-align: left;padding-top: 30px;}
#contact_form label{
  text-align: left;
  display: block;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 5px;
}
.features{
  padding-bottom: 10px;
}

#contact_form .btn-primary{
  background: #361374;
  font-size: 18px;
  text-align: left;    padding: 12px 50px !important;
  border: none; border-radius: 0px;
}
.kt-inside-inner-col{
  padding-left: 60px;
text-align: left;
}
.kt-inside-inner-col h3{
  margin: 0 0 20px;
  font-size: 20px;
}
.kt-inside-inner-col p{
  margin: 0 0 20px;
  font-size: 18px;

}
.kt-inside-inner-col a{
  font-size: 18px;
  color: #361374;
}

.kt-inside-inner-col .WhatsApp{width: 60%;
  height: auto;
  border: none;}

  .Online_Sales{
    position: absolute;
    right: 30px;
  }
  .Online_Sales a{
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    padding: 0.6rem 0;
    margin: 0.2rem 0;
    border-bottom: 1px solid #ddd;
    border-radius: 1px;
    position: relative;
    transition: all 0.4s ease;
  }

.Application_wrapper{
  padding-top: 25px;
}

  .Application_wrapper .col-md-12{
    padding-bottom: 5px;
  }

  .Application_wrapper h1{
    /* font-family: 'ScaniaSansHeadlineBold'; */
    font-size: 30px;
    padding-bottom: 0;
    text-align: center;}
    .Application_wrapper .effect-img img{
      width: 90%;
      margin: 0 auto;
      display: block;
      border-bottom: solid 1px #5f259f;
    }
.picture_2{}
.picture_2 li {
  width: 50%;
  float: left;
}

.table_design .table_header{
  background: #5f259f;
  color: #fff;
}

#table_design {
 text-align: center;
  border-collapse: collapse;
  width: 100%;
}

#table_design td, #table_design th {
  border: 1px solid #ddd;
  color: #000;
  padding: 8px;
}

#table_design tr:nth-child(even){background-color: #f2f2f2;}

#table_design tr:hover {background-color: #ddd;}

#table_design th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #5f259f;
  color: white;
  text-align: center;
}

.Application_list{ position: relative; margin-bottom: 10px;}
.Application_list img{
  width: 100%;
}
.Application_list:before{
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  /* background-color: #0000005e; */
}
.Application_list span{
  color: #000;
  position: absolute;
  z-index: 999;
  /* top: 25px; */
  left: 0;
  /* font-family: 'ScaniaSansHeadlineBold'; */
  right: 0;
  margin: 0 auto;
  text-align: center;
  height: 100%;
  /* font-size: 14px; */
  /* font-weight: 400; */
  padding-top: 75px;
}

.Application_list .upcontent {
  /* position: absolute; */
  top: 0;
  width: 100%;
  height: 100%;
}
.Application_list .upcontent > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-content: flex-start;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.Application_list .upcontent > div > div{
  
}

.Application_list .upcontent span{
  position: relative;
  padding: 0;
}

.engine_driven img{
  height: auto;
}

.Products.WhatsApp{
  padding-top: 50px;
}

.career_wrapper{}
.career_wrapper p{
  padding-bottom: 15px;
}

.Available_positions{
 
}
.Available_positions img{
  width: 100%;
}
.Available_positions h3{
  padding-top: 25px;
  /* font-family: 'ScaniaSansHeadlineBold'; */
}
.Available_positions p{
  font-size: 16px;
  padding-bottom: 25px;

}
.application_details{
  padding-right: 25px;
}

.application_details h2{
  text-align: left;
  padding: 0;
  margin-bottom: 0;
  font-size: 30px;
}
.application_details p{
  padding-bottom: 10px;
}
.application_details ul{
  padding: 0 0 0 20px;
  margin: 0;
}
.application_details li{
  text-align: left;
  color: #000;
  font-weight: 500;
  /* font-size: 18px; */
}
.application_details{
  text-align: left;
}

.application_details table tr{
  text-align: left;
}

 .application_details.construction
 {
  padding-top: 15px;
 }

 .submersible_slurry_pumps-img{margin-bottom: 10px;}
 .submersible_slurry_pumps-img span{
  /* font-family: 'ScaniaSansHeadlineBold'; */
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  display: block;
 
  padding-bottom: 15px;
 }
 .submersible_slurry_pumps-img span font{
  padding-left: 65px;
 }
 

 .submersible_slurry_pumps_btn{
  text-align: right;
  padding: 10px;
 }
 .submersible_slurry_pumps_btn a{
  color: #5f259f;
 }

 .submersible_slurry_pumps-img{
 
  border-bottom: solid 2px #5f259f;
 }
 .top_data ul{
  display: flex;
 }
 .top_data li:nth-child(1){
  list-style: none;
  width: 55%
 }
 .top_data li:nth-child(2){
  list-style: none;
  width:45%
 }
 .top_data li:nth-child(2) span{
  text-align: center;
 }

 .submersible_slurry_pumps_table th{
  
 }


 .submersible_slurry_pump_range{
  position: relative;
 }
 .submersible_slurry_pump_range .popup_data{
  position: absolute;
  width: 100%;
  height: 100%;
 
  top: 0;
 }

 .dots{
  position: relative;
 }

 .dots .circle1{background: #5f259f;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  left: 477px;
  top: 86px;}

  .dots .circle2{background: #5f259f;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    position: absolute;
    left: 372px;
    top: 210px}

    .dots .circle3{background: #5f259f;
      width: 20px;
      height: 20px;
      border-radius: 100px;
      position: absolute;
      left: 452px;
      top: 228px;}

  

.modal-title.popup-headeing{
    font-weight: bold;
  }

  #SLD353 .submersible_slurry_pumps-img,
  #SLD3754 .submersible_slurry_pumps-img,
  #SLD3104 .submersible_slurry_pumps-img
  {
    border: none;
  }

  #SLD353 .submersible_slurry_pumps_btn,
  #SLD3754 .submersible_slurry_pumps_btn,
  #SLD3104 .submersible_slurry_pumps_btn
  {
    padding-bottom: 0;
  }

  .banner-info .points{
    padding-bottom: 20px;
  }
  .banner-info .points h2{
 
  }
.nopadding{
  padding: 0px;
  padding-top: 0px !important;
  padding-right: 0px !important;
}
  .p-b{
    padding-bottom: 45px;
  }
  .p-top-15{
    padding-top: 15px;
  }
  .p-top-25{
    padding-top: 25px;
  }

  #customers {
    display: inline-table;
    border-collapse: collapse;
    width: 100%;
  }
  .tbody td {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #5f259f; color: #ffffff;
 
    font-size: 16px !important;
    font-weight: 400;
    font-weight: 600 !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
} 
  #customers td {
    border: 1px solid #ddd;
    color: #000;
    padding: 8px;font-size: 16px;
    font-weight: 400;
  text-align: center;}
  
  #customers tr:nth-child(even){background-color: #f2f2f2;}
  
  #customers tr:hover {background-color: #ddd;}
  
  #customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #5f259f;
    color: white;
    font-size: 14px;
    font-weight: 400;    font-size: 16px;font-weight: 600;
  text-align: center;}
  #customers img{     width: 20px;
    display: block;
    margin: 0 auto;}
.tbody td{
  color: white !important;
}
    .download{
    padding-bottom: 15px;
}
    .download .left{ float: left;}
    .download .button{ float: right;}
    .download .button a{ background-color: #5f259f; color: #fff; padding: 10px;    border-radius: 5px;}
    .download .button a i{ margin-right: 10px;}
    .download-img{margin-bottom: 30px;}
    .download-img h1{ float: left;}
    .download-img a{ float: right;
        background-color: #5f259f;
color: #fff;
padding: 10px;
border-radius: 5px;
    /* margin-top: 9px; */}
    .download-img a i {
        margin-right: 10px;
    }
    .download-img img{    width: 20px;
        display: block;
        margin: 0 auto;}

        .LP-Series-banner img{clear: both;
          display: flow-root;}
      .LP-Series-banner h1{         font-size: 25px;
          color: #5f259f;
          font-weight: 600;
          margin-bottom: 0px; margin-top: 8px;
          text-align: center;}
          .compnay-info h1 {
            font-size: 30px;
            color: #5f259f;
            text-align: left;
            font-weight: 600;
            /* margin-bottom: 10px; */
        }
.compnay-info{
  padding-top: 25px;
}


.pole4 {
  position: absolute;
  width: 195px;
  height: 51px;
 
  /* top: 30px; */
  z-index: 99999;
  bottom: 183px;
  left: 158px;
}

.pole6 {
  position: absolute;
  width: 195px;
  height: 51px;
 
  /* top: 30px; */
  z-index: 99999;
  bottom: 183px;
  left: 380px;
}

.pole10 {
  position: absolute;
  width: 195px;
  height: 51px;
 
  /* top: 30px; */
  z-index: 99999;
  bottom: 183px;
  left: 604px;
}

.pole4 a,
.pole6 a,
.pole10 a{
  display: block;
  width: 100%;
  height: 100%;
}

.Robust90{
  
  right: 85px;
  position: absolute;
  width: 134px;
  height: 32px;
  top: 419px;
  z-index: 99999;
}
.Robust75{
  
  right: 85px;
  position: absolute;
  width: 134px;
  height: 32px;
  top: 460px;
  z-index: 99999;
}
.Robust55{
  
  right: 85px;
  position: absolute;
  width: 134px;
  height: 32px;
  top: 500px;
  z-index: 99999;
}
.Robust45{
 
  right: 85px;
  position: absolute;
  width: 134px;
  height: 32px;
  top: 542px;
  z-index: 99999;
}

.Robust90 a,
.Robust75 a,
.Robust55 a,
.Robust45 a
{
  display: block;
  width: 100%;
  height: 100%;
}


.LP-Series-banner{
  padding-top: 25px;
}
       .button a {
          background-color: #5f259f;
          color: #fff; width: 100%;
          padding: 10px; display: block;
          border-radius: 5px;
      }
   .button a i {
        margin-right: 10px;
    }
    .top-border{
      border-top: solid 1px #5f259f;
      padding-top: 15px;
    }
    .Crash-Frame-Assembly h1{
      font-size:20px;
      text-align: center;
    }
    .Crash-Frame-Assembly{
      padding-bottom: 15px;
    }
    .Crash-Frame-Assembly img{
      width: 70%;
      display: block;
      margin: 0 auto;
    }

    .br-bottom{
      border-bottom:solid 1px #5f259f;
      padding-top: 15px;
    }
    .br-top{
      border-top:solid 1px #5f259f;
      padding-top: 15px;
    }
.High-Head-Submersible-De-watering-Pumps{
  position: relative;
}
    .High-Head-Submersible-De-watering-Pumps img{
width: 100%
    }

    .main_title{
      background: #5f259f;
    color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    }
    

    

    .searchResults{}
    .searchResults .jobTitle{ color: #ffffff;}
    .searchResults thead th {
      padding: 10px 10px;
      background: #5f259f;
      color: #ffffff;
  }
  .searchResults tbody tr td{
    padding: 10px 10px;
     
    color: #000;
    font-weight: normal;
  }
  .searchResults tbody tr td span{ font-weight: normal; font-size: 16px;}
  .searchResults tbody tr td span a{
    color: #5f259f;
  }


 

.searchResults tr:nth-child(even) {
  background-color: #f2f2f2;
}

.career_wrapper{   }
.career_wrapper ul{
  padding-left: 15px;
}
.career_wrapper li{
  color: #000;
}
.career_wrapper a{
  color: #5f259f; text-decoration: underline;
}

ul.subbullet{

}
ul.subbullet ol{

}

.Products.Our-address ul{
  padding-left: 0 !important;
}

.Products.Our-address li a{
  font-size: inherit !important;
}
.for-country ul{
 text-align: center;
}
.for-country h3{
  
 
  padding-bottom: 10px;
  margin-bottom: 15px; text-align: center;

}
.for-country li{
list-style: none; display: inline-block;
 
padding:0 10px 15px 10px ;
margin-bottom: 15px;
 
}
.for-country li a{
  color: #000; text-decoration: underline;
  font-size: 20px;
}

.targetDiv{
  display: none;
}
#div1{
  display: block;
}

.buttons a{
  color: #000;
  text-decoration: underline;
  font-size: 20px;
  padding:0 10px;
  cursor: pointer;
}
.buttons{
  padding-bottom: 40px;
  text-align: center;
}
.buttons h3{
  padding: 0;
}
 

.Electrical-Driven{}
.Electrical-Driven h3{
  font-weight: bold;
}
.Electrical-Driven li{
  list-style: none;
}
.Electrical-Driven ul{
  padding: 0;
  margin: 0;
}
.Electrical-Driven li a{
  color: #000 !important;
  font-size: 16px;
  font-weight: normal;
}

.timeLine{
  position: relative;
}
.timeLine a{
  position: absolute;
  z-index: 999;
  top: 154px;
  left: 45px;
  width: 150px;
  opacity: 0;
}


.group-of-companies{
  position: relative;
}
.group-of-companies a{
  position: absolute;
  z-index: 999;
  top: 90px;
  left: 130px;
  width: 320px;
  opacity: 0;
}


#container {
 
}

.tabs-nav ul {
  margin: 0;
  padding: 0;
}

.tabs-nav li {
  display: inline-block;
  background:#5f259e;
  color: #fefefe;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: #5f259e;
  margin-right: 3px;
  border-radius: 10px 10px 0 0
}
.tabs-content h1{
  text-align: center;
  padding-top: 65px;
}
.tabs-nav a {
  display: block;
  padding: 10px 17px;
  font-weight: bold;
  color: #fff;
}
.tabs-nav a small{
  display: block;text-align: center;
}
/* Active tab */

.tabs-nav li.active {
  background: #FFF;
  color: #5f259e;
}

.tabs-nav li.active a {
  color: inherit;
}
/* Tab content */

.tabs-content {
  border: 1px solid #5f259e;
  padding: 20px 45px;
  background: #FFF;
  margin-top: -1px;
  overflow: hidden;
  height: 250px;
}

.tabs-content IMG {
  margin-right: 10px;
}
/* Hide all but first content div */

.tabs-content div:not(:first-child) {
  display: none;
}


.caption{
  text-align: center;
  padding-top: 20px;
}

.Company_Principles{
  text-align: center;
  color: #000;
  line-height: 35px;
}
.Company_Principles p{
  text-align: center !important;
}
.Company_Principles h2,
.Company_Principles h3{
  color: #5f259f;
  font-weight: bold;
}
.Company_Principles h3{
  padding: 0;
  margin: 0;
}
.submersible_slurry_pumps_btn .pdf_download {
margin-right:20px;
float:left;
}