/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #F4731C;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 80px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    /* ------------------------------- */
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
        /* width: 100%;
        left: 0;
        padding-left: 15rem;
        padding-right: 15rem; */
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--secondary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}



/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

/* Sponser */
/* body, html {
    height: 100%;
    background-color: white;
  } */
  
  .container {
    overflow: hidden;
  }
  .container .slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
    overflow: hidden;
  }
  .container .slider .logos {
    width: 100%;
    display: inline-block;
    margin: 0px 0;
  }
  .container .slider .logos .fab {
    width: calc(100% / 5);
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
  }
  
  @keyframes slidein {
    from {
      transform: translate3d(0, 0, 0);
    }
    
    to {
      transform: translate3d(-100%, 0, 0);
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* About  */
  .about-us {
    padding: 60px 0;
    width: 100%;
    background-color: #ffffff;
}
.about-img img {
    /* border: 1px solid #000; */
    padding: 5px;
    border-radius: 0%;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
}
.about-sub-heading h5 {
    color: #2b7248;
}
.about-content h2 {
    font-weight: bold;
    margin-bottom: 20px;
}
.about-content p {
    margin-bottom: 30px;
    color: #6e6e6e;
}
.about-sub i {
    width: 40px;
    height: 40px;
    background-color: #F4731C;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;

    margin-right: 10px;
}
.about-sub i h6 {
    font-size: 18px;
}
.btn1 {
    padding: 12px 40px;
    border: 1px solid #FF8905;
    color: #000;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.btn1:hover {
    color: #fff;
    text-decoration: none;
}
a.btn1:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #FF8905;
    transition: 0.5s;
    z-index: -1;
}
a.btn1:hover:before {
    width: 100%;
    height: 100%;
    color: #fff;
}

/* 11 KVNew Servcie Section */
.testimonial2 h5 {
    line-height: 22px;
    font-size: 1 rem;
		font-weight: 400;
    font-family:"Heebo", sans-serif;
}

.testimonial2 .font-weight-medium {
  font-weight: 500;
}

.testimonial2 .bg-light {
  background-color: #f4f8fa !important;
}

.testimonial2 .subtitle {
  color: #726D7B;
  line-height: 24px;
}

.testimonial2 .testi2 .image-thumb {
  background: url(../img/11kv-ban.png) no-repeat top center;
  text-align: center;
  padding: 10% 0;
}

.testimonial2 .testi2 .image-thumb img {
  width: 400px;
}

/* .testimonial2 .testi2 .owl-dots {
  display: inline-block;
  position: relative;
  top: -100px;
} */

/* .testimonial2 .testi2 .owl-dots .owl-dot {
  border-radius: 100%;
  width: 70px;
  height: 70px;
  background-size: cover;
  margin-right: 10px;
  opacity: 0.4;
  cursor: pointer;
}

.testimonial2 .testi2 .owl-dots .owl-dot span {
  display: none;
} */

/* .testimonial2 .testi2 .owl-dots .owl-dot.active,
.testimonial2 .testi2 .owl-dots .owl-dot:hover {
  opacity: 1;
} */

@media (max-width: 767px) {
  .testimonial2 .testi2 .owl-dots {
    top: 0px;
  }
}

/* .testimonial2 .btn-md {
    padding: 18px 0px;
    width: 60px;
    height: 60px;
    font-size: 20px;
}

.testimonial2 .btn-danger {
    background: #ff8905 !important;
    border: 1px solid #ff8905 !important;
} */

/* Energy Meter Services */
/* ANIMATED BACKGROUND */
.phase-block {
    font-size: 1em;
    position: relative;
    margin: 0;
    padding: 1em;
    border: none;
    border-top: 1px solid rgba(34, 36, 38, .1);
    box-shadow: none;
     
}
.phase {
    font-size: 1em;
    overflow: hidden;
    padding: 5;
    border: none;
    border-radius: .28571429rem;
    box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
    margin-top:20px;
}

.carousel-indicators li {
    border-radius: 12px;
    width: 12px;
    height: 12px;
    background-color: #404040;
}
.carousel-indicators li {
    border-radius: 12px;
    width: 12px;
    height: 12px;
    background-color: #404040;
}
.carousel-indicators .active {
    background-color: white;
    max-width: 12px;
    margin: 0 3px;
    height: 12px;
}


/* 
.btn {
  margin-top: auto;
} */




  /* A grade Services */
  @media (max-width: 75em) {
    html {
      font-size: 56.25%;
    }
  }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%;
    }
  }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%;
    }
  }
  
.artboard {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    height: 100%;
    position: relative;
  }
  @media (max-width: 37.5em) {
    .artboard {
      padding: 1rem;
    }
  }
  
  .card {
    flex: initial;
    position: relative;
    height: 52rem;
    width: 48rem;
    -moz-perspective: 200rem;
    perspective: 200rem;
    margin: 2rem;
  }
  .card__side {
    height: 52rem;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    /* We don't want to see the back part of the element. */
    backface-visibility: hidden;
    /* We don't want to see the back part of the element. */
    border-radius: 3px;
    overflow: hidden;
    /* The image is overflowing the parent. */
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.15);
  }
  .card__side--front {
    background-image: linear-gradient(to right bottom, rgba(30, 11, 54, 0.65), rgba(202, 55, 130, 0.7)), url(https://cdn.spacetelescope.org/archives/images/screen/heic0406a.jpg);
  }
  .card__side--back {
    background-color: #fff;
    transform: rotateY(180deg);
  }
  .card:hover .card__side--back {
    transform: rotateY(0);
  }
  .card:hover .card__side--front {
    transform: rotateY(-180deg);
  }
  .card__theme {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 54%;
    width: 90%;
    text-align: center;
  }
  .card__theme-box {
    color: #fff;
    margin-bottom: 8rem;
  }
  .card__subject {
    font-family: "Inconsolata", monospace;
    letter-spacing: 0.8rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .card__title {
    font-family: "VT323", monospace;
    text-transform: uppercase;
    font-size: 6rem;
    font-weight: 100;
  }
  .card__cover {
    position: relative;
    background-size: cover;
    height: 14rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: linear-gradient(to top right, rgba(30, 11, 54, 0.65), rgba(202, 55, 130, 0.65)), url(https://cdn.spacetelescope.org/archives/images/screen/heic0406a.jpg);
  }
  .card__heading {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
  }
  .card__heading-span {
    font-family: "VT323", monospace;
    font-size: 4.2rem;
    font-weight: 300;
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    color: #fff;
  }
  .card__details {
    font-family: "Inconsolata", monospace;
    padding: 4rem 2rem;
  }
  .card__details ul {
    list-style: none;
    width: 80%;
    margin: 0 auto;
  }
  .card__details ul li {
    text-align: center;
    font-size: 1.8rem;
    padding: 1rem;
  }
  .card__details ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  @media only screen and (max-width: 37.5em), only screen and (hover: none) {
    .card {
      height: auto;
      border-radius: 3px;
      background-color: #fff;
      box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.15);
    }
    .card__side {
      height: auto;
      position: relative;
      box-shadow: none;
    }
    .card__side--front {
      clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    }
    .card__side--back {
      transform: rotateY(0);
    }
    .card:hover .card__side--front {
      transform: rotateY(0);
    }
    .card__details {
      padding: 3rem 2rem;
    }
    .card__theme {
      position: relative;
      top: 0;
      left: 0;
      transform: translate(0);
      width: 100%;
      padding: 5rem 4rem 1.5rem 4rem;
      text-align: right;
    }
    .card__theme-box {
      margin-bottom: 1.5rem;
    }
    .card__title {
      font-size: 4rem;
    }
  }

  
  
  /* Transformer Filteration Services */
 

.container .trans
{
    max-width: 300px;
    height: 215px;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s ease-in-out;
}
.container .trans:hover
{
    height: 450px;
}
.container .trans .imgContainer
{
    position: relative;
    width:250px;
    height:250px;
    top:-50px;
    left:10px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.container .trans .imgContainer img
{
    max-width: 100%;
    border-radius: 4px;
}
.container .trans .content
{
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color:#111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}
.container .trans:hover .content
{
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}

@media (max-width: 330px){
    .container .trans .imgContainer{
        left: -2px;
    }
}


/* Cable Services */

.chooseus-section{
    position: relative;
    background: #fff;
    padding: 50px 0px;
    min-height: 100vh;
  
  }
  
  .chooseus-section .sec-title{
    margin-bottom: 60px;
  }
  
  #video_block_01 .video-inner{
    position: relative;
    width: 100%;
    padding: 175px 0px 130px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
  }
  
  #video_block_01 .video-inner .pattern-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
  }
  
  #video_block_01 .video-inner .video-btn{
    position: relative;
    display: inline-block;
    width: 116px;
    height: 115px;
    line-height: 115px;
    text-align: center;
    margin-left: 40px;
    border-radius: 50%;
  }
  
  #video_block_01 .video-inner .video-btn .btn-bg{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 116px;
    height: 115px;
    background-repeat: no-repeat;
  }
  
  #video_block_01 .video-inner .video-btn a{
    position: relative;
    display: inline-block;
    width: 116px;
    height: 115px;
    border-radius: 50%;
    font-size: 24px;
      z-index: 1;
  }
  #video_block_01 .video-inner .video-btn a i {
      background: -webkit-linear-gradient(-45deg, #00bb6e, #0156d5 100%);
  }
  #video_block_01 .video-inner .video-btn a i{
    position: relative;
    color: transparent;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  #content_block_04 .content-box .single-item{
    position: relative;
  }
  
  #content_block_04 .content-box .single-item:first-child{
    padding-left: 190px;
    margin-bottom: 67px;
  }
  
  #content_block_04 .content-box .single-item:last-child{
    padding-right: 190px;
  }
  
  #content_block_04 .content-box .single-item .icon-box{
    position: absolute;
    top: 14px;
    width: 158px;
    height: 158px;
    line-height: 158px;
    text-align: center;
    font-size: 70px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
  }
  
  #content_block_04 .content-box .single-item .icon-box:before{
    position: absolute;
    content: '';
    background: #fbfbfb;
    width: 138px;
    height: 100%;
    left: 10px;
    border-radius: 10px;
  }
  
  #content_block_04 .content-box .single-item:first-child .icon-box:before{
    top: 10px;
  }
  
  #content_block_04 .content-box .single-item:last-child .icon-box:before{
    top: -10px;
  }
  
  #content_block_04 .content-box .single-item .icon-box i {
      background: -webkit-linear-gradient(-45deg, #e273ff, #504bff 100%);
      position: relative;
      color: transparent;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  #content_block_04 .content-box .single-item .icon-box .bg-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 158px;
    height: 158px;
    background-repeat: no-repeat;
  }
  
  #content_block_04 .content-box .single-item:first-child .icon-box{
    left: 0px;
  }
  
  #content_block_04 .content-box .single-item:last-child .icon-box{
    right: 0px;
  }
  
  #content_block_04 .content-box .single-item .box h4{
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 27px;
  }
  
  #content_block_04 .content-box .single-item .box h4:before{
    position: absolute;
    content: '';
    width: 55px;
    height: 2px;
    bottom: 0px;
  }
  
  #content_block_04 .content-box .single-item:first-child .box h4:before{
    left: 0px;
  }
  
  #content_block_04 .content-box .single-item:last-child .box h4:before{
    right: 0px;
  }
  
  #content_block_04 .content-box .single-item .box p{
    margin-bottom: 20px;
    line-height: 28px;
  }
  
  #content_block_04 .content-box .single-item .box a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Josefin Sans', Sans-serif;
    font-weight: 600;
    color: #040535;
  }
  
  #content_block_04 .content-box .single-item .box a:hover{
      color: #5167f9;
  }
  
  #content_block_04 .content-box .single-item:first-child .box a i{
    margin-right: 10px;
  }
  
  #content_block_04 .content-box .single-item:last-child .box a i{
    margin-left: 10px;
  }
  .rotate-me {
      animation-name: rotateme;
      animation-duration: 30s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      -webkit-animation-name: rotateme;
      -webkit-animation-duration: 30s;
      -webkit-animation-iteration-count: infinite;
      -webkit-animation-timing-function: linear;
      -moz-animation-name: rotateme;
      -moz-animation-duration: 30s;
      -moz-animation-iteration-count: infinite;
      -moz-animation-timing-function: linear;
      -ms-animation-name: rotateme;
      -ms-animation-duration: 30s;
      -ms-animation-iteration-count: infinite;
      -ms-animation-timing-function: linear;
      -o-animation-name: rotateme;
      -o-animation-duration: 30s;
      -o-animation-iteration-count: infinite;
      -o-animation-timing-function: linear;
  }
  
  
  @keyframes rotateme {
      from {
          transform: rotate(0deg);
      }
      to { 
          transform: rotate(-360deg);
      }
  }
  @-webkit-keyframes rotateme {
      from {
          -webkit-transform: rotate(0deg);
      }
      to { 
          -webkit-transform: rotate(-360deg);
      }
  }
  @-moz-keyframes rotateme {
      from {
          -moz-transform: rotate(0deg);
      }
      to { 
          -moz-transform: rotate(-360deg);
      }
  }
  @-o-keyframes rotateme {
      from {
          -o-transform: rotate(0deg);
      }
      to { 
          -o-transform: rotate(-360deg);
      }
  }
  .modal-body {
      padding-bottom: 56.25%;
      position: relative;
      height: 0;
      padding-top: 0;
      overflow: hidden;
  }
  
  .modal-body iframe, .modal-body object, .modal-body embed, .modal-body video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }
  
  button.close {
      position: absolute;
      right: -20px;
      top: -30px;
      border-radius: 50px;
      background: white;
      line-height: 1 !important;
      padding: 0px 6px 5px !important;
      opacity: 1;
  }

/* 1 phase Energy meter*/
.c2a1 {
  font-family: "Montserrat", sans-serif;
	color: #8d97ad;
  font-weight: 300;
	background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}

.c2a1 h1, .c2a1 h2, .c2a1 h3, .c2a1 h4, .c2a1 h5, .c2a1 h6 {
  color: #3e4555;
}

.c2a1 .op-8 {
	opacity: 0.8;
}

.c2a1 .font-weight-medium {
	font-weight: 500;
}

.c2a1 .btn-danger-gradiant {
  background: #ff4d7e;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff4d7e 0%, #ff6a5b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff4d7e), to(#ff6a5b));
  background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
}

 .c2a1 .btn-danger-gradiant:hover {
  background: #ff6a5b;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff6a5b 0%, #ff4d7e 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff6a5b), to(#ff4d7e));
  background: -webkit-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: -o-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}

.c2a1 .btn-md {
    padding: 15px 45px;
    font-size: 16px;
}
/* 110kv  */

.service-33 h1, .service-33 h2, .service-33 h3, .service-33 h4, .service-33 h5, .service-33 h6 {
  color: #3e4555;
}

.service-33 .badge {
	line-height: 14px;
}

.service-33 .badge-danger {
	background: #ff4d7e;
}

.service-33 .btn-danger {
	background-color: #ff4d7e !important;
	border-color: #ff4d7e !important;
}

.service-33 .wrap-service-33 .play-btn {
  position: relative;
}

.service-33 .wrap-service-33 .play-btn span.display-1 {
  font-weight: 500;
  opacity: 0.15;
}

.service-33 .wrap-service-33 .play-btn a {
  position: absolute;
  left: 40px;
  top: 20px;
  color: #263238;
  font-weight: 500;
}

.service-33 .wrap-service-33 .play-btn a span {
  -webkit-box-shadow: 2px 8px 20px rgba(255, 77, 126, 0.5);
  box-shadow: 2px 8px 20px rgba(255, 77, 126, 0.5);
}

.service-33 .wrap-service-33 .play-btn a:hover {
  color: #ff4d7e;
}

.service-33 a {
	text-decoration: none;
}

.service-33 .btn-md {
    padding: 18px 0px;
    width: 60px;
    height: 60px;
    font-size: 20px;
}

/* 33kV  */
/* .why_choose{ 
  width:100%; 
  margin: 0 0 50px; 
  font-family: "Heebo", sans-serif;
}
.why_choose_head{ 
  width:100%; 
  text-align:center; 
  padding:30px;
}
.why_choose_head h1{ 
  width:100%; 
  color: #000000; 
  text-align:center; 
  font-size:32px; 
  font-family: 'Raleway-Medium', sans-serif;
}
.why_choose_head h1 span{ 
  border-bottom: 2px solid #a2437e; 
} */
.text-down { 
  position:relative; 
  overflow:hidden;
}
.text-down img{ 
  width:100%; 
  height:200px;
}
.text-down .textbox { 
  width:100%; 
  height:300px; 
  position:absolute; 
  top:0; 
  left:0; 
  margin-top:-255px;
  -webkit-border-radius:50px; 
  -moz-border-radius:50px; 
  -ms-border-radius:50px; 
  border-radius:5px;
  background-color: #f59a2389; 
  -webkit-transition: all 0.7s ease; 
  transition: all 0.7s ease; 
}
.text-down:hover .textbox { 
  margin-top:0;
}
.details{ 
  width:100%; 
  padding: 30px 30px 0;  
  text-align:center; 
  color:#000; 
  font-size:16px;
  font-family: "Heebo", sans-serif;
  font-weight:bolder ;
}
.view-more{ 
  width:100%; 
  padding-top:0;  
  text-align:center; 
  color:#000; 
  font-size:20px;
  font-weight:bold;
}
.text { 
  text-align:center; 
  padding-top: 70px; 
  color:#000; 
  font-size:20px;
  font-family: "Heebo", sans-serif;
  font-weight:bolder ;

}
.top { 
  padding-top:10px;
}

/* Service New */
.section-services {
	font-family: "Poppins", sans-serif;
	background-color: #e6edf7;
	color: #202020;
	padding-top: 115px;
    padding-bottom: 120px;
}

.section-services .header-section {
	margin-bottom: 34px;
}

.section-services .header-section .title {
	position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
	font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: #ff8905;
    border-radius: 3px;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
    transform: translateX(30px);
	width: 10px;
	height: 3px;
	background-color: #2b7248;
    border-radius: 3px;
}

.section-services .header-section .description {
	font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
}

.section-services .single-service .content {
	position: relative;
	z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #ff8905;
    border: 6px solid #2b7248;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
	width: 100%;
	height: 100%;
	transform: none;
	border: 0;
	border-radius: 0;
	opacity: 1;
}

.section-services .single-service .icon {
	display: inline-block;
	margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #ff8905;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
	background-color: #fff;
	color: #ff8905;
}

.section-services .single-service .title {
    margin-bottom: 18px;
	font-weight: 700;
    font-size: 23px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
	color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
	color: #fff;
}

.section-services .single-service a {
	position: relative;
	font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
	color: #fff;
}

.section-services .single-service a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #ff8905;
	transition: background-color .3s;
}

.section-services .single-service:hover a:after {
	background-color: #fff;
}

.bg-footer{
  /* background-image: url(../img/bg-foot.png);
  background-repeat: no-repeat !important;
  background-size: 100% 108% !important; */

  background: linear-gradient(rgba(0, 0, 0, 86%), rgba(0, 0, 0, 54%)), url(../img/bg-foot3.png) center center no-repeat;
  background-size: 100% 108% !important; 
  
}

/* 3 phase */



aside {
  width: 30%;
  padding-left: 15px;
  margin-left: 15px;
  float: right;
  font-style: italic;
  background-color: lightgray;
}


/* hero */
.center{
  text-align: center;
}


/* 3  */
section {
  padding: 60px 0;
  min-height: 100vh;
}

/* a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a,
a:active,
a:focus {
  color: #6f6f6f;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
} */
img {
max-width: 100%;
height: auto;
}
.section_title {
margin-bottom: 40px;
}

.section_title h2 {
color: #333333;
font-size: 25px;
font-weight: 700;
letter-spacing: 1.8px;
text-transform: uppercase;
}

.brand_border .fa.fa-minus {
color: #fff;
font-size: 14px;


height: 2px;
background: #FF8905 none repeat scroll 0 0;
width: 100px;
}
.brand_border .fas.fa-handshake {
font-size: 14px;
color:#000000;
}


.section_title p {
color: #333333;
font-size: 14px;
line-height: 25px;
padding: 14px 0;
}

.choose_us .section_title {
margin-top: 45px;
}
#service .single_service {
padding: 32px;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
margin-bottom: 50px;
}

#service .single_service:hover{
box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);
}

#service .icon {
border: 1px solid 




#666;
border-radius: 5%;
color: #2b7248;
font-size: 35px;
line-height: 65px;
overflow: hidden;
text-align: center;
text-decoration: none;
width: 70px;
}

#service .single_service .single_service-left {
padding-right: 25px;
}

.single_service-heading {
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
color: #000;
}

.single_service-body p {
font-size: 13px;
line-height: 25px;
}

.single_service-left {
display: table-cell;
vertical-align: top;
}
.single_service-body {
color: #000;
display: table-cell;
vertical-align: top;
}
.hvr-curl-top-right {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
}
#service .single_service:hover {
background: #FF8905 none repeat scroll 0 0;
transition: .5s;
}

