/* Banner CSS Start */

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}
.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}
.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}
.scroll-down span
{
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}
@keyframes animate {
    0%
  {
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%
  {
        opacity: 1;
    }
    100%
  {
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}


.hero-text h1 {
    color: #fff;
    font-family: 'myfirstfont-ExtraBold';
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    width: 90%;
    /*text-shadow: 0px 2px 3px #00000069;*/
    text-shadow: 0px 2px 4px #000000;
}

/* .hero-text h1 br {
    display: none;
} */

.hero-text h1 span {
    color: var(--main-sub-color);
}

.hero-text .hero {
    position: relative;
}

/* .hero .slider-track {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
} */

.hero .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
    /* opacity:0; */
}

/* .hero .slick-active img {
    opacity:1;
    transition: all ease-in-out 2s; 
} */

/* @keyframes cssAnimation {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-webkit-keyframes cssAnimation {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
} */

/* .hero-text .hero .hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005c;
    opacity: 0.5;
    z-index: 0;
}

.hero-text .hero .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#0000005c;
    opacity: 0.3;
    z-index: 1;
}  */

.hero .hero-slide .hero-content {
    bottom: 18%;
    /* margin-left: 8rem; */
    width: 100%;
    padding: 0;
    z-index: 3;
    left: 0;
}

.hero .hero-slide .hero-content p {
    color: #fff;
    margin-bottom: 50px;
    width: 39%;
    /*text-shadow: 6px 7px 9px #000;*/
}

/** Text Animation **/

@-webkit-keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
}

.slick-active .slide-content {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
    width: 100%;
    padding: 10px 20px 30px 0;
}

/* Banner CSS End */



/*.banner-slider {
    background-color: #000;
}*/

.banner-slider .img-responsive {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-content {
    top: 55%;
    width: 100%;
    padding: 0;
    z-index: 3;
    left: 0;
    transform: translateY(-50%);
}

.hero-content p {
    color: #fff;
    margin-bottom: 50px;
    width: 40%;
    /* text-shadow: 6px 7px 9px #000; */
    text-shadow: 0px 2px 4px #000000;
    font-size: 20px;
}

.hero-content .main-btn
{
    box-shadow: 0px 2px 10px #000000d9;
}


.banner-slider::before
{
    content: '';
    /*background: #000000;*/
    background: linear-gradient(90deg, rgb(0 0 0 / 52%) 0%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#BannerSlider {
    /*opacity:1;
    transition: opacity 1s;*/ 
    background-color: transparent; /* or none */
    transition: opacity 0.5s ease-in-out;
}

#BannerSlider.fadeOut {
    opacity:0;
}

#BannerSliderMob {
    /*opacity:1;
    transition: opacity 1s;*/
    background-color: transparent; /* or none */
    transition: opacity 0.5s ease-in-out; 
}

#BannerSliderMob.fadeOut {
    opacity:0;
}

.banner-img-a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-image-wrapper {
    background-color: #000;
    position: relative;
    overflow: hidden;
}

/* Banner Pegination */

.banner-pegination {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-pegination .pegi-dot {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ffe08e;
    border-radius: 50px;
    margin: 4px 0;
    cursor: pointer;
}

.banner-pegination .pegi-active {
    width: 15px;
    height: 15px;
    background-color: var(--main-sub-color);
}



/* Count CSS Start */

.count-shape {
    position: absolute;
    left: -12px;
    top: 0;
    height: 105%;
    width: auto;
    z-index: -1;
}

.count-sec .row {
    position: relative;
}

line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash1 5s linear alternate infinite;
}

@keyframes dash1 {
    to {
      stroke-dashoffset: 0;
    }
  }

.mx-cont label span {
    font-family: 'myfirstfont-Medium';
    font-size: 50px;
    line-height: 60px;
    color: var(--main-color);
}

.mx-cont .count-text {
    font-size: 18px;
    line-height: 28px;
    color: var(--main-color);
    font-family: 'mysecondfont-SemiBold';
}

.count-sec ul {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}

.count-sec ul li {
    flex: 0 0 25%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: start;
}

.count-sec ul li img{
    width: 80px;
    margin-right: 10px;
}

/* Count CSS End */

/* About CSS Start */

.about-video {
    height: 100%;
    width: 100%;
}

.about-sec .row {
    background-color: #755842;
    border-radius: 10px;
    overflow: hidden;
    padding: 60px 50px;
    position: relative;
}

.about-sec .row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-sub-color);
    width: 320px;
    height: 376px;
    z-index: 0;
}

.about-sec .row .about-img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

.about-sec .row .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sec .row .about-txt {
    margin-left: 30px;
    position: relative;
    z-index: 1;
}

.about-sec .row .about-txt p {
    color: #fff;
    margin-bottom: 20px;
    width: 86%;
}

.about-sec .row .about-txt .main-btn {
    margin-top: 40px;
}

.about-shape {
    position: absolute;
    top: 0;
    right: -10px;
    width: 40%;
    height: auto;
    z-index: 0;
    opacity: 0.5;
}

.about-sec .animation-element.slide-left, .about-sec .animation-element.slide-right {
    z-index: 1;
}

/* About CSS End */

/* Product CSS Start */

.product-sec {
    background-color: #F3E5DA;
}

.product-sec .container {
    position: relative;
    z-index: 1;
}

/* .product-row .col-12:first-child, .product-row .col-12:last-child {
    margin-top: 40px;
} */

.product-img {
    width: 100%;
    height: auto;
    /* background: linear-gradient(to bottom, #F3E5DA, #FAF4F0 60%, #FFFFFF); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 15px; */
    /* margin-bottom: 25px; */
    border-radius: 0px;
    /* aspect-ratio: 8 / 2; */
}

/* .product-img:last-child {
    background: linear-gradient(to bottom, #FFFFFF, #FAF4F0 60%, #F3E5DA);
} */

.product-img img {
    border-radius: 20px;
    height: auto;
    width: 100%;
}

.product-img p {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    margin-bottom: 0;
}

.product-txt .main-btn {
    margin-top: 50px;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear alternate infinite;
}

@keyframes dash {
    0% {
      stroke-dashoffset: 1000;
    }
    100% {
      stroke-dashoffset: 0;
    }
}

.product-shape1 {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 0;
}

.product-shape2 {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 0;
}

.product-shape3 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 0;
}

.product-shape4 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 0;
}

.product-txt {
    padding-top: 50px;
}

.product-txt p {
    width: 80%;
}

.product-row .col-lg-4:first-child, .product-row .col-lg-4:last-child {
    margin-top: 50px;
}

.product-sec .slick-slide {
    margin: 0 10px;
}

.product-sec .slick-dots {
    bottom: 0;
}

/* Product CSS End */

/* Quality and Certificates CSS Start */

.quality-img {
    position: relative;
    width: 100%;
    padding-left: 100px;
}

.certificate-sec p {
    padding-left: 0px;
}

/* .quality-img::after {
    content: '';
    position: absolute;
    top: -15%;
    left: 0;
    height: 90%;
    width: 1px;
    background-color: var(--main-sub-color);
}

.quality-img::before {
    content: '';
    position: absolute;
    top: 20%;
    transform: translate(-50%);
    left: 14%;
    width: 218px;
    height: 1px;
    background-color: var(--main-sub-color);
    z-index: -1;
} */

.certificate-shape {
    position: absolute;
    top: -15%;
    left: 0;
    height: 100%;
    width: auto;
    z-index: -1;
}

.quality-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

ul.cartificate-ul {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

ul.cartificate-ul li {
    flex: 0 0 auto;
    width: 29%;
    margin-bottom: 20px;
    margin-right: 20px;
}

.cartificate-img {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E8E8E8;
    height: 100%;
    flex-direction: column;
}

.cartificate-img img {
    width: 100%;
    height: 100px;
    max-width: unset;
    object-fit: contain;
}

.cartificate-img p {
    padding-left: 0 !important;
    padding-top: 15px;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}

.certificate-sec .cartificate-con {
    margin-left: 100px;
}

.certificate-sec .cartificate-con .main-btn {
    margin-top: 70px;
}

/* Quality and Certificates CSS End */

/* Sustainability CSS Start */

.sustainability-sec .row {
    border-radius: 20px;
    overflow: hidden;
    max-width: 0 10px;
}

.sustainability-con {
    position: relative;
    height: 100%;
    background-color: var(--main-sub-color);
    padding: 60px;
    overflow: hidden;
}

.sustainability-txt {
    position: relative;
    z-index: 1;
}

.sustainability-txt p {
    width: 85%;
}

.sustainability-txt .main-btn {
    background-color: #fff;
    margin-top: 70px;
}

.sustainability-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.sustainability-img {
    width: 100%;
    height: 100%;
}

.sustainability-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sustainability CSS End */

/* Career CSS Start */

.career-sec .career-img {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.career-shape-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.career-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #A28269;
    width: 320px;
    height: 376px;
    z-index: 0;
}

.career-sec .career-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.career-sec {
    background-color: #F3E5DA;
}

.career-txt {
    margin-right: 100px;
    position: relative;
    z-index: 1;
}

.career-con {
    padding-top: 10px;
}

/*.career-opportunity {*/
/*    padding-left: 60px;*/
/*}*/

.career-opportunity-con {
    padding: 10px 0;
}

/* .career-opportunity:not(:first-child) {
    padding-top: 40px;
}

.career-opportunity:last-child {
    padding-top: 40px;
    border-bottom: none;
} */

.career-opportunity h3 {
    font-family: 'myfirstfont-Medium';
    font-size: 25px;
    line-height: 35px;
    color: var(--main-color);
    padding-bottom: 20px;
}

.career-opportunity h4 {
    font-family: 'myfirstfont-Medium';
    font-size: 22px;
    line-height: 32px;
    color: #333;
    margin-bottom: 0px;
}

.career-opportunity h5 {
    font-family: 'myfirstfont-Light';
    font-size: 22px;
    line-height: 32px;
    color: #333;
}

.career-opportunity p {
    font-family: 'myfirstfont-Light';
}

.career-sec .main-btn {
    margin-top: 20px;
    margin-left: 0px;
}

.career-sec .container {
    position: relative;
    z-index: 1;
}

.career-con {
    position: relative;
}

.career-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: -1;
}

/* Career CSS End */

/* Blog CSS Start */

.blog-box {
    height: 100%;
    width: 100%;
    border-bottom: 2px solid var(--main-sub-color);
    margin-top: 0px;
    transition: all ease-in-out 0.5s;
}

.blog-box .date {
    font-size: 16px;
    line-height: 28px;
    color: #808080;
    margin-bottom: 15px;
}

.blog-txt {
    padding: 30px 0;
}

.blog-txt h3 {
    font-size: 22px;
    line-height: 32px;
    color: var(--main-color);
    font-family: 'myfirstfont-Medium';
    width: 80%;
    margin-bottom: 25px;
    transition: all ease-in-out 0.5s;
}

.blog-txt p {
    color: #626262;
    font-size: 18px;
    line-height: 28px;
    font-family: 'mysecondfont-Regular';
    width: 90%;
    min-height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-box:hover .blog-txt h3 {
    color: var(--main-sub-color);
}

.page-btn {
    color: #000;
    transition: all ease-in-out 0.5s;
    font-weight: 600;
    font-size: 16px;
}

.page-btn i {
    transition: all ease-in-out 0.5s;
}

.blog-box .page-btn:hover i {
    margin-right: 5px;
}

.blog-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.5s;
}

.blog-box:hover .blog-img img {
    transform: scale(1.08);
}

.blog-sec .slick-slide {
    margin: 0 10px;
}

/* Blog CSS End */


.blog-btn
{
    text-align: right;
}

.blog-btn .main-btn
{
    display: initial;
}

.slt-img100
{
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.infrastructure-sec {
    background: #F3E5DA;
}

.infra-a {
    display: block;
    height: 100%;
    width: 100%;
}

.infras-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.infras-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.infras-box:hover img {
    transform: scale(1.08);
}

.infras-box::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #000000a3, transparent);
}

.infras-box-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.infras-box-txt h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #fff;
    /* margin-bottom: 15px; */
    width: 57%;
}

.infras-box-txt .page-btn {
    color: #fff;
    font-weight: 500;
}

.infras-left {
    /* display: flex;
    align-items: center; */
    height: 100%;
    padding-top: 40px;
}

.infras-box .main-btn {
    font-size: 15px;
    padding: 6px 14px;
}




.box-item {
    position: relative;
    -webkit-backface-visibility: hidden;
    max-width: 100%;
}

.flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    min-height: 120px;
    -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* border: 1px solid #f1f1f1; */
    background: #fff;
    box-shadow: 0px 0px 15px 0px #00000012;
}

.flip-box-front {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0px;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    transform: translateY(-50%) translateZ(60px) scale(.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
    top: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    text-align: left;
}

.flip-box-header {
    font-size: 34px;
}

/* .flip-box p {
    font-size: 20px;
    line-height: 1.5em;
} */

.flip-box-img {
    margin-top: 25px;
}

.flip-box-button {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    padding: 15px 20px;
    text-transform: uppercase;
}

.flip-box-back p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

.flip-box-back p:first-child {
    font-weight: bold;
    text-align: left;
    width: 100%;
    font-family: 'mysecondfont-SemiBold';
}

.flip-box-back p:last-child {
    text-transform: capitalize;
    width: 100%;
    text-align: left;
}




/* Responsive CSS Start */

@media (max-width: 1600px) {

    .hero-text h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .mx-cont label span {
        font-size: 45px;
        line-height: 55px;
    }

}

@media (max-width: 1440px) {

    .hero-text h1 {
        font-size: 40px;
        line-height: 50px;
    }

}

@media (max-width: 1399px) {

    /* .hero .hero-slide .hero-content {
        width: 60%;
    } */

    /* .hero-text h1 {
        width: 50%;
    } */

    .hero-content p {
        width: 60%;
    }

    .mx-cont .count-text {
        font-size: 16px;
        line-height: 26px;
    }

    .certificate-sec .cartificate-con {
        margin-left: 60px;
    }

    /* ul.cartificate-ul li {
        width: 29%;
    } */

    .career-opportunity h3 {
        font-size: 23px;
        line-height: 33px;
    }

    .career-opportunity h4, .career-opportunity h5 {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-txt p {
        font-size: 16px;
        line-height: 26px;
    }

    .blog-box .date {
        font-size: 15px;
        line-height: 26px;
    }

    .page-btn {
        font-size: 15px;
    }

    .about-sec .row .about-txt .main-btn {
        margin-top: 30px;
    }

    .product-txt .main-btn {
        margin-top: 20px;
    }

    .certificate-sec .cartificate-con .main-btn {
        margin-top: 40px;
    }

    .sustainability-txt .main-btn {
        margin-top: 40px;
    }

    .career-sec .main-btn {
        margin-top: 0;
    }

    .infras-box .main-btn {
        font-size: 13px;
        padding: 4px 10px;
    }

    .infras-box-txt h3 {
        font-size: 17px;
    }

}

@media (max-width: 1280px) {

    /* .hero-text h1 {
        font-size: 70px;
        line-height: 80px;
    } */

    .mx-cont label span {
        font-size: 40px;
        line-height: 50px;
    }

    .blog-txt h3 {
        font-size: 20px;
        line-height: 30px;
    }

}

@media (max-width: 1199px) {

    .hero .hero-slide img {
        height: 640px;
    }

    /* .hero .hero-slide .hero-content {
        margin-left: 4rem;
    } */

    .hero-text h1 {
        font-size: 40px;
        line-height: 50px;
    }

    /* .hero .hero-slide .hero-content {
        width: 65%;
    } */

    .hero .hero-slide .hero-content p {
        margin-bottom: 30px;
    }

    .about-sec .row::after {
        width: 230px;
        height: 280px;
    }

    .about-sec .row .about-txt {
        margin-left: 40px;
    }

    /* .product-txt .main-btn {
        margin-top: 100px;
    } */

    .quality-img {
        padding-left: 50px;
    }
/* 
    .certificate-sec p {
        padding-left: 50px;
    } */

    .career-txt {
        margin-right: 0;
        margin-left: 40px;
    }

    .career-opportunity h3 {
        margin-bottom: 15px;
    }

    .career-opportunity h4 {
        margin-bottom: 10px;
    }

    .career-opportunity {
        padding-left: 40px;
        padding-bottom: 30px;
    }

    .career-sec .main-btn {
        margin-left: 40px;
    }

    .mx-cont label span {
        font-size: 35px;
        line-height: 45px;
    }
/* 
    .certificate-sec p {
        padding-left: 20px;
    } */

    .certificate-sec .cartificate-con {
        margin-left: 20px;
    }

    .cartificate-img p {
        font-size: 13px;
    }

    ul.cartificate-ul li {
        width: 28%;
    }

    .cartificate-img {
        padding: 10px;
    }


    .infras-box-txt h3 {
        /* font-size: 22px; */
        width: 53%
    }

    .infras-box-txt {
        padding: 14px;
    }

}

@media (max-width: 1024px) {

    .hero .hero-slide img {
        height: 580px;
    }

    .product-shape1, .product-shape3 {
        width: 40%;
        height: auto;
    }

    .product-shape2, .product-shape4 {
        width: 30%;
        height: auto;
    }

    /* .hero-text h1 {
        width: 65%;
    } */

    .hero .hero-slide .hero-content p {
        width: 65%;
    }

}

@media (max-width: 991px) {

    /* .hero .hero-slide .hero-content {
        top: 25%;
    } */

    .scroll-down {
        display: none;
    }

    .banner-slider .img-responsive {
        height: 100vh;
        object-fit: cover;
    }

    .hero-content p {
        width: 70%;
    }

    .count-sec ul li {
        flex: 0 0 50%;
        justify-content: flex-start;
    }

    .mx-cont .count-text {
        font-size: 14px;
        line-height: 23px;
    }

    .about-sec .row {
        padding: 40px 30px;
    }

    .about-sec .row .about-txt {
        margin-left: 0;
    }

    .about-txt {
        margin-top: 0px;
    }

    .product-txt {
        padding-top: 0;
        padding-bottom: 50px;
    }

    /* .certificate-sec p {
        padding-left: 0;
    } */

    .certificate-sec .cartificate-con {
        margin-left: 0;
        padding-top: 50px;
    }

    /* ul.cartificate-ul li {
        width: 30%;
    } */

    .certificate-shape {
        top: -10%;
    }

    .career-txt {
        margin-left: 0;
        margin-top: 50px;
    }

    .blog-sec .slick-dots {
        bottom: -40px;
    }

    .secBlogSlider {
        margin-bottom: 30px !important;
    }

    .hero-text h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .product-img p {
        font-size: 15px;
    }

    .certificate-sec .cartificate-con {
        padding-top: 0;
    }

    /* .about-sec .row .about-img, .sustainability-img {
        aspect-ratio: 3/3;
    } */

    /* .hero .hero-slide .hero-content {
        width: 70%;
    } */

    .infras-intro-txt {
        width: 85%;
    }

}

@media (max-width: 767px) {

    #scroll-down-animation {
        display: none;
    }
    .about-sec .row::after {
        width: 100%;
        height: 150px;
    }
    /* .slt-img100
    {
        aspect-ratio: 1/1;
    } */
    .banner-sec {
        height: 100%;
    }

    /* .hero-text h1, .hero .hero-slide .hero-content p {
        width: 70%;
    } */

    .count-sec ul li {
        flex: 0 0 50%;
    }

    .mx-cont label span {
        font-size: 30px;
        line-height: 40px;
    }

    /* .hero .hero-slide .hero-content {
        margin-left: 2rem;
    } */

    .hero-text h1 {
        font-size: 30px;
        line-height: 40px;
    }

    /* .hero .hero-slide .hero-content {
        width: 80%;
    } */

    .sustainability-con {
        padding: 30px;
    }

    .about-sec .row {
        padding: 40px 30px;
    }

    .product-img {
        aspect-ratio: auto;
    }

    .count-sec ul li {
        justify-content: flex-start;
    }

    .count-shape {
        display: none;
    }

    .about-sec .row .about-txt p, .sustainability-txt p, .product-txt p {
        width: 100%;
    }

    /* ul.cartificate-ul li {
        width: 29%;
    } */

    .product-txt .main-btn {
        display: none;
    }

    .product-txt {
        padding-bottom: 20px;
    }

    .product-slider .main-btn {
        margin-top: 50px;
    }

    .blog-sec .main-btn {
        margin-top: 30px;
    }

    .career-opportunity {
        padding-bottom: 10px;
    }

    .ftr-logo {
        text-align: center;
    }

    .infras-left {
        padding-top: 0px;
    }

    .infras-box .main-btn {
        margin-right: 0;
    }
    
    .count-sec ul li {
        display: block;
        border: 1px solid #E8E8E8;
        flex: 0 0 48%;
        padding: 15px;
    }
    
    .count-sec ul {
        justify-content: space-between;
    }

}

@media (max-width: 575px) {

    .hero-text h1 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-content p {
        margin-bottom: 15px;
        min-height: 130px;
    }

    .hero-content p br {
        display: none;
    }

    .banner-sec .slick-dots {
        bottom: 10px;
    }

    /* .hero .hero-slide .hero-content {
        width: 100%;
    } */

    .hero .hero-slide .hero-content {
        margin-left: 0;
    }

    .about-sec .row {
        padding: 30px 20px;
    }

    .sustainability-con {
        padding: 20px;
    }

    .count-shape {
        left: 0;
    }
    
    .about-sec, .sustainability-sec {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* .hero .hero-slide .hero-content {
        padding: 1rem;
    } */

    .about-sec .row {
        padding: 25px 10px;
    }

    .product-row .col-12:first-child, .product-row .col-12:last-child {
        margin-top: 0;
    }

    .quality-img {
        padding-left: 20px;
    }

    .career-opportunity {
        padding-left: 20px;
    }

    .career-sec .main-btn {
        margin-left: auto;
    }

    /*.count-sec ul li {*/
    /*    flex: 0 0 100%;*/
    /*}*/

    .count-sec ul li img {
        width: 60px;
        margin-right: 10px;
    }

    /* .infras-box-txt h3 {
        font-size: 20px;
    } */

    .infras-box-txt {
        padding: 15px;
    }

    .banner-slider .img-responsive {
        height: auto;
        object-fit: cover;
    }

    .hero-content {
        top: auto;
        width: 100%;
        padding: 0;
        z-index: 3;
        left: auto;
        transform: none;
        position: relative !important;
        margin-top: 20px;
    }

    .hero-text h1, .hero-text p {
        width: 100%;
    }

    .infras-box-txt h3 {
        width: 55%;
    }

    .banner-slider {
        background: #755842;
        padding-bottom: 20px;
        height: 800px;
    }

    .banner-pegination {
        position: absolute;
        top: auto;
        transform: translateX(-50%);
        right: auto;
        z-index: 5;
        display: flex;
        flex-direction: row;
        align-items: center;
        bottom: 5px;
        left: 50%;
    }

    .banner-pegination .pegi-dot {
        margin: 4px;
    }

}

@media (max-width: 450px) {

    .banner-slider {
        height: 740px;
    }
    
    .hero-content p {
        margin-bottom: 15px;
        min-height: 120px;
    }
    
}

@media (max-width: 420px) {

    ul.cartificate-ul li {
        width: 44%;
    }

}

@media (max-width: 400px) {

    .banner-slider {
        height: 710px;
    }
    
    .hero-content p {
        min-height: 130px;
    }
    
}