@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Poppins:wght@100;200;300;400;500;600;700&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;
}


a,
a:hover{
    text-decoration: none !important;
}


body {
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #0e0e0f;
}

p {line-height: 27px;font-weight: 400;font-size: 15px !important;color: var(--content-color);letter-spacing: 0.5px;}


:root {
    --primary-color: #FF060B; /*red*/
    --secondary-color: #007344; /*green*/
    --content-color: #838080;
    --heading-color: #373737;

}



.theme-btn-red {
    position: relative;
    background: var(--primary-color);
    padding: 16px 26px;
    display: inline-block;
    border-radius: 30px;
    color: #fff;
    font-weight: 400;
    transform: scale(1);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
}

.theme-btn-red i {
    margin-right: 10px;
}

.theme-btn-red:hover {
    color: #fff;
    background: var(--secondary-color);
}



.theme-btn-red: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-red: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;
}

/*btn -2*/

.btn-border-white{
    position: relative;
    background: transparent;
    padding: 14px 26px;
    display: inline-block;
    border-radius: 30px;
    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;
    border: 2px solid #fff;
}

.btn-border-white i {
    margin-right: 10px;
}

.btn-border-white:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}




.btn-border-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;
}
.btn-border-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;
}



/*btn -3*/

.btn-border-black{
    position: relative;
    background: transparent;
    padding: 14px 26px;
    display: inline-block;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
    transform: scale(1);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
    border: 2px solid #000;
}

.btn-border-black i {
    margin-right: 10px;
}

.btn-border-black:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}




.btn-border-black: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;
}
.btn-border-black: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;
}



.sec-padding{
    padding: 70px 0;
}


.section-header{
    position: relative;
    text-align: center;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}


.section-header h2{
    
position: relative;
    
font-size: 34px;
    
font-weight: 600;
    
max-width: 800px;
    
margin: 0 auto;
    
line-height: 1.4;
    
color: var(--heading-color);
}


.section-header p{margin-top: 10px;font-size: 15px;line-height: 26px;text-align: center;font-weight: 300;}



/*header style start*/
.bs-header {
    background: white;
}

.bs-header .container {
    max-width: 95%;
}

.bs-header .navbar {
    background-color: transparent !important;
}

.bs-header .navbar li {
    margin: 0 6px;
}

.bs-header .navbar li .nav-link{
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 8px;
    color: var(--heading-color);
}


.bs-header .navbar li .nav-link:before{
    content: "";
    width: 0;
    height: 1px;
    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%;
}


.navbar-brand img {
    width: 220px;
    /*padding: 10px 0;*/
}

/*header style start*/

/*footer-start*/

footer {}

footer .foot-wrap {
    padding: 80px 10px;
    background: #0e0e0f;
    /* background-color: #007344; */
}

.footer-site {
    background: #151517;
    padding: 20px 0;
}

.footer-site .container {
    max-width: 95%;
}

.footer-site ul li {
    display: inline-block;
}

.footer-site ul li a {
    padding: 10px 8px;
    font-size: 13px;
    display: inline-block;
    color: #d7d7d8;
    font-weight: 400;
    text-transform: capitalize;
    transition: .3s ease-in-out;
}
.footer-site ul li a:hover {
    color: var(--primary-color);
}
.copyright-text {}

.copyright-text p {
    color: #d7d7d8;
    font-size: 13px;
    text-align: right;
    padding: 10px 0;
    line-height: inherit;
        font-weight: 400;
}

.stay-section {}

.stay-section h3 {
    font-size: 38px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.stay-section h3 span {
    font-weight: 200;
    color: var(--primary-color);
}

.stay-section p {
    color: #858587;
    text-align: center;
    padding: 25px 0;
    max-width: 484px;
    margin: auto;
}


.stay-section .input-group {
    background: #1b1b1d;
    padding: 7px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.stay-section .input-group .form-control {
    background: transparent;
    border: 0;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    height: 45px;
}

.stay-section .input-group i {
    color: var(--primary-color);
}


.stay-section .input-sec {
    max-width: 700px;
    margin: 15px auto;
    margin-bottom: 40px;
}





.social-icons ul {
    display: flex;
    padding: 10px 0;
    justify-content: flex-end;
}

.social-icons ul li {
    margin-left: 4px;
}
/*footer-end*/



/*why-section*/

.why-box {
    border: 1px solid #e2e3e7;
    padding: 20px;
    border-radius: 0px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 490px;
}


.why-box img {
    width: 80px;
}

.why-box: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;
}
.why-box:hover:after {
  width: 150%;
  background-color: rgba(255,255,255,0);
        -webkit-transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
}


.why-box i {
    font-size: 40px;
    color: var(--primary-color);
}

.why-box h3 {
    font-size: 19px;
    font-weight: 500;
    padding: 17px 0;
    line-height: initial;
}

.why-box p {
    font-size: 14px;
    font-weight: 300;
}

.why-box:hover {
    background: var(--primary-color);
}

.why-box:hover i,.why-box:hover h3,.why-box:hover p {
    color: #fff;
}

/*inovation*/

 .innovatin-section .fullimage {
    /* min-height: 590px; */
    min-height: 300px;
    background-size: cover;
}

.innovatin-section .fulltext {
    background: #0e0e0f;
}

.innovatin-section .fulltext .info {
    max-width: initial;
    padding: 60px;
}

.innovatin-section .fulltext h3 {
    color: #fff;
    font-size: 34px;
    letter-spacing: 0px;
    margin-bottom: -10px;
    word-spacing: -2.5px;
    line-height: 49px;
}

.innovatin-section .fulltext .info p {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 42px;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 992px){
     .innovatin-section .fullimage,
     .innovatin-section .fulltext {
        flex: 0 0 100%;
        max-width: 100%;
    }


}

/*serve-section*/

.serve-section {
    overflow: hidden;
}

.horizontal-tabs {}

.horizontal-tabs li.nav-item {
    margin: 0;
    margin-right: 10px;
}

.horizontal-tabs .nav-link.active {
    color: var(--primary-color);
    transition: .4s ease;
    border-bottom: 0;
    border: 0;
}

.horizontal-tabs .nav-link {
    position: relative;
    padding: 12px 10px;
    border-bottom: 2px solid #fff;
    color: #525252;
    border-radius: 2px;
    transition: .4s ease;
    font-size: 16px;
    border: 0;
    font-weight: 600;
}


.horizontal-tabs .nav-link:before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    background-color: #000;
    transition: width .5s ease;
}

.horizontal-tabs .nav-link:hover:before {
    width: 100%;
}

.horizontal-tabs ul.nav.nav-tabs {
    border: 0;
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
}

.horizontal-tabs .nav-link.active::before {
    width: 100%;
    background-color: #000;
}

.horizontal-tabs .nav-link:hover {
    color: var(--primary-color);
}


/*gallery-wrapper*/

.gallery-wrapper{}

.gallery-wrapper .image-box{
    position: relative;
    margin-top: -2px;
     height: auto; 
    padding: 5px;
}

.gallery-wrapper .image-box:hover .content-overlay{
    opacity: 1;
}

.gallery-wrapper .image-box:hover .content-box{
   transform: translateY(-50%);
}

.gallery-wrapper .image-box .content-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(209deg, #f44336, #360303ba);
    transition: opacity .5s ease;
    text-align: left!important;
    opacity: 0;
    margin-top: -1px;
}

.gallery-wrapper .image-box .content-box{
    transition: all .5s ease;
    width: 100%;
    bottom: 19px;
    padding: 0 20px;
    position: absolute;
}


.gallery-wrapper .image-box .content-box h3{

    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
}


.gallery-wrapper .image-box .content-box h4{

color: #fff;

margin-top: 10px;

font-size: 25px;
}

.gallery-wrapper .row [class*="col-"] {
    padding: 0;
}

.youtube-wrapper {
    position: relative;
}
.youtube{
    margin-bottom:80px;
}


/*testimonial*/


.testimonial-section {
    background-image: url(assets/images/testimonial.jpg);
}

.testimonial-section .text-box {
    padding: 40px;
    text-align: center;
}

.testimonial-section .text-box p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: 300;
    position: relative;
}

.testimonial-section .text-box h4 {
    font-size: 16px;
    margin-top: 80px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}

section.testimonial-section .slick-dots li.slick-active button:before {color: var(--primary-color);}


.testimonial-section .section-header h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center !important;
}

.testimonial-section .section-header p {
    color: #fff;
    font-weight: 300;
    text-align: center !important;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
}

.testimonial-section .text-box p:before {
    content: '';
    width: 30px;
    background: var(--primary-color);
    height: 3px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform:
    translate(-50%, -50%);
}

/*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 {
    position: absolute;
    top: 10%;
    left: 10%;
    transform: none;
    width: 60%;
    z-index: 9;
    margin-top: 20px;
    text-align: left;
    background: linear-gradient(45deg, black, #73737300);
    padding: 12px;
}
.caption h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: capitalize;
 
}
.caption h2 {
  color: var(--primary-color);
  font-size: 42px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: -5px;
}
a.big-button {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    background: #eb7a00;
    background: rgba(255, 0, 0, 0.75);
    padding: 28px 35px;
    border-radius: 3px;
    margin-top: 80px;
    margin-bottom: 0;
    display: inline-block;
}
a.big-button:hover {
    text-decoration: none;
    background: rgba(255, 0, 0, 0.9);
}
a.view-demo {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    display: inline-block;
    margin-top: 35px;
}
a.view-demo:hover {
    text-decoration: none;
    color: #333;
}

.carousel-indicators .active {
  background: #fff;
}
.carousel-indicators li {
  background: rgba(255, 255, 255, 0.4);
  /*border-top: 20px solid;*/
  z-index: 15;
}

.caption.cap-center {
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}



/*breadcrumb css*/

.breadcrumb-section{
    position: relative;
    background-image: url(https://images.pexels.com/photos/904276/pexels-photo-904276.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    /* background-size: cover; */
    background-position: center;
    /* background-attachment: fixed; */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 500px;
        background-size: cover;
}

.breadcrumb-section:before{
    
}

.breadcrumb-section .col{
  min-height: 513px;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 70px 0;
}

.breadcrumb-section .col h2 {
    font-size: 30px;
    padding-top: 40px;
    color: #fff;
    text-shadow: 2px 3px 12px #000;
    font-style: normal;
    font-weight: 400;
    background: linear-gradient(45deg, black, transparent);
    padding: 0;
    min-width: 300px;
    padding: 10px;

}

.breadcrumb-section:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    background: linear-gradient(45deg, #00000061, transparent);
}   


.value-section {
    position: relative;
}

.value-section .col {
    min-width: 320px;
    flex: 1;
    max-width: 100%;
}

.value-section .box {
    padding: 10px 0;
    text-align: center;
}

.value-section .box img {
    width: 80px;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    transition: .3s ease-in-out;
    top: 0;
}

.value-section .box h3 {
    margin: 10px 0;
        font-size: 18px;
    line-height: initial;
}

.value-section .box p {
    font-size: 13px;
    line-height: initial;
}

.value-section .box:hover img {
    top: -15px;
}


.slick-prev {
  left: 0;
  background: url("https://www.arvind.com/sites/all/themes/arvind/images/arrowwhite.png") 0
    0 / 100% no-repeat;
  z-index: 9;
  background-position-x: 9px;
}
.slick-next {
  right: 0;
  background: url("https://www.arvind.com/sites/all/themes/arvind/images/arrowwhite.png") 0 0 / 100% no-repeat;
  background-position: -21px;
}

.slick-disabled {
  opacity: 0.2;
}


.slick-prev:before,
.slick-next:before
 {
    display: none;
}


.no-arrow .slick-arrow {
    display: none !important;
    background: none;
}

.slick-prev, .slick-next {
    width: 30px;
    height: 40px;
    background-size: cover;
}


.team-section {
    position: relative;
}

.team-section .content-box {
    margin: 10px;
    min-height: 400px;
    background-size: cover;
    position: relative;
    transform: scale(1);
    transition: .3s ease-in-out;
    background-repeat: no-repeat;
}

.team-section .content-box .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    /*background: linear-gradient(45deg, #00000099, transparent);*/
    width: 100%;
    height: 100%;
    transition: opacity .5s ease;
    opacity: 1;
}

.team-section .content-box .content-overlay .text-box {
    position: absolute;
    bottom: 11px;
    width: 100%;
    padding: 12px 24px;
    transition: .3s ease-in-out;
}

.team-section .content-box .content-overlay .text-box h3 {
   color: #fff;
    font-weight: 300;
    font-size: 18px;
    text-align: center;
    background: linear-gradient(45deg, black, transparent);
    padding: 10px;
}

.team-section .content-box:hover {}


.team-section .content-box:hover > .content-overlay .text-box {
    bottom: 60px;
}

.team-section .content-box:hover {
    transform: scale(1.1);
}

.team-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 60%;
    background: linear-gradient(45deg, black, var(--primary-color));
    top: 0;
    left: 0;
}

.team-section .section-header  h2, 
.team-section .section-header p {
    color: #fff;
}


/*.event-slide*/

.event-slide {}

.event-slide .content-box {
    padding: 0 3px;
    /*padding-top: 40px;*/
}

.event-slide .slick-slide.slick-current.slick-active img {
    padding-top: 0;
    -webkit-transform-style: preserve-3d;
}

.event-slide .slick-slide img {
    padding-top: 50px;
    transition: all .5s ease-in-out;
    -webkit-transform-style: preserve-3d;
    /*height: 430px;*/
    height: 100%;
    width: 100%;
        transition: all 0.9s ease-in-out;
}


.event-slide ul.slick-dots {
    color: #c8c8c8;
    bottom: -50px;
}

.event-slide .slick-dots li button:before {
    color: #000000;
    opacity: 0.9;
}

.event-slide .slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.event-section .section-header {
       z-index: 99;
       position: absolute;
       top: 0;
       left: 298px;
       background: white;
       padding: 0;
}

.event-section div{
        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;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
}

.event-section .section-header h2 {
    font-weight: 300;
    font-size: 30px;
}

.slide-arr-left {
    position: absolute;
    top: 0;
    right: 32px;
}

.slide-arr-right {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
}

.slide-arr-right,.slide-arr-left {
    background: var(--primary-color);
    padding: 6px 8px;
    color: #fff;
    z-index: 99;
    top: 14px;
}

section.vision-section {}

section.vision-section .m-box {
    padding: 100px;
}

section.vision-section .m-box h3 {
    font-size: 68px;
    margin-bottom: 30px;
}

section.vision-section .m-box p {}

.our-vision.m-box {
}





.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: #f6f6f654;
    padding: 7px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #625e5e29;
    box-shadow: -3px 11px 20px #00000012;
    border: 1px solid #e6e6e6;
}

.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, #e9dbdb, #ff060b);
    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: 16px;
    margin-bottom: 10px;
}

.add-box .add-row .content-box p {
    line-height: initial;
    margin-bottom: 8px;
}

section.msg-section {}

/* .msg-section .col {
    height: 600px;
    background-size: cover;
    background-attachment: fixed;
} */

.msg-section .col {
    min-height: 690px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    display: flex;
}

.msg-section .col .content-box {
    margin-left: 25px;
    max-width: 600px;
    margin-top: 22px;
    padding: 8px;
}

.msg-section .col .content-box h3 {}

.msg-section .col .content-box p {
    font-size: 17px;
    color: rgb(255 255 255);
    line-height: initial;
    /* background: linear-gradient(-17deg, black, #73737300); */
}

.msg-section .col .content-box h6 {
    color: #fff;
    margin-top: 20px;
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(45deg, black, transparent);
    padding: 11px;
}


.esg-box {
    height: 500px;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
}

.esg-box .content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    width: 90%;
    height: 90%;
    transition: opacity .5s ease;
    transform:
    translate(-50%, -50%);
    opacity: 0;
}

.esg-box .content-overlay h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 130px;
    transform: translate(-50%, -50%) scale(0.7);
    color: #fff;
    transition: .5s ease-in-out;
}

.esg-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: .3s ease;
}

.esg-box:hover img {
    transform: scale(1.2);
}

.esg-box:hover .content-overlay {
    opacity: 0.7;
}

.esg-box:hover .content-overlay h3 {
    scale: 1.5;
}

.esg-box:hover .content-overlay h2 {
    transform: translate(-50%, -50%) scale(1.7);
    transition: .5s ease-in-out;
    opacity: 1;
}

.esg-box .content-overlay:before {
    content: '';
    position: absolute;
    top: -3%;
    left: -3%;
    width: 106%;
    height: 106%;
    border: 4px solid white;
}

.esg-box .text-title h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 130px;
    transform: translate(-50%, -50%) scale(0.7);
    color: #fff;
    transition: .5s ease-in-out;
    opacity: 0;
}


.esg-box:hover .text-title h2 {
    transform: translate(-50%, -50%) scale(1.7);
    transition: .5s ease-in-out;
    opacity: 1;
}


.sustain-section {
    background: whitesmoke;
}
/* 
.gif-area {
    text-align: center;
    
} */




/*product*/

.product-setion {}

.product-setion .product-box {
    position: relative;
}

.product-setion .imge-box {
    width: 100%;
    height: 300px;
}

.product-setion .imge-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    padding-left: 50px;
    padding-bottom: 50px;
}

.product-setion .content-box {
    background: linear-gradient(45deg, #3d0202d1, #f44336);
    max-width: 70%;
    padding: 25px;
    position: absolute;
    bottom: 0;
}

.product-setion .content-box p {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.prouct-box-text {}

.prouct-box-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.prouct-box-text ul {
    padding-left: 15px;
}

.prouct-box-text ul li {
    list-style-type: disc;
    font-size: 13px;
    line-height: initial;
    margin-bottom: 10px;
    color: var(--content-color);
    font-weight: 400;
}

.prouct-box-img {
    position: relative;
    top: -85px;
}

.pro-tile {
    /*background: linear-gradient(45deg, #ffdede96, transparent);*/
        background: linear-gradient(45deg, #3bac0396, transparent);
    display: block;
    padding: 10px;
    width: 100%;
    padding: 30px 70px;
}

.pro-tile h3 {
    font-size: 34px;
    font-weight: 600;
}



.insta-sec {
    position: relative;
}

section.insta-sec:before {
    content: '';
    position: absolute;
    background: linear-gradient(176deg, black, transparent);
    width: 100%;
    height: 40%;
    background: rgb(88,81,216);
    background: linear-gradient(188deg, rgba(88,81,216,1) 0%, rgba(131,58,180,1) 26%, rgba(193,53,132,1) 71%, rgba(225,48,108,1) 100%);
}

.insta-sec .card-box {
    height: 300px;
    position: relative;
    background: white;
    padding: 5px;
    box-shadow: 1px 1px 19px #00000038;
    border-radius: 4px;
}

.insta-sec .card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.insta-sec .card-box .content-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, black, transparent);
    left: 0;
    border-radius: 4px;
    transition: opacity .5s ease;
    opacity: 0;
}

.insta-sec .card-box:hover .content-overlay {
    opacity: 0.3;
}

.insta-sec .card-box .text-title {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .5s ease;
    width: max-content;
 
}

.insta-sec .card-box:hover .text-title {
    opacity: 1;
    /* transform: translate(-50%, -50%); */
    top: 50%;
   
}

.insta-sec .card-box .text-title a {
    background: #fff;
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 13px;
    color: #000;
    padding-left: 4px;
}

.insta-sec .card-box .text-title a i {
    background: linear-gradient(45deg, #b3378f, red);
    padding: 7px;
    border-radius: 1100%;
    display: inline-flex;
    color: #fff;
    margin-right: 3px;
}

.release-section {
    background: whitesmoke;
}

.release-section img.card-img-top {
    height: 160px;
    object-fit: cover;
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

/*.gallery-wrapper .image-box img {
    height: 100%;
    object-fit: cover;
}*/

.fa-bars{
    font-size: 28px;
}




/* *********************************************************8 */
/* **************Artical end*************************** */
.section-part {
    text-align: center;
    margin-top: 20px;
  }
  .section-part h1 {
    font-size: 40px;
    font-weight: bold;
    word-spacing: 5px;
    color: rgb(10, 29, 201);
    margin-bottom: 10px;
  }
  .section-part p {
    font-size: 23px;
    margin-top: 10px;
    width: 45%;
    margin: auto;
    box-sizing: border-box;
    line-height: 1.2;
    word-spacing: 3px;
  }
  .null-2 {
    width: 100px;
    height: 5px;
    background-color: gray;
    margin: auto;
    margin-top: 10px;
    border-radius: 5px;
  }
  /* ****************************************** */
  .section-area {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
  .area-1 {
    text-align: center;
    background-color: rgb(239, 239, 248);
    border: 2px solid white;
    width: 18%;
    margin-top: 10px;
    /* height: 100px;
     z-index: -100; */
  }
  
  .area-1 #fixed {
    background-color: blue;
    color: rgb(240, 226, 226);
    font-size: 100px;
    margin-top: 20px;
    padding: 20px;
    width: 100%;
  }
  
  .part-1 {
    text-align: center;
    background-color: rgb(241, 241, 251);
    border: 2px solid rgb(242, 235, 235);
    width: 100%;
  }
  .part-1 h3 {
    margin-top: 10px;
  }
  .part-1 p {
    word-spacing: 2px;
    line-height: 1.2;
  }
  @media only screen and (max-width: 1150px) {
    .section-area {
      display: block;
      margin: auto;
      width: 40%;
      margin-top: 20px;
    }
    .area-1 {
      width: 100%;
    }
    #fixed {
      font-size: 70px;
    }
  }
  
  @media only screen and (max-width: 360px) {
    .button {
      width: 218px;
      margin: 2px;
    }
  }

/* ********************icons************************* */
  .icon{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .icon-1{
width: 50%;
align-items: center;
  }
  .icon-3{
    display: flex;
    justify-content: center;


  }
 
  .icon-3 li a {
    width: 36px;
    /* height: 80px; */
    background-color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    margin: 0 5px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
  }
  
  .icon-3 li a .icons {
    position: relative;
    color: #262626;
    transition: .5s;
    z-index: 3;
  }
  
  .icon-3 li a:hover .icons {
    color: #fff;
    transform: rotateY(360deg);
  }
  
  .icon-3 li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
  }
  
  .icon-3 li a:hover:before {
    top: 0;
  }
  
  u.icon-3 li:nth-child(1) a:before{
    background: #dd4b39;
  }
  
  .icon-3 li:nth-child(2) a:before{
    background: #dd4b39;
  }
  
  .icon-3 li:nth-child(3) a:before {
    background:#dd4b39 ;
  }
  
  .icon-3 li:nth-child(4) a:before {
    background: #dd4b39;
  }
  .iss-television{
  
  }

  @media screen and (min-width: 1099px){
    header.bs-header.fixed {
        position: fixed;
        width: 100%;
        background: white;
        box-shadow: 1px 1px 20px #0000001a;
        z-index: 1;
       animation: fadeInDown .5s ease-in-out both;;
    }
  }

  @keyframes fadeInDown{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
  }

  @media screen and (max-width:  576px){
    .bs-header .navbar{
        padding: 0;
    }
  }

  .industries-serve {}

.industries-serve .slide-arr-right, .industries-serve  .slide-arr-left {
    top: inherit;
    bottom: -50px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    background: #000;
}

.industries-serve .slide-arr-left {
    right: 37px;
}

.industries-serve .slide-arr-right {
    right: 0;
}

.video-section {}

.video-section .section-header h2 {
    font-size: 24px;
    line-height: initial;
    font-weight: 500;
}

.aboutpg-section {
    background: #f8f8f8;
    padding: 40px 0;
    /* background: linear-gradient(181deg, #f5eeee, transparent); */
}

.esg-text {
    padding: 40px 0;
    margin: 0 auto;
    padding-top: 0;
}

.esg-text h4 {
    font-size: 16px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #282727, transparent);
    color: #fff;
    padding: 15px;
    font-weight: 400;
    line-height: initial;
    /*border-top-left-radius: 10px;*/
}

.esg-text p {}

.esg-text ul {
    list-style-type: disc;
    padding-left: 15px;
    margin-top: 20px;
}

.esg-text ul li {
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
    line-height: initial;
}


.product-setion.product-new {}

.product-setion.product-new .pro-tile {
    padding: 20px 30px;
    border-top-left-radius: 20px;
}

.product-setion.product-new .pro-tile h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: initial;
}

.product-new .product-box:hover img {
    padding-left: 0;
}


.product-new .product-box img {
    transition: .3s;
}

.event-section.event-reverse {
    transform: scaleX(-1);
}

.event-section.event-reverse .section-header h2 {
    transform: scaleX(-1);
}
.product-setion.product-new .section-header h2 {
    font-size: 25px;
    font-weight: 500;
    margin: 20px auto;
    margin-top: 0;
}

.add-box .add-row .content-box p a {
    word-break: break-all;
}

/***********on load-page popup***************************/
/*#overlay {*/
/*position: fixed;*/
/*top: 0;*/
/*left: 0;*/
/*width: 100%;*/
/*height: 100%;*/
/*background-color: #000;*/
/*filter:alpha(opacity=70);*/
/*-moz-opacity:0.7;*/
/*-khtml-opacity: 0.7;*/
/*opacity: 0.7;*/
/*z-index: 100;*/
/*display: none;*/
/*}*/
.cnt223 a{
text-decoration: none;
}
.popup{
width: 100%;
margin: 0 auto;
display: none;
position: fixed;
z-index: 101;
}
.close{
        position: relative;
    top: -43px;
}
.cnt223{
min-width: 600px;
width: 600px;
min-height: 150px;
margin: 100px auto;
background: #f3f3f3;
position: relative;
z-index: 103;
padding: 6px 2px;
border-radius: 5px;
box-shadow: 0 2px 5px #000;
}
.cnt223 p{
clear: both;
    color: #555555;
    /* text-align: justify; */
    font-size: 20px;
    font-family: sans-serif;
}
.cnt223 p a{
color: #d91900;
font-weight: bold;
}
.cnt223 .x{
float: right;
height: 35px;
left: 22px;
position: relative;
top: -25px;
width: 34px;
}
.cnt223 .x:hover{
cursor: pointer;
}

  @media only screen and (max-width: 400px) {
.cnt223{
min-width: auto;
width: auto;
min-height: 150px;
margin: 100px auto;
background: #f3f3f3;
position: relative;
z-index: 103;
padding: 15px 35px;
border-radius: 5px;
box-shadow: 0 2px 5px #000;
}
  }


/***********************************/



















