.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 55px;
    height: 55px;
    background-color: var(--whiteColor);
    color: var(--mainColor);
    border-radius: 100%;
    box-shadow: 0px 0px 0px 6px #f9f9f9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 3rem;
}

.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-prev:focus{
    outline: none;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--whiteColor);
    color: var(--mainColor);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -10rem;
}

.owl-carousel .owl-nav button.owl-next {
    right: -10rem;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--whiteColor);
    color: var(--mainColor);
}


.drive {
    /*background: url('../images/drive_your_background.png') center top no-repeat;*/
    /*background-size: 75%;*/
    padding-top: 13rem;
    /*padding-bottom: 10rem;*/
    margin-bottom: 5rem;
    position: relative;
}

.drive_bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.drive h3 {
    margin-bottom: 5rem;
}

.training_heading h2 span{
    display: block;
    color: #939393;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2;
}

.card {
    background-color: var(--whiteColor);
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 100%;
    padding:10px  2rem 10px;
    border: none;
    position: relative;
    border-bottom: 10px solid transparent;
}

.card-icon {
    margin-bottom: 2rem;
    text-align: center
}

.card-icon img {
    width: 75px !important;
    height: 75px !important;
}

#pt_list .card-icon img, #solution_list .card-icon img {
    display: inline-block;
}

#solution_list .card h4, #solution_list .card p{
    min-height: 5.4rem;
}


#pt_list h4{
    min-height: 5.4rem;
}

.card h3 {
    margin-bottom: 2rem;
}

.card p {
    font-size: 1.4rem;
    margin-bottom:6rem;
    /*display: none;*/
}

.plain_btn {
    width: 3rem;
    height: 3rem;
    border: 1px solid #e8e8e8;
    border-radius: 100%;
    display: block;
    position: absolute;
    right: 3rem;
    bottom: 2rem;
    cursor: pointer;
}

.card:hover .plain_btn,
.card.active .plain_btn{
    /*border: none;*/
    /*background: var(--violetColor);*/
}

.plain_btn:before {
    width: 15px;
    height: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: -217.5px 0;
}

.card:hover .plain_btn:before,
.card.active .plain_btn:before {
    width: 15px;
    height: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: -198px 0;
}

.card.active {
    box-shadow: 0 4px 2px rgba(0,0,0,0.5);
}

.card.active h4 {
    color: var(--violetColor);
}

.list {
    background: #fff;
    display: flex;
    padding: 0.5rem;
    margin: 0.5rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
}

.pt_list {
    margin-bottom: 10rem;
}

.pp-list {
    margin-bottom: 2rem;
}

.pp-list .list img {
    width: 60px;
    height: 60px;
}

.pp-all-list {
    margin-bottom: 5rem;
    display: none;
}

.list {
    border: 1px solid transparent;
    transition: 0.5s all ease;
}

.list:hover,
.list.active {
    border-color: var(--btnborderColor);
     color: var(--btnborderColor); 
}

.list span {
    margin-left: 1rem;
    text-align: left;
}

.list:hover span,
.list.active span {
    color: var(--violetColor);
    text-align: left;
}

.pp-list {
    margin-bottom: 20px;
}

#solutions .pp-list .list img {
    width: 100%;
    height: 100%;
}




/*------------animation---------*/
.round{
      width: 54rem;
      height: 54rem;
      background-color: #f0e8ff;
      border-radius: 100%;
      margin: 50px auto;
      animation-name: boxShadow;
      animation-duration: 1s;
      /*animation-fill-mode: backwards;*/
      animation-iteration-count: infinite;
      animation-delay: 0s;
      animation-timing-function: linear;
    }

    @keyframes boxShadow {
      0%{
        box-shadow: 0 0 0px 50px rgba(240,232,255,0.0), 0 0 0px 100px rgba(240,232,255,0.4), 0 0 0px 200px rgba(240,232,255,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(240,232,255,0.4), 0 0 0px 200px rgba(240,232,255,0.5), 0 0 0px 300px rgba(240,232,255,0.0);          
      }
    }
    
    .card.active#distribution-tab{
       border-color: #f0e8ff; 
    }
    
.round.retail-tab{
   animation-name: retail; 
   background-color: #e8ffea;
}

@keyframes retail {
      0%{
        box-shadow: 0 0 0px 50px rgba(232,255,234,0.0), 0 0 0px 100px rgba(232,255,234,0.4), 0 0 0px 200px rgba(232,255,234,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(232,255,234,0.4), 0 0 0px 200px rgba(232,255,234,0.5), 0 0 0px 300px rgba(232,255,234,0.0);          
      }
    }
    
 .card.active#retail-tab{
    border-color: #e8ffea;
}
    
.round.restaurant-tab{
   animation-name: restaurant; 
   background-color: #ffe8f2;
}
@keyframes restaurant{
      0%{
        box-shadow: 0 0 0px 50px rgba(255,232,242,0.0), 0 0 0px 100px rgba(255,232,242,0.4), 0 0 0px 200px rgba(255,232,242,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(255,232,242,0.4), 0 0 0px 200px rgba(255,232,242,0.5), 0 0 0px 300px rgba(255,232,242,0.0);          
      }
    }
.card.active#restaurant-tab{
    border-color: #ffe8f2;
}

.round.solutions-tab{
   animation-name: solutions; 
   background-color: #fff5e9;
}
@keyframes solutions {
      0%{
        box-shadow: 0 0 0px 50px rgba(255,245,233,0.0), 0 0 0px 100px rgba(255,245,233,0.4), 0 0 0px 200px rgba(255,245,233,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(255,245,233,0.4), 0 0 0px 200px rgba(255,245,233,0.5), 0 0 0px 300px rgba(255,245,233,0.0);          
      }
    }

.card.active#solutions-tab{
    border-color: #fff5e9;
}

.round.bizclimber-tab{
   animation-name: bizclimber; 
   background-color: #e9ecff;
}
@keyframes bizclimber {
      0%{
        box-shadow: 0 0 0px 50px rgba(233,236,255,0.0), 0 0 0px 100px rgba(233,236,255,0.4), 0 0 0px 200px rgba(233,236,255,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(233,236,255,0.4), 0 0 0px 200px rgba(233,236,255,0.5), 0 0 0px 300px rgba(233,236,255,0.0);          
      }
    }

.card.active#bizclimber-tab{
    border-color: #e9ecff;
}

.round.capital-tab{
   animation-name: capital; 
   background-color: #bfcc62;
}
@keyframes capital {
      0%{
        box-shadow: 0 0 0px 50px rgb(191,204,98,0.0), 0 0 0px 100px rgba(191,204,98,0.4), 0 0 0px 200px rgba(191,204,98,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(191,204,98,0.4), 0 0 0px 200px rgba(191,204,98,0.5), 0 0 0px 300px rgba(191,204,98,0.0);          
      }
    }

.card.active#capital-tab{
    border-color: #bfcc62;
}

.round.plumbing-tab{
   animation-name: plumbing; 
   background-color: #62ccbe;
}
@keyframes plumbing {
      0%{
        box-shadow: 0 0 0px 50px rgb(98, 204, 190,0.0), 0 0 0px 100px rgba(98, 204, 190,0.4), 0 0 0px 200px rgba(98, 204, 190,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(98, 204, 190,0.4), 0 0 0px 200px rgba(98, 204, 190,0.5), 0 0 0px 300px rgba(98, 204, 190,0.0);          
      }
    }

.card.active#plumbing-tab{
    border-color: #62ccbe;
}

.round.electronics-tab{
   animation-name: electronics; 
   background-color: #8ca1d2;
}
@keyframes electronics {
      0%{
        box-shadow: 0 0 0px 50px rgb(140, 161, 210,0.0), 0 0 0px 100px rgba(140, 161, 210,0.4), 0 0 0px 200px rgba(140, 161, 210,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(140, 161, 210,0.4), 0 0 0px 200px rgba(140, 161, 210,0.5), 0 0 0px 300px rgba(140, 161, 210,0.0);          
      }
    }

.card.active#electronics-tab{
    border-color: #8ca1d2;
}


.round.construction-tab{
   animation-name: construction; 
   background-color: #c88cd2;
}
@keyframes construction {
      0%{
        box-shadow: 0 0 0px 50px rgb(200, 140, 210,0.0), 0 0 0px 100px rgba(200, 140, 210,0.4), 0 0 0px 200px rgba(200, 140, 210,0.5);  
      }

      100%{
        box-shadow: 0 0 0px 100px rgba(200, 140, 210,0.4), 0 0 0px 200px rgba(200, 140, 210,0.5), 0 0 0px 300px rgba(200, 140, 210,0.0);          
      }
    }

.card.active#construction-tab{
    border-color: #c88cd2;
}


@media screen and (max-width: 1000px){
.drive{
    overflow-x:hidden;
}    

.owl-carousel .owl-nav button.owl-next {
    right: 0rem;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0rem;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 25px;
    height: 25px;
}
}
@media screen and (max-width: 767px){
.c_gov{
    padding-right: 15px;
    padding-left: 15px;
} 
}