@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;*/
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

input.form-control:focus,
textarea.form-control:focus {
    border: 0;
    box-shadow: none;
}

a,
a:hover{
    text-decoration: none !important;
}


:root {
    --primary-color: #DB4818; /*red*/
    --secondary-color: #046671; /*green*/
    --content-color: #4c4c4c;
    --heading-color: #1C2539;
    --light-grey-color: #7D7D7D ;
    --border-color:  #707070;

}

html{
    font-size: 15px;
}


body {
    line-height: 1;
    /*font-family: 'Red Hat Display', sans-serif;*/
     /*font-family: 'Montserrat', sans-serif;*/
    font-weight: 500;
    color: #1C2539;
    font-size: 15px;
}

p { 
    line-height: 26px;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--content-color);
}



.sec-padding{
    padding: 70px 0;
}


.section-header{
    position: relative;
    text-align: center;
    padding: 40px 0;
    max-width: 950px;
    margin: 0 auto;
}

.section-header h6 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1rem;
}


.section-header h2{
    
position: relative;
    
font-size: 2.5rem;
    
font-weight: 400;
    
max-width: 800px;
    
margin: 0 auto;
    
line-height: 1.4;
    
color: var(--heading-color);
}

.section-header h2 b {
    font-weight: 700;
}

.section-header h3{
    position: relative;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 auto;
    line-height: 1.4;
    padding-top: 10px;
    color: var(--content-color);
}


.section-header p{margin-top: 10px;font-size: 18px;line-height: 26px;}

.section-header h2 i {
    display: block;
}

/*header style start*/
.bs-header {
    background: white;
}

.bs-header .container {
    /*max-width: 95%;*/
}

.bs-header .navbar {
    background-color: transparent !important;
    padding: 20px 0;
}

.bs-header .navbar li {
    margin: 0 6px;
}

.bs-header .navbar li .nav-link{
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 6px;
    color: var(--heading-color);
}


.bs-header .navbar li .nav-link:before{
    content: "";
    width: 0;
    height: 3px;
    display: block;
    position: absolute;
    bottom: 4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width .5s ease;
}

 .bs-header .navbar li .nav-link:hover:before {
    width: 100%;
}

.h-contact {
    position: relative;
    /*min-width: 200px;*/
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.h-contact .icons {
    background: #f0f0f0;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 7px;
    margin-right: 10px;
    line-height: 50px;
    text-align: center;
    font-size: 19px;
    color: var(--secondary-color);
}

.h-contact .content-box {}

.h-contact .content-box p {
    font-size: 1rem;
    font-weight: 500;
}

.h-contact .content-box h3 {
    font-size: 1.2rem;
    padding-top: 6px;
    font-weight: 700;
}


.h-top-bar {
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
    background: #fbfbfb;
}

.h-social {
    display: flex;
    align-items: center;
    margin-left: auto;
    text-align: right;
    justify-content: end;
}

.h-social ul {
    display: flex;
    margin-left: 5px;
}

.h-social ul li {}

.h-social ul li a {
    padding: 15px 10px;
    display: inline-block;
    color: var(--content-color);
    font-size: 1rem;
}

.h-welcome {
    height: 100%;
    max-width: 300px;
    position: relative;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
}

.h-welcome:after {
    content: '';
    position: absolute;
    width: 60px;
    background: #fbfbfb;
    height: 100%;
    top: 0;
    right: -1px;
    transform: skewY(124deg);
    transform-origin: top right;
}

.h-welcome:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    left: -300px;
    background: var(--secondary-color);
}

.h-welcome p {
    color: #fff;
    font-size: 1rem;
}


/*navbar toggle menu animated cross*/

.navbar-toggler.anm-collapse {
  border: none;
  background: transparent !important;
}
.navbar-toggler.anm-collapse:hover {
  background: transparent !important;
}
.navbar-toggler.anm-collapse .icon-bar {
  width: 28px;
  transition: all 0.2s;
  background: #4b4949;
  display: block;
  margin: 6px 0;
  padding: 1px;
  border-radius: 10px;
}
.navbar-toggler.anm-collapse .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggler.anm-collapse .middle-bar {
  opacity: 0;
}
.navbar-toggler.anm-collapse .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggler.anm-collapse.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggler.anm-collapse.collapsed .middle-bar {
  opacity: 1;
}
.navbar-toggler.anm-collapse.collapsed .bottom-bar {
  transform: rotate(0);
}
.navbar-toggler.anm-collapse:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar-toggler.anm-collapse.collapsed {
    padding-left: 12px;
    border-color: rgba(0,0,0,.1);
}

.navbar-toggler.anm-collapse {
    padding-left: 17px;
    z-index: 99;
    border-color: rgba(0,0,0,0) !important;
}

/*header style start*/

/*slider css*/

/*slieder*/

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 680px;
}

.carousel-inner {
    width: 100%;
    display: inline-block;
    position: relative;
}
.carousel-inner {
    /* padding-top: 43.25%; */
    /* display: block; */
    /* content: ""; */
}
.carousel-item {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: skyblue;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.caption-class{
    background: linear-gradient(45deg, black, transparent);
}

.carousel-item  .caption {
       position: absolute;
    top: 30%;
    left: 10%;
    transform: none;
    max-width: 520px;
    /*z-index: 9;*/
    margin-top: 20px;
    text-align: left;
    padding: 12px;
}
.carousel-item  .caption h5 {
    color: #fff;
    font-size: 20px;
}

.carousel-item .caption h2 {
    font-size: 42px;
    line-height: initial;
    padding: 15px 0;
    color: #fff;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 30px;
    font-size: 17px;
    font-weight: 500;
}

.theme-btn-white {
    background: #fff;
    color: #000;
}










.theme-btn-white {
    position: relative;
    background: #fff;
    padding: 16px 26px;
    display: inline-block;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    transform: scale(1);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
    color: #000;
}

.theme-btn-white i {
    margin-right: 10px;
}

.theme-btn-white:hover {
    color: #fff;
    background: var(--secondary-color);
}



.theme-btn-white:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255,255,255,0.4);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.theme-btn-white:hover:after {
  width: 120%;
  background-color: rgba(255,255,255,0);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
}



/*theme-btn-orange*/

.theme-btn-orange {
    position: relative;
    background: var(--primary-color);
    padding: 16px 26px;
    display: inline-block;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    transform: scale(1);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
    color: #000;
}

.theme-btn-orange i {
    margin-right: 10px;
}

.theme-btn-orange:hover {
    color: #fff;
    background: var(--secondary-color);
}



.theme-btn-orange:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255,255,255,0.4);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.theme-btn-orange:hover:after {
  width: 120%;
  background-color: rgba(255,255,255,0);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
}












.theme-btn-orange {
    background: var(--primary-color);
    color: #fff;
}



.theme-btn-orange:hover {
    background: var(--secondary-color);
    color: #fff;
}




/*why choose*/

.why-choose{
    background-image: url(../../assets/images/bg-1.png);
    background-size: cover;
    position: relative;
}   

.why-choose .panel-box {
    background: white;
    padding: 15px;
    box-shadow: 1px 1px 11px 2px #0000000d;
    border-radius: 10px;
    min-height: 435px;
}

.why-choose .panel-box .image-box {
    width: 100%;
    height: 185px;
}

.why-choose .panel-box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.why-choose .panel-box .content-box {
    padding-top: 10px;
}

.why-choose .panel-box .content-box h4 {
    font-size: 1.2rem;
    padding: 10px 0;
}


/*how we*/

.how-we{
    position: relative;
    background-color: #f7f6f6;
}


.how-we:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 300px;
    background-image: url(../../assets/images/banner/1.png);
    top: 0;
    left: 0;
    right: 0;
}



.how-we .video-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}



.how-we .video-wrapper video {
        
border: 5px solid #fff;
        
box-shadow: 2px 14px 19px 2px #00000024;
    border-radius: 25px;
}





/*why choose*/

.why-choose{
    background-image: url(../../assets/images/bg-1.png);
    background-size: cover;
    position: relative;
}   

/*.why-choose .panel-box {
    background: white;
    padding: 15px;
    box-shadow: 1px 1px 11px 2px #0000000d;
    border-radius: 10px;
    min-height: 335px;
}*/

.why-choose .panel-box .image-box {
    width: 100%;
    height: 185px;
}

.why-choose .panel-box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.why-choose .panel-box .content-box {
    padding-top: 10px;
}

.why-choose .panel-box .content-box h4 {
    font-size: 1.2rem;
    padding: 10px 0;
}


/*how we*/

.how-we{
    position: relative;
    background-color: #f7f6f6;
}


.how-we:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 300px;
    background-image: url(../../assets/images/banner/our-process.png);
    top: 0;
    left: 0;
    right: 0;
    background-repeat:no-repeat;;
    background-position:center;
}



.how-we .video-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}



.how-we .video-wrapper video {
        
border: 5px solid #fff;
        
box-shadow: 2px 14px 19px 2px #00000024;
    border-radius: 25px;
}





/*testing css*/


/* Default slide */

.industry-slider .slick-next, .industry-slider .slick-prev{
  z-index: 5;
}
.industry-slider .slick-next{
  right: 0;
}
.industry-slider .slick-prev{
  left: 0;
}
.industry-slider .slick-next:before, .industry-slider .slick-prev:before{
  color: #000;
  font-size: 26px;
}

.industry-section .image-box {
    height: 300px;
}

.industry-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-section   .col .content{
     padding: 20px;
    background: var(--primary-color);
}


.industry-section   .col .content h3{
    font-size: 1.2rem;
    padding-bottom: 10px;
    color: #fff;
}


.industry-section   .col .content p{
  font-size: 1rem;
 color: #fff;
}

.industry-section .col.slick-slide {
    padding: 5px;
}


@media screen and (min-width: 1092px){
    
.industry-section .col .image-box {
    height: 100%;
}

.industry-slider .slick-slide{
  color: #FFF;
  height: 200px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}
.industry-slider .slick-slide,
.industry-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.industry-slider .slick-center,
.industry-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
  transform: scale(1.3);
  background-color: #000000;
}
.industry-slider .slick-current.slick-active{
  transform: scale(1.3);
  background-color: #000000;
}


.industry-section  .col {
    height: 325px !important;
    padding: 0;
    margin: 0;
    position: relative;
}

.industry-section   .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-section   .col .content {
    background: var(--primary-color);
    position: absolute;
    width: 60px;
    left: 0;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}




.industry-section   .col .content p {
    opacity: 0;
}


.industry-section   .content {
    display: block;
    background: red;
    z-index: 9999;
    position: absolute;
    width: 40px;
    transform: scale(1);
    left: 0;
    height: 100%;
}


 .industry-section   .content p {
    color: #fff;
    font-size: 14px;
    line-height: initial;
}


.industry-section   .slick-slide.slick-current {
    width: 100%;
    /*padding: 30px 0;*/
    background: transparent;
}

.industry-section   .slick-slide.slick-current .image-box{
    padding: 50px 0;
}


.industry-section   .slick-slide.slick-current p {
    opacity: 1;
}

.industry-section   .slick-current .content {
    width: 180px;
    text-align: center;
    padding: 15px;
    position: absolute;
    right: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 6px 10px #00000045;
}




.industry-section   .col .content h3 {
    position: absolute;
    white-space: nowrap;
    font-size: 22px;
    padding: 10px;
    transform: rotate(270deg);
    transform-origin: right;
    top: 52px;
    left: -155px;
    min-width: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-section   .col .content .power-h3{
    position: absolute;
    white-space: nowrap;
    font-size: 22px;
    padding: 10px;
    transform: rotate(270deg);
    transform-origin: right;
    top: 31px;
    left: -177px;
    min-width: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.industry-section   .slick-current{
   z-index: 999;
}

.industry-section   .slick-current .content h3 {
    position: relative;
    transform: none;
    left: inherit;
    min-width: auto;
    font-size: 14px;
    padding-top: 0;
    top: inherit;
}

.industry-section   .slick-current .content .power-h3 {
    position: relative;
    transform: none;
    left: inherit;
    min-width: auto;
    font-size: 14px;
    padding-top: 0;
    top: inherit;
}

.industry-section   .slick-current .content p{
    font-size: 12px;
}

.industry-section .slick-slide.slick-current ~ .slick-slide .content{
   right: 0;
   left: auto;
}


}


/*.being-best*/

.being-best{
       position: relative;
    background-image: url(https://www.koprex.in/assets/images/home-page-background-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.being-best:before {
    position: absolute;
    content: '';
    background: #00000096;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.being-best .container {
    position: relative;
}

.being-best h6 {
    font-size: 2.4rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
}

.being-best h6 span {
    color: var(--primary-color);
}

/*counter*/

.counter-section {
    position: relative;
    background-image: url(../../assets/images/shp2.png);
    background-size: 350px;
    background-repeat: no-repeat;
}



.counter-section .icon-box {
    background: white;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 2px dashed #DCDADA;
    margin: 0 auto;
    margin-bottom: 20px;
}

.counter-section .icon-box img {
    width: 70px;
}

.counter-section .counter-box h4 {
    padding: 10px;
    font-size: 2rem;
    font-weight: 900;
}

.counter-box {
    text-align: center;
    padding: 20px 0;
}

.counter-section .icon-box:hover {
    /*border-color: var(--primary-color);*/
        border-color: #B87333;

}

.meeting-section {
    position: relative;
    background-image: url(../../assets/images/bg-2.png);
    background-size: cover;
}






.meeting-section .inner-box {
    position: relative;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 1px 1px 8px #00000008;
    margin-bottom: 20px;
    transform: scale(1);
    transition: .2s ease-in-out;
    overflow: hidden;
}

.meeting-section .inner-box:before {
    content: '';
    background-image: url(../../assets/images/mshape.png);
    width: 157px;
    height: 112px;
    position: absolute;
    display: block;
    z-index: 9;
    bottom: -18px;
    right: -20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.meeting-section .inner-box h3 {
    font-size: 1.3rem;
    padding-bottom: 15px;
    font-weight: 700;
}

.meeting-section .inner-box:hover {
    transform: scale(1.04);
}

footer {
    background: #000;
    padding: 50px 0;
}

footer .widget {}

footer .widget h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    padding-bottom: 30px;
}

footer .widget ul li a, footer .widget p,footer p {
    color: #d3d3d3;
    font-size: 1rem;
}

footer .widget ul li a {
    padding: 8px 0;
    display: inline-block;
}


.iconz-round {
    width: 35px;
    height: 35px;
    background: #5F5F5F;
    border-radius: 100%;
    text-align: center;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #C5C5C5;
}


.iconz-round:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.social-ic-row {
    display: flex;
}

.social-ic-row li {
    margin-right: 10px;
}


.foot-address {}

.foot-address li {
    display: block;
    position: relative;
    padding-left: 48px;
    margin-bottom: 20px;
    min-height: 30px;
}

.foot-address li .icon-wrap {
    position: absolute;
    left: 0;
    top: 0;
}

.foot-address li:last-child {
    margin-bottom: 0;
}

.foot-address li p {
    line-height: 25px;
}

.foot-address p a {
    color: white !important;
}

footer .widget ul li a:hover {
    color: #fff;
}
.foot-address li p b {
    color: #fff;
    font-weight: 600;
}


@media screen and (min-width: 1100px){
    .widget.foot-2 {
        padding-left: 50px;
    }

    .meeting-section .container,
    .counter-section .container {
        padding: 0 100px;
    }

}


.copyright-row {
    background: #191919;
    padding: 10px;
    text-align: center;
}

.copyright-row p {
    font-size: 15px;
}

.newsletter-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.newsletter-wrap input[type="text"] {
    padding: 10px 15px;
    width: 100%;
    height: 45px;
    border: 0;
}

.n-btn {
    width: 55px;
    height: 45px;
    position: relative;
    border: 0;
    background: var(--primary-color);
    color: #fff;
}

.n-btn:hover {
    background: var(--secondary-color);
}


/*bread css*/

.plain-breadcrumb:after,
.plain-breadcrumb:before{
    display: none;
}



.bh-lg .bread-inner{
     min-height: 500px;
}


.bread-inner {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    position: relative;
    z-index: 3;
}

.breadcrumb-wrapper {
    position: relative;
    background: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bread-inner .left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.bread-inner .left h2 span {
    font-weight: 400;
}

.bread-inner .page-nav {
    background: #fff;
    padding: 14px 20px;
    border-radius: 25px;
}

.bread-inner .page-nav a {
    color: var(--primary-color);
}


.breadcrumb-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
}

.breadcrumb-wrapper:after {
    content: '';
    background-image: url(../../assets/images/bread-bg.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-size: inherit;
    left: 0;
}

.white-breadcrumb {
    background: #fff;
}

.white-breadcrumb:before,
.white-breadcrumb:after {
    display: none;
}

.white-breadcrumb .bread-inner .left h2 {
    color: #000;
}

.white-breadcrumb .page-nav {
    background: #000;
    color: #fff !important;
}

.white-breadcrumb .page-nav a {
    color: #fff;
}



/*about us*/
.about-section {
        background-image: url(../../assets/images/bg-1.png);
        background-repeat: no-repeat;
        background-size: cover;
}

.about-section .content-box {padding: 20px 50px;}

.about-section .content-box h6 {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 15px 0;
}

.about-section .content-box h2 {
    font-size: 2rem;
    font-weight: 400;
}

.about-section .content-box h2 b {
    font-weight: 700;
}

.about-section .content-box p {
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 28px;
}

.about-section .image-box {
    position: relative;
}

.about-section .image-box .v-btn {
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 20px;
    border-radius: 100%;
    color: #fff;
    border: 25px solid #fff;
    outline-offset: 15px;
    box-shadow: 1px 1px 20px #0000009e;
    position: absolute;
    bottom: 74px;
    right: 37%;
}





#aboutModal {}

#aboutModal .modal-content {
    background: transparent;
}

#aboutModal .modal-body {
    padding: 0;
}

#aboutModal .modal-body button.btn-close {
    position: absolute;
    top: -41px;
    right: 0;
    color: #fff !important;
    background-color: white;
    padding: 8px;
    border-radius: 100%;
    opacity: 0.7;
    background-size: 11px;
}

#aboutModal .modal-dialog {
    max-width: 600px;
}


.mission-section {}

.mission-section .inner-box {
    display: flex;
    flex-wrap: wrap;
}

.mission-section .inner-box .col {
  position: relative;
    min-height: 480px;
    display: flex;
    padding: 90px;
    overflow: hidden;
    min-width: 300px;
    flex: 1;
    max-width: 100%;
}



.mission-section .conent-box {
    position: relative;
}

.mission-section .conent-box h3 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    line-height: initial;
}

.mission-section .conent-box p {
    padding: 20px 0;
    color: #fff;
}

.mission-section .conent-box h3 b {
    font-weight: 800;
}

.mission-section .inner-box .col-right {
    align-items: flex-end;
    background: linear-gradient(45deg, #000809, #046671);
}

.mission-section .inner-box .col-right:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../../assets/images/banner/mission.png);
    top: 0;
    left: 0;
    opacity: 1;
    filter: saturate(0.5);
}


.mission-section .inner-box .col-left {
    background: linear-gradient(45deg, #561500, #db4818);
}

.mission-section .inner-box .col-left:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../../assets/images/banner/vision.png);
    top: 0;
    left: 0;
    opacity: 1;
}


.mission-section .inner-box .col-right:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 200px;
    background-image: url(../../assets/images/m-bg.png);
    top: -28px;
    right: 0;
    background-size: 100%;
    transform: scalex(-1) scaley(-1);
}


.mission-section .inner-box .col-left:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 200px;
    background-image: url(../../assets/images/m-bg.png);
    bottom: -28px;
    left: 0;
    background-size: 100%;
}

/*innovation-section*/


.innovation-section {
    background: linear-gradient(12deg, #e9e9e9, transparent);
}

.innovation-section .video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: -2px 7px 20px 9px #00000017;
}

.innovation-section .video-wrapper iframe {
}


/*team*/
.team-section {
    overflow: hidden;
}

.team-section .item-box {
        padding: 15px;
}

.team-section .item-box .image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 1px 1px 11px #0000004d;
    height: 350px;
}

.team-section .item-box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section .item-box .content-box {
    background: white;
    width: 80%;
    margin: 0 auto;
    position: relative;
    top: -35px;
    box-shadow: 0px 2px 17px #0000002b;
    padding: 18px 15px;
    border-radius: 20px;
    text-align: center;
}

.team-section .item-box .content-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.team-section .item-box .content-box h6 {
    color: var(--content-color);
}



/*esg-section*/

.esg-section .esg-inner {
    max-width: 900px;
    margin: 0 auto;
}

.esg-section .esg-inner .esg-head {
    text-align: center;
}

.esg-section .esg-inner .esg-head h2 {
    font-size: 3.3rem;
    font-weight: 700;
    letter-spacing: 5px;
}

.esg-section .esg-inner .esg-head h5 {
    padding-top: 15px;
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: initial;
}



.esg-section .esg-inner .esg-content {}

.esg-section .esg-inner .esg-content {
    padding: 20px 0;
    text-align: center;
}

.esg-section .esg-inner .esg-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
        line-height: initial;
}

.esg-section .esg-img {
    margin-top: -100px;
}

.esg-section .esg-inner .esg-content p {
    padding: 10px 0;
}

/*.ewaste-section */

.ewaste-section {
    position: relative;
    background-image: url('../../assets/images/e-waste.png');
        background-size: cover;
}

.ewaste-section .inner-wrapper {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.ewaste-section h3 {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.ewaste-section p {
    color: #fff;
}

.ewaste-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0;
    left: 0;
    right: 0;
}

/*process*/
.process-section .inner-box {
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.process-section .inner-box .image-box {}

.process-section .inner-box .image-box img {
    width: 220px;
    animation: updown 1s infinite  alternate;
}

.process-section .inner-box h2 {
    font-size: 10rem;
    position: absolute;
    top: 0;
    left: 50px;
    font-weight: 900;
    color: #ececec;
    z-index: -1;
    text-shadow: 2px 3px 0px #00000014;
}

.process-section .inner-box h5 {
    font-size: 1.2rem;
    line-height: initial;
    padding: 10px;
}


@keyframes updown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}


@keyframes mymove {
  
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
    20% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  54% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  82% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
 }


/*gallery*/

.gallery-section .gallery-inner {
    display: flex;
    flex-wrap: wrap;
}

.gallery-section .gallery-inner .img-gallery-magnific {
    min-width: 300px;
    flex: 1;
    max-width: 100%;
}


.gallery-section .magnific-img {
    width: 100%;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.gallery-section .magnific-img img {
    width: 100%;
}

.gallery-section .magnific-img i {
    position: absolute;
    left: 50%;
    top: 100%;
    font-size: 20px;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #0303033d;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #fff;
    border-radius: 100%;
    transition: .3s ease-in-out;
}

.gallery-section .magnific-img .overlay {
    background: #0000007d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s ease-in-out;
}

.gallery-section .gallery-inner .img-gallery-magnific:hover {}

.gallery-section .gallery-inner .img-gallery-magnific:hover .overlay {
    opacity: 1;
}

.gallery-section .gallery-inner .img-gallery-magnific:hover .overlay i {
    top: 50%;
}


/*contact wrapper */

.contact-wrapper {
    background: #F7F7F7;
}

.contact-section {}

.contact-section h3 {
    font-size: 45px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.contact-section h3 span {
    font-weight: 200;
    color: var(--primary-color);
}

.contact-section p {
    color: #858587;
    text-align: center;
    padding: 25px 0;
    max-width: 484px;
    margin: auto;
}


.contact-section .input-group {
    background: #fffffffc;
    padding: 7px 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #625e5e29;
    box-shadow: -3px 11px 20px #00000012;
    border: 1px solid #e5e5e5;
}

.contact-section .input-group .form-control {
    background: transparent;
    border: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    height: 45px;
}

.contact-section .input-group i {
    color: var(--primary-color);
}


.contact-section .input-sec {
    max-width: 900px;
    margin: 15px auto;
    margin-bottom: 40px;
}


.add-box {
    display: flex;
    padding: 20px;
    border-top: 1px solid #dfdfdf;
    margin-top: 60px;
}

.add-box .add-row {
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: flex-start;
    min-width: 300px;
    max-width: 100%;
    flex: 1;
}

.add-box .add-row i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #000000, #6f6f6f);
    border-radius: 100%;
    margin-right: 10px;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
}

.add-box .add-row .content-box {
    text-align: left;
    padding-left: 12px;
}

.add-box .add-row .content-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.add-box .add-row .content-box p {
    line-height: initial;
    margin-bottom: 8px;
    font-size: 1rem;
}

.add-box .add-row .content-box p a {
    word-break: break-all;
}

.add-box .add-row .content-box p b {
    font-weight: 700;
}




/*process-section*/

.process-section{
    position: relative;
}

.process-section .inner-wrapper{
    max-width: 700px;
    margin: 0 auto;
}

.process-tree .tree-row{
    display: flex;
    position: relative;
    justify-content: center;
    margin-bottom: 20px;
}

.process-tree .tree-row:nth-child(1){
    margin-bottom: 80px;
}

.process-tree .tree-row:nth-child(1) .tree-col {
    min-width: 210px;
}


.process-tree .tree-row  .tree-col {
      position: relative;
    margin: 10px;
    padding: 10px 30px;
    text-align: center;
    border: 2px solid #db4818;
    color: #000;
    border-radius: 40px;
    max-width: 400px;
    min-width: 400px;
    background: #fff;
    line-height: 26px;
}

.process-tree .tree-row:nth-child(1):after{
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #db4818;
    border-radius: 100%;
    bottom: -46px;
    transform: translate(-50%, 0px);
    left: calc(50% - 1px);
}


.process-tree .tree-row:nth-child(1):before {
    content: '';
    width: calc(100% - 238px);
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    bottom: -32px;
    border-top: 2px dashed #db4818;
}

.process-tree .tree-row  .tree-col:before {
    content: '';
    width: 5px;
    height: 50px;
    position: absolute;
    bottom: -50px;
    transform: translate(-50%, 0%);
    left: 50%;
    border-left: 2px dashed #db4818;
    z-index: -1;
}


.process-tree .tree-row:nth-child(2)  .tree-col:after {
    content: '';
    width: 5px;
    height: 50px;
    position: absolute;
    top: -50px;
    transform: translate(-50%, 0%);
    left: 50%;
    border-left: 2px dashed #db4818;
    z-index: -1;
}


.process-tree .tree-row:last-child .tree-col {
    background: #db4818;
    color: #fff;
}

.process-tree .tree-row:last-child .tree-col:before {
   display: none;
}


.tree ul {
  margin: 0 0 0 13em;
  padding: 0;
  list-style: none;
  color: #db4818;
  position: relative;
}
.tree:before, .tree ul:before {
  content: "";
  display: block;
  width: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 2px dashed;
  background: white;
  z-index: -1;
}
.tree li {
  font-weight: bold;
  line-height: 3em;
  margin: 0;
  padding: 1.5em 0 0 2em;
  position: relative;
  z-index: -1;
}
.tree li:before {
  border-top: 2px dashed;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin-top: 1em;
  position: absolute;
  top: 1.5em;
  width: 2em;
}
.tree li:last-child:before {
  background: white;
  bottom: 0;
  height: auto;
  top: 1.5em;
}
.tree > li:before {
  border-top: none !important;
}
.tree li div {
  border-radius: 25px;
  border: 2px solid #db4818;
  margin: 0;
  max-width: 300px;
  min-width: 210px;
  padding: 10px 20px;
  background: white;
  color: #000;
  font-weight: 500;
  text-align: center;
  line-height: 27px;
}

ul.tree {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
ul.tree:before {
  border-left: none;
}

.sticky {position: relative;
  top: 0px;
  width: 100%;
}

/*products*/
.product-section {
          background: #fafafa;
          position: relative;
              overflow: hidden;
      }

      .product-section.reverse-row {
          background: #fff;
      }

      .product-section:before {
          content: '';
          position: absolute;
          width: 400px;
          height: 100%;
          top: 0;
          background: linear-gradient(45deg, black, #026571);
      }

       .product-section:after {
          content: '';
          position: absolute;
          width: 271px;
          height: 200px;
          background-image: url(https://aimstorms.com/koprex-web/assets/images/m-bg.png);
          bottom: -46px;
          left: 0;
          background-size: 100%;
      }


       .product-section.reverse-row:before {
          content: '';
          position: absolute;
          width: 400px;
          height: 100%;
          top: 0;
          right: 0;
          background: linear-gradient(45deg, black, #dc4918);
      }

       .product-section.reverse-row:after {
          content: '';
          position: absolute;
          width: 271px;
          height: 200px;
          background-image: url(https://aimstorms.com/koprex-web/assets/images/m-bg.png);
          bottom: -46px;
          border-right: 0;
          background-size: 100%;
          right: 0;
          transform: scaleX(-1);
          left: auto;
      }

      .product-section .container {
          position: relative;
          z-index: 4;
      }

      .product-image-wrap {
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 11px 11px 1px #00000017;
          width: 90%;
      }

      .product-content-wrap {}

      .product-content-wrap h2 {
          font-size: 1.5rem;
          margin-bottom: 19px;
          text-transform: uppercase;
              font-weight: 700;
          
      }

      .product-content-wrap p {
          color: #000;
          margin-bottom: 10px;
          font-size: 1.1rem;
      }

      .product-content-wrap h4 {
            margin-bottom: 10px;
            padding: 10px 0;
            font-size: 1.3rem;
                font-weight: 600;
        }

        .product-content-wrap ol li {
            padding-bottom: 10px;
            line-height: initial;
            color: #262626;
            font-weight: 500;
        }

        .product-content-wrap ol {
            list-style-type: decimal;
            padding-left: 15px;
        }

        .product-content-wrap ul li {
            padding-bottom: 10px;
            line-height: initial;
            color: #262626;
            font-weight: 500;
        }

        .product-content-wrap ul {
            list-style-type: disc;
            padding-left: 15px;
        }

     


      @media screen and (max-width: 576px){
          .product-section:before{
            height: 180px !important;
          }

          .product-image-wrap{
            width: 100%;
          }

          .product-content-wrap {
              padding: 20px 20px ;
          }

          .product-image-wrap{
            box-shadow: none;
          }
          .product-content-wrap h2 {
              font-size: 1.3rem;
              margin-bottom: 15px;
          }
          .product-content-wrap p {
              color: #000;
              margin-bottom: 4px;
          }
          .quality-section .content-box{
             padding: 10px 20px;
          }

      }


      .quality-section {}

        .quality-section .image-box {
            /* box-shadow: 1px 1px 16px 1px #0000003b; */
            /* border: 13px solid #fff; */
            /* border-radius: 18px; */
        }

        .quality-section .image-box img {
            border-radius: 18px;
        }

        .quality-section  .content-box {
            padding: 20px;
        }

        .quality-section .content-box h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            line-height: initial;
        }


        @media screen and (max-width: 576px){
         
          .quality-section .content-box{
             padding: 10px 0px;
          }

          .add-box{
            flex-wrap: wrap;
          }

      }


        @media screen and (max-width: 768px){
         
        

          .add-box{
            flex-wrap: wrap;
          }

      }
      
      
      
      


/* @media screen and (max-width: 500px) {*/
           

/*.dropdown-submenu .dropdown-menu  {*/
/*display: none;*/
/*position: absolute;*/
/*left: 59%;*/
/*top: 45px;*/
/*}*/
  
/* }    */
      
      


@media screen and (min-width:  992px){
    
    .dropdown-menu li {
position: relative;
}
.dropdown-submenu .dropdown-menu  {
display: none;
position: absolute;
left: calc(100% + 2px); 
     top: -0.5rem;
}
.dropdown-menu .dropdown-submenu-left {
right: 100%;
left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
display: block;
}  
 .dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

    
}

 /*circle*/
 
 .holderCircle {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  margin: 60px auto;
  position: relative;
}

.dotCircle {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: 20;
}
.dotCircle .itemDot {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  background: #ffffff;
  color:#B87333;
  border-radius: 20px;
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  z-index: 3;
  cursor: pointer;
  border: 2px solid #e6e6e6;
}
.dotCircle .itemDot .forActive {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.dotCircle .itemDot .forActive::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 3px solid #B87333;
  bottom: -31px;
  left: -14px;
  filter: blur(1px);
  position: absolute;
  border-radius: 100%;
}
.dotCircle .itemDot .forActive::before {
  content: "";
  width: 6px;
  height: 6px;
  filter: blur(5px);
  top: -15px;
  position: absolute;
  transform: rotate(-45deg);
  border: 6px solid #B87333;
  right: -39px;
}
.dotCircle .itemDot.active .forActive {
  display: block;
}
.round {
  position: absolute;
  left: 40px;
  top: 45px;
  width: 410px;
  height: 410px;
  border: 2px dotted #a733bb;
  border-radius: 100%;
  -webkit-animation: rotation 100s infinite linear;
}
.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
  color: #ffffff;
  transition: 0.5s; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
  background: #B87333; /* Old browsers */
  background: -moz-linear-gradient(
    left,
    #7d4ac7 0%,
    #a733bb 100%
  );
   FF3.6-15 
  background: -webkit-linear-gradient(
    left,
    #7d4ac7 0%,
    #a733bb 100%
  ); 
   Chrome10-25,Safari5.1-6 
  background: linear-gradient(
    to right,
    #7d4ac7 0%,
    #a733bb 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ 
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
  /* IE6-9 */
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
-moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
}
.dotCircle .itemDot 
  font-size: 40px;
}
.contentCircle { 
  width: 250px;
  border-radius: 100%;
  color: #222222;
  position: relative;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*.contentCircle .CirItem {*/
/*  border-radius: 100%;*/
/*  color: #222222;*/
/*  position: absolute;*/
/*  text-align: center;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  opacity: 0;*/
/*  transform: scale(0);*/
/*  transition: 0.5s;*/
/*  font-size: 15px;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  top: 0;*/
/*  right: 0;*/
/*  margin: auto;*/
/*  line-height: 250px;*/
/*}*/

.contentCircle .CirItem {
  border-radius: 100%;
  color: #222222;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  font-size: 15px;
  width: 66%;
  height: 73%;
  top: 0;
  right: 0;
  margin: auto;
  line-height: 168px;
}



.CirItem.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition: 0.5s;
}
.contentCircle .CirItem i {
  font-size: 125px;
  position: absolute;
  top: 0;
  left: 55%;
  margin-left: -90px;
  color: #000000;
  opacity: 0.1;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  .holderCircle {
     width: 300px; height: 300px;
    margin: 110px auto;
  }
  .holderCircle::after {
    width: 100%;
    height: 100%;
  }
  .dotCircle {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
}
.title-box .title {
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  z-index: -1;
}
.title-box span {
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  font-weight: 800;
  color: #640178;
}
.title-box p {
  font-size: 17px;
  line-height: 2em;
}




/*gallery*/

.slide-company-img{
  width: 100%;
  height: auto;
  padding: 5px;
}

.slick-dots {
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
}
.slick-dots li.slick-active button {
  background-color: black;
}
.slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #999;
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li :hover {
  background-color: black;
}
/* Custom Arrow */
.prev {
  color: #999;
  position: absolute;
  top: 38%;
  left: -2em;
  font-size: 1.5em;
}
.prev :hover {
  cursor: pointer;
  color: black;
}
.next {
  color: #999;
  position: absolute;
  top: 38%;
  right: -2em;
  font-size: 1.5em;
}
.next :hover {
  cursor: pointer;
  color: black;
}
@media screen and (max-width: 800px) {
  .next {
    display: none !important;
  }
}
/*****************************/
     .icon-img{
  width:110px !important;
  position: absolute;
  top: 0;
  left: 55%;
  margin-left: -90px;
  color: #000000;
  opacity: 0.1;
      }
      
 .icon-img-main{
  width:44px !important;
  margin-top:12px;

      } 
      /***********************/

/*************product-page************************/

.cycle_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
    background-color:white;
}

.cycle_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #111111;
    text-align: center;
    font-weight: bold;
}

.cycle_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #242424;
    text-align: center;
    margin: 0px;
}
.cycle_section_2{
    width: 100%;
    float: left;
}
.box_main{
    width: 100%;
    float: left;
    position: relative;
}
.number_text {
    width: 50px;
    height: 50px;
    font-size: 18px;
    color: #ffffff;
    background-color: #325662;
    border-radius: 100px;
    text-align: center;
    padding: 10px 0px;
    float: right;
    margin-right: 140px;
    margin-top: 60px;
}
.image_2 {
    width: 100%;
    float: left;
    text-align: center;
    /*padding-left: 100px;*/
}

.quality-video{
    margin-top:136px;
}
.box_main:after{
    content: '';
    background-color: #f7c17b;
    position: absolute;
    width: 420px;
    right: 0px;
    top: 0px;
    margin: 0 auto;
    display: flex;
    height: 600px;
    left: 0;
    z-index: -1;
    clip-path: polygon(0 0, 75% 8%, 75% 80%, 0% 100%);

}
.cycles_text{
  
    float: left;
    font-size: 30px;
    color: #1c1c1c;
    font-weight: 600;
    /*text-align: right;*/
    padding-top: 118px;
}
/*.cycles_text:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 180px;*/
/*    height: 1px;*/
/*    background-color: #325662;*/
/*    left: 0px;*/
/*    right: initial;*/
/*    margin: 0 auto;*/
    /*top: 70px;*/
/*}*/
.lorem_text{
    width: 100%;
    float: left;
    font-size: 16px;
    color: #1c1c1c;
    margin: 0px; 
    padding-top: 40px;   
}

.btn_main{
    width: 100%;
    display: flex;
    padding-top: 50px;
}
.buy_bt{
    width: 170px;
    float: left;
}
.buy_bt a{
    width: 100%;
    float: left;
    font-size: 18px;
    color: #ffffff;
    background-color: #325662;
    padding: 8px 5px;
    text-align: center;
    font-weight: bold;
}
.buy_bt a:hover{
    color: #ffffff;
    background-color: #f7c17b;
}

.price_text {
    width: 100%;
    float: right;
    text-align: right;
    font-size: 20px;
    color: #222222;
    font-weight: bold;
    padding-top: 8px;
}
.cycle_section_3{
    width: 100%;
    float: left;
    
}
.box_main_3{
    width: 100%;
    float: left;
    position: relative;
}

.number_text_2 {
    width: 50px;
    height: 50px;
    font-size: 18px;
    color: #ffffff;
    background-color: #325662;
    border-radius: 100px;
    text-align: center;
    padding: 10px 0px;
    float: right;
    margin-right: 185px;
    margin-top: 60px;
}
.read_btn_main {
    width: 100%;
    float: left;
    margin-top: 200px;

}
.read_bt{
    width: 170px;
    margin: 0 auto;
    text-align: center;
}
.read_bt a{
    width: 100%;
    float: left;
    font-size: 18px;
    color: #ffffff;
    background-color: #f7c17b;
    padding: 8px 5px;
    text-align: center;
}
.read_bt a:hover{
    color: #ffffff;
    background-color: #325662;
    
}

/*.img-right{*/
/*    padding-right:100px;*/
/*}*/


@media (max-width: 575px){
.cycle_section_2 {
    padding-top: 0px;
}

.quality-video{
    margin-top:25px;
}

.number_text {
    margin-right: 50px;
}
.image_2 {
    padding-left: 20px;
}
.box_main::after {
    width: 90%;
    height: 100%;

}
.cycles_text {
    font-size: 26px;
    text-align:center;
}

.cycles_text::after {
    width: 120px;
    top: 60px;
}

.cycles_text {
    font-size: 26px;
}
.box_main_3 {
    margin-bottom: 30px;
}
.number_text_2 {
    margin-right: 75px;
    margin-top: 40px;
}

.image_2 {
    padding-left: 20px;
}
.box_main_3::after {
    width: 90%;
    height: 110%;
}
.img-right{
    padding-right:0px;
}


}


.img-hover {
  backface-visibility: hidden;
  transition: transform 0.5s ease-in-out;
}
.img-hover:hover {
  transform: scale(1.05);
}








.hover-effect::before {
    right: 0;
    opacity:0.7;
    top: 0;
}
.hover-effect::after {
    bottom: 0;
    opacity: 0.7;
    left: 0;
}


.hover-effect::before, .hover-effect::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s !important;
    -o-transition-duration: 1.3s;
  transition-duration: 1.3s !important;
}
.hover-effect:hover::after, .hover-effect:hover::before {
    height: 100%;
    opacity: 0;
    width: 100%;
}
  
/**********************************/
 /*product banner slider*/



.banner {
  width: 100%;
  overflow: hidden;
}

.bannerSlider {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.bannerSlider .slide {
  width: 100%;
  position: relative;
}

.bannerSlider .slide__image img {
  width: 100%;
  object-fit: cover;
}

.bannerSlider .slide__text {
  position: absolute;
  z-index: 100;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.bannerSlider .slide__text h2 {
  font-size: 48px;
  font-weight: 100;
  color: #fff;
}

.bannerSlider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transform: translateY(-50%);
}

.bannerSlider .slick-prev {
  background: url(https://cdn-icons-png.flaticon.com/512/271/271220.png);
  left: 20px;
}

.bannerSlider .slick-next {
  background: url(https://cdn-icons-png.flaticon.com/512/271/271228.png);
  right: 20px;
}




    /*************************/
    
    
   .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #aaa;*/
  /*margin: 20px 0;*/
  /*padding: 10px;*/
  width: 100%;
  min-height: 200px;
  /*border: 2px #ccc solid;*/
  color: #fff;
}
    
.logo-item-2{
       width:20%;
     margin: 0px 30px;
    }
    
    .box-add{
        margin-bottom:  60px; 
    }
    
    @media screen and (max-width: 1000px) {
 .logo-item{
      display: block;
  align-items: center;
  justify-content: center;
  align-items:center;
 }
 .logo-item-2{
       width:90%;

    }
}
    
         .kopex-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s;
            z-index:11111;
        }
        .kopex-popup-container {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            position: relative;
            max-width: 500px;
            text-align: center;
        }
        .kopex-popup-container img {
            max-width: 100%;
            border-radius: 5px;
        }
        .kopex-popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: red;
            color: white;
            border: none;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            font-size: 16px;
            cursor: pointer;
        }
        .kopex-popup-active {
            visibility: visible;
            opacity: 1;
        }   
    
    
/*.qodef-client-image-nolink{*/
/*  display: inline-block;*/
/*    vertical-align: middle;*/
/*    max-width: 100%;*/
/*    line-height: 0;*/
/*    -webkit-transition: opacity .15s ease-out;*/
/*    -moz-transition: opacity .15s ease-out;*/
/*    transition: opacity .15s ease-out;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/
/*.qodef-client-image {*/
/*  -webkit-transition: -webkit-transform .5s ease;*/
/*  transition: transform .5s ease;*/
/*}*/
/* .qodef-client-image {*/
/*  position: relative;*/
/*  display: block;*/
/*}*/
/* .qodef-client-hover-image {*/
/*  -webkit-transform: translateY(-100%);*/
/*  -moz-transform: translateY(-100%);*/
/*  transform: translateY(-100%);*/
/*}*/
/*.qodef-client-hover-image{*/
/*  transition: transform .5s ease;*/
/*}*/
/* .qodef-client-hover-image {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  display: block;*/
/*}*/
/* .qodef-client-image-nolink:hover .qodef-client-image{*/
/*      transform: translateY(100%);*/
/*       transition: transform .6s cubic-bezier(.19,.65,.02,.93); */
/*  }*/
/* .qodef-client-image-nolink:hover .qodef-client-hover-image{*/
/*  transform: translateY(0);*/
/*  transition: transform .6s cubic-bezier(.19,.65,.02,.93);*/
/* }*/
    
    
    
   
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
} 
    
    
  /*new changes  */
    
.koprex-counter{
    
  font-size: 40px;    
}   
    
    

    
 .koprex-Why-Choose-main{
     display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
     }   
    
    
.koprex-Why-Choose {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  float: left;
  font-size: 16px;
  margin: 10px 1%;
  max-width: 310px;
  min-width: 250px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
      height: 410px;
}

.koprex-Why-Choose * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.koprex-Why-Choose img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
}

.koprex-Why-Choose figcaption {
  padding: 25px 20px 25px;
  /*position: absolute;*/
    position: relative;
margin-top: 2px;
  bottom: 0;
  z-index: 1;
}

.koprex-Why-Choose figcaption:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #700877;
  content: '';
background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
opacity: 0.8;
  z-index: -1;
}

.koprex-Why-Choose .date {
  background-color: #fff;
  border-radius: 50%;
  color: #700877;
  font-size: 18px;
  font-weight: 700;
  min-height: 48px;
  min-width: 48px;
  padding: 10px 0;
  position: absolute;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  top: -25px;
}

.koprex-Why-Choose .date span {
  display: block;
  line-height: 14px;
}

.koprex-Why-Choose .date .month {
  font-size: 11px;
}

.koprex-Why-Choose h3,
.koprex-Why-Choose p {
  margin: 0;
  padding: 0;
}

.koprex-Why-Choose h3 {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 5px;
      color: #a96f6f;
}

.koprex-Why-Choose p {
  font-size: 0.8em;
  line-height: 1.6em;
  margin-bottom: 0px;
}

/*.koprex-Why-Choose a {*/
/*  left: 0;*/
/*  right: 0;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  position: absolute;*/
/*  z-index: 1;*/
/*}*/

.koprex-Why-Choose:hover img,
.koprex-Why-Choose.hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
    
.hidden {
  overflow: hidden;
  display: none;
  visibility: hidden;
}

.btn-gallery img {
  max-width: 300px;
  height: auto;
}    
 
 .widget-margin{
     margin-top:100px;
 }  
   
@media (max-width: 675px){
 .koprex-Why-Choose-main{
 flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
     } 
     
      .widget-margin{
     margin-top:10px;
 }  
   
}   
   
   
    