

    * {
        font-family: "Inter";
    }
    .font-family{
        font-family: "Inter";
    }

    html,
    body,
    .view {
        height: 100%;
    }



    @media (max-width: 740px) {
        html,
        body,
        .view {
            height: 1000px;
        }
    }

    @media (min-width: 800px) and (max-width: 850px) {
        html,
        body,
        .view {
            height: 650px;
        }
    }
    /*  Home  */

    .list-group-item.active {
        background-color: transparent;
        border-color: transparent;
    }

    .card:focus {
        border-color: transparent;
    }

    .card:active {
        border-color: transparent;
    }

    .view {
        height: 100%;
    }

    .p-10 {
        padding: 0 10px;
    }

    @media (max-width: 740px) {
        .full-page-intro {
            height: 1000px;
        }
    }
    /* Banner */

    .sticky {
        background-color: var(--tertiary--color);
        box-shadow: -1px 14px 54px -15px rgba(0, 0, 0, 0.3);
    }

    .header-clr {
        font-family: 'Inter';
        color: var(--primary--color);
    }

    .p-left {
        padding: 0 7.5px 0 15px;
    }

    .p-right {
        padding: 0 15px 0 7.5px;
    }

    .p-center {
        padding: 0 7.5px;
    }

    .banner-bgimg {
        min-height: 85%;
        width: 100%;
        background-size: cover;
    }


    .img-responsive {
        max-width: 100%;
        height: auto;
    }

    .director-img-responsive {
        max-width:118%;
        height: auto;
    }


    .wel-plast {
        /* font-family: 'Exo', sans-serif; */
        letter-spacing: 4px;
        font-size: 12px;
        font-weight: 600;
    }

    /* .banner-tlt {
        /* font-family: 'Exo', sans-serif; */


    .banner-btn {
    border: 2px solid #fff !important;
    color: #fff !important;
    background-color: transparent;
    text-transform: none;
    letter-spacing: .15rem;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border-radius: 0
    }
    .banner-btn:hover{
        background: #fff!important;
        color: #000 !important;
    }

    .social-clr {
        border-radius: 50%;
        border: 1px solid #fff;
        width: 30px;
        height: 30px;
        text-align: center;
        padding: 5px;
        margin: 15px;
    }

    .social-clr a {
        color: #fff;
    }

    .scroll {
        color: #fff;
        font-size: 9px;
        /* font-family: 'Exo', sans-serif; */
        letter-spacing: 4px;
        font-weight: 600;
        padding: 0 15px;
    }

    .prd-bgimg {
        height: 260px;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .bgimg1 {
        background-image: url('../img/below_slider/corporates.jpg');
    }

    .bgimg2 {
        background-image: url('../img/below_slider/coworking.jpg');
    }

    .bgimg3 {
        background-image: url('../img/below_slider/academia.jpg');
    }

    .bgimg4 {
        background-image: url('../img/below_slider/startups.jpg');
    }

    .for {
        font-size: 1.4rem;
        margin-bottom: -10px;
        z-index: 1;
    }

    .section-two-slider {
        font-size: 1.9rem;
        font-weight: 500;
        float: left;
        line-height: 1.5;
    }

    .circle-alg {
        float: left;
        margin-top: .8rem;
    }

    .farmer-cle {
        border-radius: 50%;
        border: 1px solid;
        width: 30px;
        height: 30px;
        padding: 6px 5px 5px;
        margin: 0 10px;
        text-align: center;
    }

    .position-rel {
        position: relative;
    }

    .centered-text {
        position: absolute;
        top: 78%;
        left: 47%;
        font-weight: 600;
        transform: translate(-50%, -50%);
        color: #de9e01;
    }

    .centered {
        position: absolute;
        top: 85%;
        left: 33%;
        transform: translate(-50%, -50%);
        color: #de9e01;
    }

    .about-title {
        font-size: 3rem;
        font-family: 'Inter';
    }

    .gallery-bgimg {
        height: 260px;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url('../img/below_slider/pro1.jpg');
    }


.image-holder{
  min-height: 34vh;
    height: 39vh;
    justify-content: center;
    display: flex;
    margin: 0 auto;
}


/* Gallery CSS */


@import 'https://unpkg.com/open-props' layer(design.system);

@import 'https://unpkg.com/open-props/normalize.dark.min.css'
  layer(base.normalize);



@layer components.gallery {
  .imageGallery {
    grid-template-columns: repeat(3, 1fr);
    max-inline-size: var(--max-inline);
    gap: calc(var(--border-size-2) * 2);

    & img {
      aspect-ratio: var(--ratio-square);
      max-inline-size: 100%;
      background-image: var(--gradient-8);
    }

    & > button {
      position: relative;
      padding: 0;
      margin: 0;
      border: none;

      &::after {
        content: '';
        inset: 0;
        display: block;
        background-color: oklch(0 0 0 / 0.4);
        position: absolute;
        background-size: var(--size-5);
        background-repeat: no-repeat;
        background-position: top var(--size-1) right var(--size-1);
        opacity: 0;
        transition: 0.2s ease;
      }

      &:hover::after {
        opacity: 1;
      }
    }
  }
}




@layer components.dialog {
  .dialog {
    --sm-font-size: 0.875rem;
    --size: min(80dvh, 100%);
    --fade-duration: 1s;

    inline-size: var(--size);
    max-inline-size: 600px;
    border-radius: unset;

    padding: 0;

    .dialog-container {
      display: flex;
      flex-direction: column;
      gap: var(--size-3);
      position: relative;
      overflow: hidden;
    }

    .controls {
      position: fixed;
      z-index: var(--layer-1);
      inset-block-start: calc(50% - var(--size-5) / 2);
      inset-inline: var(--size-3);
      display: flex;
      justify-content: space-between;
      opacity: 0;
      animation: var(--animation-fade-in) var(--fade-duration) forwards;

      & button {
        inline-size: var(--size-8);
        border-radius: var(--radius-round);
        aspect-ratio: var(--ratio-square);
        font-size: 1.75rem;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        box-shadow: var(--shadow-1);
        color: var(--stone-1);
        transition: color 0.2s ease;
        @media (width > 600px) {
          font-size: 3rem;
        }

        &:hover {
          color: var(--stone-6);
        }
      }
    }

    .closeDialog {
      position: fixed;
      inset-block-start: var(--size-2);
      inset-inline-end: var(--size-2);
      block-size: 48px;
      inline-size: 48px;
      border: 0;
      background-color: white;
      font-size: var(--font-size-5);
      padding: 0;
    }

    .carousel {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: var(--size);
      inline-size: var(--size);
      block-size: var(--size);
   

      /* Hide scrollbar */
      -ms-overflow-style: none; /* IE and Edge */
      scrollbar-width: none; /* Firefox */
      &::-webkit-scrollbar {
        display: none;
      }

      & img {
        inline-size: 100%;
        block-size: 100%;
      }

      &::after {
        content: '';
        position: absolute;
        inset: 0;

        background-color: var(--surface-1);

        background-image: url(https://raw.githubusercontent.com/mobalti/open-props-interfaces/7d7d59bdb5dca71ec7280b88876b45d31cbf3c4a/image-gallery/images/bars-rotate-fade.svg);
        background-repeat: no-repeat;
        background-position: center;
        z-index: var(--layer-3);

        /* <Suspense> */
        animation: var(--animation-fade-out) var(--fade-duration) forwards,
          var(--fade-duration) op-hide 1s forwards;
      }
    }
  }
}

@layer animation.base {
  @keyframes op-hide {
    100% {
      visibility: hidden;
    }
  }
}

@layer animation.scroll-driven {
  body {
    timeline-scope: --carousel;
  }
  #carousel {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    overscroll-behavior: contain;
    scroll-behavior: smooth;

    scroll-timeline: --carousel inline;

    > * {
      scroll-snap-align: center;
    }
  }

  #nextBtn {
    animation: auto next ease;
    animation-timeline: --carousel;

    /* fix bug scrollPort nextBtn visibility */
    animation-range: 0% 101%;
  }

  #prevBtn {
    animation: auto prev ease;
    animation-timeline: --carousel;
  }

  @keyframes prev {
    from {
      visibility: hidden;
    }
  }

  @keyframes next {
    99%,
    100% {
      visibility: hidden;
    }
  }
}

@layer components.footer {
  footer {
    display: flex;
    justify-content: center;
    padding-block: var(--gap);
    font-weight: var(--font-weight-8);
    color: var(--stone-8);
  }
}

dialog:-internal-dialog-in-top-layer::backdrop {
    position: fixed;
    inset: 0px;
    background: rgba(0, 0, 0, 0.5) !important;
}



/* Gallery CSS */

    .about-txt {
        font-size: 20px;
        line-height: 1.7;
    }

    .about-txt2 {
        color: #000000;
        font-size: 13px;
    }

    .read-more {
        color: var(--primary--color);
        opacity: .5;
    }

    .read-more:hover {
        color: var(--primary--color);
        opacity: 1;
    }

    .food-tlt {
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: .5rem;
        color: var(--primary--color);
        text-transform: uppercase;
    }

    .footer-bgclr {
        background-color: #fff;
        position: relative;
        z-index: 5;
    }

    .f-600 {
        font-weight: 600;
    }

    .border-bot {
        border-bottom: 2px solid var(--secondary--color);
        width: 40px;
    }

    .font-2 {
       
        margin-right: 0.8rem;
        color: #a5a5a5;
    }
    .directors-pic{
         border-radius: 100%;
            max-height: 280px;
    }
    /* .directors-content{
        text-align: center;
    } */
    .clip-right{
        clip-path:  circle(100% at 2% 52%);
    }
    .clip-left{
        clip-path: circle(70.5% at 73% 52%);
    }
    /* .box-shadow{
        box-shadow: 0.5px 1px 1px 2px #eee;
    } */
    .font-2rem {
        font-size: 2rem;
        font-size: 15px;
        letter-spacing: 2px;
    }

    .location {
        font-size: 14px;
    }

    .call {
        color: #212121 !important;
        padding-top: 0px;
        font-size: 24px;
        font-weight: 600;
    }


    .address {
        color: #eee;
        padding-left: 2.5rem;
    }

    .footer-list {
        color: #eee;
        font-size: 14px;
    }

    .footer-list:hover {
        color: #eee;
        font-size: 14px;
    }

    .footer-pad {
        padding: 0 0 10px 0;
    }

    .get-in-touch {
        color: #666666;
        font-size: 15px;
    }

    .btn-shadow {
        box-shadow: 3px 3px 4px 0px #000000b8;
    }

    .footer-btn {
        background-color: #50535b;
        font-size: 12px;
        letter-spacing: 0px;
        font-weight: 600;
    }

    .footer-btn:hover {
        background-color: var(--primary--color);
        font-size: 12px;
        letter-spacing: 0px;
        font-weight: 600;
    }

    .product-bgimg {
        height: 280px;
        width: 100%;
        background-size: cover;
        position: relative;
    }

    .product-tlt {
        letter-spacing: 0px;
        font-size: .8rem;
        color: #eee;
        padding: 0 5px;
    }

    .product-header {
        margin-bottom: 20px;
        font-size: 2.3rem;
    }

    .product-header1 {
        font-family: 'Open Sans', sans-serif;
        margin-bottom: 18px;
        font-size: 2.1rem;
    }

    .all-tlt {
        font-family: 'Open Sans', sans-serif;
        font-size: 4.5rem;
        margin-bottom: 1rem;
    }

    .btn-padding {
        padding: 10px 15px;
    }

    .product-btn-p {
        padding: .45rem 2rem;
    }

    .m-bottom {
        margin-bottom: 1rem;
    }

    .ecology-tlt {
        font-weight: 600;
        letter-spacing: -.5px;
    }

    .eco-prd-tlt-left {
        font-weight: 600;
        font-size: 13px;
        padding: 0 1rem 0 0;
        text-align: right;
        float: left;
        color: #30352f;
        text-shadow: 0px 0.5px 0.5px #30352f;
    }

    .eco-prd-tlt-right {
        font-weight: 600;
        font-size: 13px;
        padding: 0 0 0 0;
        text-align: left;
        float: right;
        color: #30352f;
        text-shadow: 0px 0.5px 0.5px #30352f;
    }

    .eco-hld-left {
        padding: 1rem 0;
    }

    .p-l-2 {
        padding-left: 5rem;
    }

    .f-ask-q {
        font-weight: 600;
        font-size: 1.7rem;
        text-shadow: 0px 0px 1px;
        margin-bottom: 2.5rem;
    }

    .f-ask-a {
        font-size: .8rem;
        text-shadow: 0px 0px 1.5px;
        color: #8e8a8a;
        letter-spacing: .5px;
        line-height: 23px;
    }

    #accordation {
        width: 100%;
        text-align: left;
    }

    .card-header {
        padding: 0 ! important;
    }

    .card-header:first-child {
        margin-bottom: 10px;
    }

    .border-0 {
        border: 0;
    }

    .btn {
        text-decoration: none ! important;
    }

    #accordtion .btn:not([disabled]):not(.disabled):active{
        background-color: #f4f4f4 !important;
        margin: 0 !important;
    }
    #accordtion .btn.btn-link:active, .btn.btn-link:focus, .btn.btn-link:hover{
    background-color: #f4f4f4 !important;
        margin: 0 !important;
    }

    #accordion .accordion-sec>.card-header {
        border: 1px solid rgba(0, 0, 0, 0.1607843137254902);
        background: #fff;
        padding: 0;
    }

    #accordtion .p-10 {
        padding: 5px 10px;
    }

    #accordion .accordion-sec .card-header a {
        display: block;
        font-size: .9rem;
        text-align: left;
        color: #534e4e;
        letter-spacing: 0px;
        padding: 15px 10px 15px;
        font-weight: 600;
        margin: 0;
    }

    #accordion .accordion-sec .card-header a:after {
        font-family: 'FontAwesome';
        font-style: normal;
        font-size: 1rem;
        content: "\f077";
        color: rgba(124, 117, 117, 0.6);
        float: right;
        margin-top: 0;
    }

    #accordion .accordion-sec .card-header a.collapsed:after {
        content: "\f078";
    }

    #accordion-section .panel-default .panel-body {
        font-size: 1.2rem;
    }

    /* Product Details accordion */

    #accordtion .btn:not([disabled]):not(.disabled):active{
        background-color: #f4f4f4 !important;
        margin: 0 !important;
    }
    #accordtion .btn.btn-link:active, .btn.btn-link:focus, .btn.btn-link:hover{
    background-color: #f4f4f4 !important;
        margin: 0 !important;
    }

    #accordion .accordion-sec_details>.card-header {
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.1607843137254902); */
        background: #fff;
        padding: 0;
    }

    #accordtion .p-10 {
        padding: 5px 10px;
    }

    #accordion .accordion-sec_details .card-header a {
        display: block;
        font-size: 1.3rem;
        text-transform: unset;
        text-align: left;
        color: rgba(30, 30, 30, 0.67);
        letter-spacing: 0px;
        padding: 15px 60px 15px;
        margin: 0;
        border-bottom: 1px dashed #e5e5e5;
    }

    #accordion .accordion-sec_details .card-header a:after {
        font-family: 'FontAwesome';
        font-style: normal;
        font-size: .8rem;
        content: "\f068";
        display: inline-block;
        border: 1px solid #555;
        border-radius: 3px;
        height: 20px;
        width: 20px;
        padding: 0px 3px;
        float: left;
        color: rgba(30, 30, 30, 0.67);
        margin-top: 0;
        left: 2%;
        top: 30%;
        position: absolute;
    }

    #accordion .accordion-sec_details .card-header a.collapsed:after {
        content: "\f067";
    }

    #accordion-section .panel-default .panel-body {
        font-size: 1.2rem;
    }

    #accordtion .accordion-sec_details .btn.btn-link:active, .accordion-sec_details .btn.btn-link:focus, .accordion-sec_details .btn.btn-link:hover{
        background-color: #fff !important;
        margin: 0 !important;
    }
    /* Product Details accordion End */



    .viewall-btn {
        font-size: 13px;
        letter-spacing: 0px;
        font-weight: 800;
        color: green;
    }

    .viewall-btn:hover {
        font-size: 15px;
        letter-spacing: 0px;
        font-weight: 800;
        color: green;
    }

    .right-arrow {
        font-size: 13px;
        color: #008000;
        transition: ease-in-out all .3s;
    }

    .viewall-btn:hover .right-arrow {
        font-size: 15px;
    }

    .card-clr {
        background-color: #f5f5f5;
    }

    .req-text {
        font-size: 1.7rem;
        font-weight: 600;
        text-shadow: 0px 0px 0.5px;
        margin-bottom: 2.2rem;
    }

    .form-control:focus {
        box-shadow: 0 4px 7px 0 #ddd;
        border-color: #ddd;
    }

    .btn-clr {
        background-color: var(--primary--color);
        color: #fff;
        letter-spacing: 0px;
        padding-left: 15px;
        padding-right: 15px;
        margin: 10px 0;
    }

    .btn-clr:hover {
        color: #fff;
    }

    .send-btn {
        background-color: #4caf50;
        color: #fff;
        letter-spacing: 0px;
    }

    .send-btn:hover {
        background-color: #007A3B;
        color: #fff;
        letter-spacing: 0px;
    }

    .send-tlt {
        text-shadow: 0px 0px 1px;
    }

    .background-clr {
        background-color: #eee;
    }

    .address-hld {
        color: #424242;

    }

    .font-icon {
        padding: 10px 15px;
        font-size: 14px;
        color: #a9a9a9;
    }

    .clr-black {
        color: #212529;
        font-size: 1rem;
    }

    .color-black {
        color: #000;
    }

    .color-black:hover {
        color: #000;
    }

    .facebook {
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 8px 12px;
        text-align: center;
        background: #3B5998;
        color: #fff;
    }

    .facebook:hover {
        opacity: .7;
        color: #fff;
    }

    .linkedin {
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 8px 12px;
        text-align: center;
        background: #007bb5;
        color: #fff;
    }

    .linkedin:hover {
        opacity: .7;
        color: #fff;
    }

    .instagram {
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 8px 12px;
        text-align: center;
        background: #125688;
        color: #fff;
    }

    .instagram:hover {
        opacity: .7;
        color: #fff;
    }

    .whatapp {
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 8px 12px;
        text-align: center;
        background: #25D366;
        color: #fff;
    }

    .whatapp:hover {
        opacity: .7;
        color: #fff;
    }

    .youtube {
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 8px 12px;
        text-align: center;
        background: #bb0000;
        color: #fff;
    }

    .youtube:hover {
        opacity: .7;
        color: #fff;
    }

    .p-100 {
        padding: 0 1rem;
    }

    .clr-green {
        color: var(--secondary--color);
    }

    .m-1 {
        margin: 1rem 0 ! important;
    }

    .load-more-arrow {
        font-size: 14px;
        padding: 0px 8px;
        color: #008000;
    }

    .btn-grup {
        color: var(--primary--color);
        border: 1px solid var(--primary--color);
    }

    .btn-grup:hover {
        color: #fff;
        background-color: var(--primary--color);
    }

    .news-details {
        text-align: justify;
    }

    .next-btn {
        cursor: pointer;
        position: absolute;
        right: 0%;
        z-index: 2;
        padding: 4px 7px;
        top: 45%;
        color: var(--primary--color);
        border: 0px solid var(--primary--color);
        width: 3%;
        height: 12%;
        font-size: 2rem;
        background: #fff;
        border-radius: 0.125rem;
    }



    .next-btn:hover {
        color: #fff;
        background-color: var(--primary--color);
        padding-right: 35px;
        transition: 0.5s;
    }

    .prev-btn {
        border-radius: 0.125rem;
        cursor: pointer;
        position: absolute;
        left: 0%;
        z-index: 2;
        padding: 4px 7px;
        top: 45%;
        color: var(--primary--color);
        border: 0px solid var(--primary--color);
        width: 3%;
        height: 12%;
        font-size: 2rem;
        background: #fff;
    }

    .prev-btn:hover {
        color: #fff;
        background-color: var(--primary--color);
        padding-right: 35px;
        transition: 0.5s;
    }

    .m-l {
        margin-left: 10px;
    }

    .m-r {
        margin-right: 10px;
    }

    .p-news {
        padding: 0 7.5px;
    }

    .card {
        box-shadow: 0 0 0 0;
    }

    .card:hover {
        box-shadow: 0 2px 25px 13px rgb(0 0 0 / 16%), 0 2px 50px 3px rgb(0 0 0 / 5%);
        transition: 0.5s;
    }

    .card-header {
        padding: .5rem 1rem;
        margin-bottom: 0;
        background-color: rgba(0, 0, 0, .03);
        border: 1px solid rgba(0, 0, 0, .125);
    }


    .capsicum-bg{
        background: url('../img/crop-economics/capsicum/capsicum-bg.jpg') no-repeat center center fixed; 
        background-size: cover; 
    }

    .cucumber-bg{
        background: url('../img/crop-economics/cucumber/cucumber-bg.jpg') no-repeat center center fixed; 
        background-size: cover; 
    }

    .colored-capsicum-bg{
        background: url('../img/crop-economics/colored-capsicum/colored-capsicum-bg.jpg') no-repeat center center fixed; 
        background-size: cover; 
    }

    .dutch-rose-bg{
        background: url('../img/crop-economics/dutch-rose/dutch-rose-bg.jpg') no-repeat center center fixed; 
        background-size: cover; 
    }

    .gerbera-bg{
        background: url('../img/crop-economics/gerbera/gerbera-bg.jpg') no-repeat center center fixed; 
        background-size: cover; 
    }

    .tomato-bg{
        background: url('../img/crop-economics/tomato/tomato-bg.jpg') no-repeat center center fixed; 
        background-size: cover; 
    }

    .shadow-none{
        box-shadow: none !important;
    }

    .card{
        border-radius: 0px !important;
    }

    .h-200 {
        height: 230px;
        width: 100%;
    }
    .h-250 {
        width: 100%;
    }

    .m-b {
        margin-bottom: .1rem;
    }

    .c-posted {
        color: #949494;
        font-size: 12px;
    }

    .mr_lft {
        margin-left: 2%;
    }

    .pagination .page-item.active .page-link:hover {
        background-color: var(--primary--color);
    }

    .pagination .page-item.active .page-link:focus {
        background-color: var(--primary--color);
    }

    .pagination .page-item.active .page-link:active {
        background-color: var(--primary--color);
    }

    .pagination .page-item .page-link:hover {
        background-color: var(--primary--color);
        color: #fff;
    }

    .pagination .page-item.active .page-link {
        background-color: var(--primary--color);
    }

    .b-newshome {
        border: 1px solid #ddd;
        padding: 10px !important;
    }

    .p-r-0 {
        padding-right: 0px;
    }

    h3.marg_tp_bt {
        margin: .4rem 0
    }

    .related_news_div {
        padding: 10px
    }

    .overlay1 {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0px;
        background-color: transparent;
        z-index: 0;
        position: absolute;
        color: transparent;
        text-align: center;
        background: rgba(0, 0, 0, 0.1);
    }

    .overlay1 :hover {
        background-color:rgba(0, 0, 0, 0.1);
    }

    .z-index-1 {
        z-index: 1;
    }

    .list-group-item {
        position: relative;
        display: block;
        padding: .3rem 0;
        margin-bottom: -1px;
        background-color: transparent;
        border: 0px solid rgba(0, 0, 0, .125);
        color: #eee;
        font-size: 14px;
    }

    .sec-hold {
        border-left: 1px solid #ddd;
        margin-bottom: 1rem;
        padding-left: 1rem;
    }

    table.table th, table.table td {
        padding-top: .3rem !important;
        padding-bottom: .3rem !important;
    }
    .text {
        color: #dedede;;
        font-size: 4.5rem;
        font-weight: bold;
        text-shadow: 0px 0px 0.5px;
    }

    .resizeimg {
        background: url("../img/double-arrow.png") no-repeat center;
        height: 280px;
        width: 100px;
        background-size: cover;
        position: relative;
    }

    .comments{
        font-size: 19px;
        line-height: 1.7;
        background: #ececec;
    }

    .footer-hover {
        transition: all 0.3s;
    }

    .footer-hover span {
        position: relative;
        transition: 0.3s;
    }

    .footer-hover span:after {
        font-family: 'FontAwesome';
        font-style: normal;
        font-size: .7rem;
        color: var(--primary--color);
        content: '\f061';
        position: absolute;
        opacity: 0;
        top: 0;
        left: -10px;
        transition: 0.3s;
    }

    .footer-hover:hover span {
        padding-left: 15px;
        color: var(--primary--color)
    }

    .footer-hover:hover span:after {
        opacity: 1;
        left: 0;
    }
    /*========================================== harsh styles =======================================*/

    .accordion-section {
        margin-bottom: 0;
    }

    .wid_9 {
        width: 9%;
    }

    .form_marg_bt {
        margin-bottom: 1.4rem;
    }

    .form_marg_bt input {
        border: 0
    }

    .form_marg_bt select {
        border: 0
    }

    .form_marg_bt textarea {
        border: 0;
        resize: none;
    }

    .font_clr {
        color: #808080;
        font-size: 12px;
        padding: 10px;
        line-height: 1.7;
    }

    .home_form_btn {
        box-shadow: none;
        padding: .7rem .9rem;
        font-size: 14px;
        width: 100%;
    }

    .img_overlay {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.3);
        position: absolute;
        color: transparent;
        text-align: center;
        z-index: 0;
    }

    .txt_shdw_none {
        text-shadow: none;
    }

    .navbar .dropdown-menu a.link_cat {
        padding: 0 15px;
        width: 100%;
        text-align: left;
        margin: 0px;
    }

    .wid_100 {
        width: 100%;
    }

    h5.card-title {
        margin-bottom: .3rem;
    }

    .border1 {
        border-bottom: 1px solid #ddd;
    }

    .about_sec_bgimg {
        background-image: url('../img/4.jpg');
        background-attachment: fixed;
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
        height: 100%;
        width: 100%;
    }

    .cta-section{
        background: rgb(240,122,41);
background: -moz-linear-gradient(90deg, rgba(240,122,41,1) 0%, rgba(240,92,41,1) 18%, rgba(240,169,41,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(240,122,41,1) 0%, rgba(240,92,41,1) 18%, rgba(240,169,41,1) 100%);
background: linear-gradient(90deg, rgba(240,122,41,1) 0%, rgba(240,92,41,1) 18%, rgba(240,169,41,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f07a29",endColorstr="#f0a929",GradientType=1);
    min-height: 200px;
    }

    .home_about_sec_bgimg {
        background-image: url('../img/4A.jpg');
        background-attachment: fixed;
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
        height: 100%;
        width: 100%;
    }

    .bg-primary {
        background-color: var(--primary--color) !important;
    }

    .advisory-side {
        background-image: url('../img/advisory-service/advisory-side.jpg');

        background-position: left;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
    }
    .become-farmer-side {
        background-image: url('../img/becomefarmer.jpg');
        background-position: center;
        background-repeat: no-repeat;
        height: 40%;
        width: 50vw;
        background-size: auto;
    }
    .thakyou-ivs {
        background-image: url('../img/thankyou-min.jpg');
        background-position: center;
        background-repeat: no-repeat;
        height: 40%;
        width: 50vw;
        margin-top: -8rem;
        background-size: auto;
    }

    .video-parallax {
        -webkit-transition-position: fixed;
        position: relative !important;
        width: 100% !important;
        height: 90vh;
    object-fit: cover;
    }
    /*-================== About Us =========================*/

.border-right-menu{
    border-right: 1px solid #0000001c !important;
}



    .body-text{
        font-size: 14px;
        line-height: 1.7;
    }

    .sec_height {
        height: 450px;
    }
    .sec_height_small {
        height: 140px;
        background: var(--secondary--color);
        background-position: left;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-gradient-shade{
        background: rgb(28,214,197);
        background: -moz-linear-gradient(97deg, rgba(28,214,197,1) 0%, rgba(0,150,136,1) 100%);
        background: -webkit-linear-gradient(97deg, rgba(28,214,197,1) 0%, rgba(0,150,136,1) 100%);
        background: linear-gradient(97deg, rgba(28,214,197,1) 0%, rgba(0,150,136,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1cd6c5",endColorstr="#009688",GradientType=1);
    }

    .sec_hd {
        padding: 0;
        text-align: center;
    }

    .pad_0 {
        padding: 0 0;
    }

    .pad_07 {
        padding: 0 7px;
    }

    .pad_tpbt_20 {
        padding: 30px 0
    }

    .page_head {
        border-bottom: 1px solid #333;
    }

    .box-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        text-align: center;
        padding: 23px;
        margin: 0 auto;
        color: #fff;
        background: var(--primary--color);
    }

    .box-circle-contact {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-align: center;
        padding: 10px;
        margin: 0 auto;
        color: #fff;
        background: var(--primary--color);
    }

    .box_:before {
        content: " ";
        display: block;
        position: absolute;
        left: 50.3%;
        z-index: 1;
        top: 82%;
        width: 1.5px;
        height: 18%;
        background-color: #fff;
    }
    .box_::after {
        font-family: FontAwesome;
        content: "\f0d8";
        position: absolute;
        top: 78%;
        right: 48.2%;
    }
    .icon-circle{
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    padding: 5px;
    }

    .box_ {
        height: 220px;
        color: #fff;
        text-align: center;
        padding: 1rem 2rem;
    }

    .box-circle-contact {
    width: 30px;
    height: 30px;
    border-radius: 10%;
    text-align: center;
    padding: 5px;
    margin: 0;
    color: #fff;
    background: var(--secondary--color);
    }

    .box_ h4 {
        margin-bottom: .7rem;
        font-size: 1rem;
    }


    .accordion-button:not(.collapsed) {
        color: #000;
        background-color: #ff6f4230;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    }

    .accordion-button:focus {
        z-index: 3;
        border-color: #ff6f42;
        outline: 0;
        box-shadow:none;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238BC34A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e) !important;
        transform: rotate(-180deg);
    }


    .profile-dasignation{
        font-size: 1rem;
    }
    .profile-name{
        font-size: 1.2rem;
    }
    .profile-description{
        font-size: 13.5px;
    }

    .box_ p {
        margin-bottom: .7rem;
        font-size: .8rem;
    }
    .box-circle-before:before{
        content: " ";
        display: block;
        position: absolute;
        left: 50%;
        z-index: 1;
        top: 100%;
        width: 15%;
        height: 1.5px;
        background-color: #fff;
    }
    .box-circle-after:after{
        content: " ";
        display: block;
        position: absolute;
        left: 35%;
        z-index: 1;
        top: 100%;
        width: 15%;
        height: 1.5px;
        background-color: #fff;
    }
    .time-line-right-arrow::before{
        font-family: FontAwesome;
        content: "\f0da";
        position: absolute;
        top: 97%;
        right: 34%;
    }
    .time-line-border {
        border: 1px solid #fff;
        width: 100%;
        margin: 0 4rem;
    background: #fff;
    }
.close-btn{
    margin: 110px 100px;
    color: #fff;
}
    .time-line-arrow {
        color: #fff;
        border: 1px solid #fff;
        padding: 5px;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        background: var(--primary--color);
        font-size: 10px;
        text-align: center;
        position: relative;
        top: 13px;
        left: 35px;
    }

    .time-line-check {
        color: #fff;
        border: 1px solid #fff;
        padding: 5px;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        background: var(--primary--color);
        font-size: 10px;
        text-align: center;
        position: relative;
        top: -15px;
        left: 96%;
    }

    .mb-2 {
        margin-bottom: .3rem;
    }

    .form_box {
        padding: 15px 0;
        background: #f5f5f5;
        text-align: center
    }

    .dir_img_div {
        margin-top: 20px;
    }
    /*============================================ Category page =========================================*/

    .prod_div {
        padding: 7px;
        transition: ease-in-out all .3s;
        margin: 10px 0;
    }

    .prod_Div:hover {
        box-shadow: 0px 2px 6px 0 #ddd;
    }

    .p_name {
        margin-bottom: .3rem;
        font-weight: 600;
        font-size: 19px;
        text-transform: uppercase;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .p_name_categories {
        margin-bottom: .3rem;
        font-weight: 600;
        font-size: 15px;
        text-transform: uppercase;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .p_desc {
        margin-bottom: .3rem;
        height: 24%;
        color: #7d7d7d;
        text-align: justify;
        display: -webkit-box;
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .p_desc_categoriey {
        margin-bottom: .3rem;
        height: 40%;
        color: #7d7d7d;
        display: -webkit-box;
        padding-bottom: 10px;
        max-width: 100%;
        font-size: 13px;
        line-height: 22px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .h-415{
        max-height: 465px;
    }

    .view_det_btn {
        padding: 5px 10px;
        margin: 5px;
        box-shadow: none;
    }

    .p_price {
        margin-bottom: .3rem;
        font-size: 20px;
        color: #333;
        font-weight: 600;
    }

    .marg_tpbt_10 {
        margin: 10px 0
    }
    /* homepage stories slider */

    .slider-wrapper div {
        position: relative;
    }

    .slider-wrapper {
        margin-top: 5vw;
        margin-left: 11vw;
    }

    .slide-image {
        height: 24vw;
    }

    .slide-image img {
        width: 24vw;
        cursor: pointer;
    }

    .slide-content {
        width: 25vw;
        color: #fff;
        padding: 3vw 18vw 3vw 9vw;
    }

    .slide-date {
        color: #0a8acb;
        font-size: 1.1vw;
        font-weight: 400;
        letter-spacing: 0.1vw;
        padding-bottom: 1.4vw;
    }

    .slide-title {
        font-size: 1.2vw;
        font-weight: 400;
        letter-spacing: 0.1vw;
        line-height: 1.55vw;
        padding-bottom: 1.8vw;
    }

    .slide-text {
        font-size: 0.80vw;
        line-height: 1.2vw;
        opacity: 0.8;
        padding-bottom: 4vw;
    }

    .slide-more {
        font-weight: 400;
        letter-spacing: 0.1vw;
        float: left;
        font-size: 0.9vw;
    }

    .slide-bullet {
        width: 0.5vw;
        height: 0.5vw;
        background-color: #0b8bcc;
        border-radius: 200%;
        position: relative;
        margin-left: 1.2vw;
    }

    .slide-nav {
        margin-left: 64vw;
        margin-top: -5.5vw;
    }

    div.overlay-blue {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        transition: 0.5s ease all;
    }

    div.overlay-blue:hover {
        background-color: rgba(13, 27, 43, 0.5);
    }

    .arrows {
        width: 3.5vw;
        margin-top: -5.8vw;
        margin-left: 72vw;
        position: relative;
    }

    .arrow {
        display: inline-block;
        position: absolute;
        width: 1.2vw;
        height: 1.2vw;
        background: transparent;
        text-indent: -9999px;
        border-top: 0.15vw solid #fff;
        border-left: 0.15vw solid #fff;
        transition: all .1s ease-in-out;
        text-decoration: none;
        color: transparent;
    }

    .arrow:hover {
        border-color: #0A8ACB;
        border-width: 0.25vw;
    }

    .arrow:before {
        display: block;
        height: 200%;
        width: 200%;
        margin-left: -50%;
        margin-top: -50%;
        content: "";
        transform: rotate(45deg);
    }

    .arrow.prev {
        transform: rotate(-45deg);
        left: 0;
    }

    .arrow.next {
        transform: rotate(135deg);
        right: 0;
    }

    .text-r {
        text-align: right;
    }

    .modal-body {
        padding: 0 0 0 0;
    }

    .product-img {
        background-image: url('../img/product_cat/pro1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 335px;
        width: 100%;
    }


    .text-l-mob {
        text-align: center;
    }

    .p-15 {
        padding: .4rem !important;
    }

    .text-ellipsis {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    /* .slick-track {
        width: 834px !important;
    }

    .slick-slide {
        width: 200px !important;
    } */

    .prodct-details-img {
        display: block;
        position: relative;
        margin: 0px auto 0px;
    }

    .product-h {
        height: 400px;
    }

    .padd-15 {
        padding: 5px 15px;
    }

    .w-100 {
        width: 100%;
    }
    .padding-left-4{
        padding-left: 1.5rem !important;
    }
    .padding-left-3{
        padding-left: 1rem !important;
    }

    .c-pointer {
        cursor: pointer;
    }

    .padd-left {
        padding-left: 10px;
    }

    .resize {
        resize: none;
    }

    .text-justify {
        text-align: justify;
    }

    .text {
        text-align: justify;
        margin-bottom: .2rem;
    }

    .font-Inter {
        font-family: Inter;
    }

    .logo-img {
        width: 55%;
        margin-left: 25px;
    }
    /* Image Hover */

    .parent {
        overflow: hidden;
    }

    .child {
        background-size: cover;
        background-repeat: no-repeat;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .parent:hover .child,
    .parent:focus .child {
        -ms-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .parent:hover .child:before,
    .parent:focus .child:before {
        display: none;
    }

    .parent:hover a,
    .parent:focus a {
        display: block;
    }



    #my-content {
        background: #000;
        color: #fff;
        padding: 3rem;
    }

    .farmer-menu {
        z-index: 2;
        position: absolute;
        top: 43%;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        color: #1a1a1a;
        padding: 0.5rem;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

    .farmer-menu-mob {
        z-index: 2;
        width: 100%;
        background: rgba(0, 0, 0, 0.81);
        color: #fff;
        padding: .5rem 0;
    }

    .fixed {
        position: fixed;
        top: 10%;
    }

    .side-menu-2 {
        height: 2em;
        padding-top: 12.5em;
        position: absolute;
        top: 64%;
        width: 200px;
    }

    .side-menu-body {
        background-color: rgba(0, 0, 0, 0.44);
    }

    .enquery{
        z-index: 4;
        position: relative;
        background: #fff;
    }


/* Farmer Page Css */

#sidebar {
    margin: 0 auto;
    /* position: fixed; */
    z-index: 2;
    position: relative;
    top: 40%;
    width: 350px;
    height: 0;
    background: #fff;
    display: none;
}
#sidebar ul {
    cursor: pointer;
    margin: 20px 0 0;
    background: rgba(0,0,0,0.6);
    padding-left: 0;
    border: 1px solid #c0c0c0;
}
#sidebar ul li {
    display: inline-block;
    margin:0;
    width: 100%;
}

#sidebar a {
    color: #1a1a1a;
    background: #ffffff;
    font-family: sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    height: 48px;
    display: flex;
    border-bottom: 1px solid #ccc;
}
#sidebar a span{
    padding: 15px;
    border-right: 1px solid #fc0;
    color: #ddd;
    width: 15%;
}
.sidemenu-b-w{
    padding: 16px 30px;
    font-size: 13px;
}
#sidebar .sidemenu-active{
    color: #fff;
    overflow: hidden;
    background-color: var(--primary--color);
    position: relative;
    height: 60px;
    top: 0px;
    transition: all 0.1s ease-out;
}
#sidebar .sidemenu-active .sidemenu-b-w{
    position: relative;
    top: 10%;
}
#sidebar .sidemenu-active::before{
    content: '';
    width: 5px;
    top: 25%;
    height: 35px;
    bottom: 5px;
    background: #fc0;
    display: inline-block;
    position: absolute;
    left: 14.5%;
}
#sidebar .sidemenu-active .span-active{
    padding-top: 1.1rem;
}
a{
    color: #fff;
}

.content { width: 100%; height: 100%; }
.content > section { width: 100%; height: 100%; }

/* Not included in the download archive */
.go-back {margin: 0 auto; padding: 200px 0; max-width: 450px; font-size: 16px; text-align: center;}
.go-back a {color: rgba(255,255,255, 0.9); line-height: 180%; text-transform: none; font-weight: normal;}



   #sidebar.side-menu-fixed {
    position: fixed;
    top: 20%;
    z-index: 2;
    left: 5%;
    display: block;
    }

    .b-right {
        border-right: 1px solid #de9e17;
    }

    #sidemanubar .sidemenu-active {
        min-height: 70px;
        background-color: rgb(90, 89, 84);
        overflow: hidden;
    }

    .sidemenu-active:active {
        min-height: 70px;
        background-color: rgb(90, 89, 84);
        overflow: hidden;
    }
    /* .sidemenu-b-w::before {
        content: '';
        width: 5px;
        top: 5px;
        bottom: 5px;
        background: #fc0;
        display: inline-block;
        position: absolute;
        left: 0;
    } */

    .sidemenu-icon {
        float: left;
        padding: 1rem;
        border-right: 1px solid #de9e17;
        height: 60px;
    }

    .enquary-active {
        color: white;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .enquary-btn {
        padding: 11px 47px;
        background: #fff;
        height: 40px;
        float:left;
    }
    .enquiry-form{
        box-shadow: 2px 3px 9px 4px rgba(0, 0, 0, 0.17);
    }

    /* Media Quary For Mobile */
    /* Prallex */

    .sidemenu-text-1 {
    position: absolute;
    top: 30%;
    right: 5%;
    left: 33%;
    width: 50%;
    z-index: 99;
}


    .sidemenu-text-1-mob {
        position: absolute;
        top: 5%;
        right: 5%;
        left: 5%;
        font-size: 12px;
    }

    .sidemenu-text-2 {
        position: absolute;
        top: 45%;
        right: 5%;
        left: 40%;
    }

    .sidemenu-text-3-mob {
        position: absolute;
        top: 5%;
        right: 5%;
        left: 5%;
        font-size: 12px;
    }

    .sidemenu-text-3 {
        position: absolute;
        top: 45%;
        right: 5%;
        left: 40%;
    }

    .sidemenu-text-3-mob {
        position: absolute;
        top: 5%;
        right: 5%;
        left: 5%;
        font-size: 12px;
    }
    .soldby-card{
        background-color: #fff !important;
        border-radius: 0.25rem;
        padding: 0px 0px;
        z-index: 2;
        height: 610px;
        margin-top: -1.8rem;
        box-shadow: 2px 3px 9px 4px rgba(0, 0, 0, 0.04);
        background-image: url(../img/leafgray.png);
        background-size: 19rem;
        background-repeat: no-repeat;
        background-position: bottom;
        background-position-y: 17rem;
        background-position-x: 4rem;
    }

    .product-image-card{
        background-color: #fff;
        background-clip: border-box;
        border: 1px solid rgba(0,0,0,.125);
        border-radius: .25rem;
        padding: 10px 15px 5px;
        height: 575px;
        box-shadow: 2px 3px 9px 4px #eee;
    }

    .enquiry-card{
        background-color: #fff;
        background-clip: border-box;
        border-radius: 0.25rem;
        padding: 0px 0px;
        /* height: 415px; */
        margin-top: -5.8rem;
        box-shadow: 2px 3px 9px 4px rgba(0, 0, 0, 0.08);
        /* background: url('../img/banner4.jpg') no-repeat ;  */
    }
    .h-400{
        height: 425px;
    }

    .h-425{
        min-height: 425px;
    }
    .contact-p{
        padding: 0 0 0 45px;
    }
    .px-3-mob{
        padding-left: 1rem!important;
        padding-right: 1rem!important;
    }
    .thumbnail {
        max-width: 40%;
    }

    .italic {
        font-style: italic;
    }

    .small {
        font-size: 0.8em;
    }
    /** LIGHTBOX MARKUP **/

    .lightbox {
        /** Default lightbox to hidden */
        display: none;
        /** Position and style */
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100%;
        text-align: center;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
    }

    .lightbox img {
        /** Pad the lightbox image */
        max-width: 90%;
        max-height: 80%;
        margin-top: 2%;
    }

    .lightbox:target {
        /** Remove default browser outline */
        outline: none;
        /** Unhide lightbox **/
        display: block;
    }


    /* Categories List page  */


    .categories-banner-details{
        opacity: 1;
        visibility: visible;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        background-color: transparent;
        width: 40%;
        position: absolute;
        /* bottom: 30px; */
        padding: 2rem;
        right: 4%;
        overflow: hidden;
        min-height: 109px;
    }


    .categories-banner-details::before{
        content: " ";
        display: block;
        position: absolute;
        left: 30px;
        top: 0;
        width: 4px;
        height: 100%;
        background-color: var(--primary--color);
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    .categories-banner-details-inner{
        overflow: hidden;
        padding: 2rem;
    }
    .categories-banner-details-inner::before{
        content: "";
    -webkit-transform: skewX(-7deg);
    -ms-transform: skewX(-7deg);
    transform: skewX(-7deg);
    background-color: rgba(255,255,255,.85);
    position: absolute;
    width: 100%;
    height: calc(100% - 40px);
    top: 20px;
    left: 34px;
    }
    .video-icon::before{
        content: "\f04b";
        font-family: FontAwesome;
        display: block;
        font-size: 3rem;
        color: #fff;
        cursor: pointer;
        width: 100px;
        height: 100px;
        background: var(--primary--color);
        border-radius: 50%;
        position: absolute;
        top: 35%;
        left: -5%;
        z-index: 3;
        padding: 15px 0 16px 35px;

    }

    .allcategories-details{
        color: #000;
        position: relative;
    }
    .allcategories-header{
        color: #fff;
    position: relative;
    top: 130px;
    font-size: 3.5rem;
    }

    .allcategories-w{
        width: 20%;
        height: 425px;
        padding: 1rem 2rem
    }
.clr-gray{
    color: #b9b4b4;
}

.video-section-container{
        width: 100%;
        height: 100%;
}

.video-section-text{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-color: transparent;
    width: 40%;
    position: absolute;
    top: 8%;
    padding: 2rem;
    right: 6%;
    min-height: 100px;
}

.video{
    width: 100%;
    height: 100%;
}

.video-section-text::before{
content: " ";
display: block;
position: absolute;
left: 30px;
top: 0;
width: 4px;
height: 100%;
background-color: var(--primary--color);
-webkit-transform: rotate(7deg);
-ms-transform: rotate(7deg);
transform: rotate(7deg);
}

.video-section-text-inner{
overflow: hidden;
padding: 2rem;
}
.video-section-text-inner::before{
content: "";
-webkit-transform: skewX(-7deg);
-ms-transform: skewX(-7deg);
transform: skewX(-7deg);
background-color: #0000006b;
position: absolute;
width: 100%;
height: calc(100% - 40px);
top: 20px;
left: 34px;
}
.video-section-text-details{
color: #000;
position: relative;
}


/* Prakash Login page */
.login-bg{
    width: 100%;
    height: 100%;
    background-color: transparent;
    position: relative;
    display: table;
    background: url('../img/login.jpg') no-repeat;
    background-size: cover;
  }


.login-btn{
    background: var(--primary--color);
      color: #fff;
  }

  .z-index-2{
    z-index: 5;
    position: relative;
    background-color: #fff;
  }

  .z-index-3{
    z-index: 5;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
  }



  .v-container{

    background: #fff;

}

.video{
    widows: 100%;
}
.c-video{
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.c-video:hover .controls{
    transform: translateY(0);

}
.controls{
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, .7);
    transform: translateY(100%) translateY(-5px);
    transition: all 0.2s;
}
.button{
    padding: 10px;
}

.buttons button{
    background: none;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.button button::before{
    content: '\f144';
    font-family: 'Font Awesome 5 Free';
    width: 30px;
    height: 30px;
    display: inline-block;
    font-size: 28px;
    color: #fff;
    -webkit-font-smoothing: antialiased;

}

.button button.play::before{
    content: '\f144';
}

.button button.pause::before{
    content: '\f28b';
}

.orange-bar{
    height: 10px;
    top: 0;
    left: 0;
    width: 100% ;
    background: #000'
}

.orange-juice{
    height: 10px;
    background-color: orangered;

}
.video-bgimg{
    background-image: url('../img/index-video.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 500px;
        width: 100%;
        position: relative;
}

.video-bgimg-2{
    background-image: url('../img/stories.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 500px;
        width: 100%;
        position: relative;
}


.v-container_1{
    margin-bottom: -7px;
}

.contact-card-top{
    margin-top: -90px;
}
.enquiry-card-top{
    margin-top: -170px;
}

.icon-about-1{
    width: 35px;
    height: 36px;
}


.border-radius-5{
    border-radius: 5px;
}
.header-color{
    color: #fff;
}
ul.breadcrumb {
    margin: 0 0 0px;
    background-color: transparent;
    padding: 10px 0;
    display: inline-block;
    width: 100%;
    line-height: 100%;
}

.breadcrumb-container {
    padding: 8px 15px;
    list-style: none;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: -1px 12px 32px -23px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #ececec;

}


ul.breadcrumb li {
    display: inline-block;
    padding: 0 10px 0 5px;
    margin-right: 7px;
    position: relative;
}
ul.breadcrumb li a {
    display: block;
    padding: 0;
    color: #999;
    text-decoration: none;
    font-size: .9rem;
}

.breadcrumb a::before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 15px;
    right: -5px;
    top: 0;
    position: absolute;
}
.breadcrumb>li+li:before{
    content: "";
    padding: 0;
    display: none;
}
.breadcrumb li:last-child a:before{
    display: none;
}
.breadcrumb span{
    color: var(--primary--color);
}


/* Product Slider Design */
.js .slider-single > div:nth-child(1n+2) { display: none }

.js .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }

.product-slider img {
	font-size: 2.25rem;
	position: relative;
    text-align: center;
    border: 1px solid transparent;
}

.product-slider span img {
	font-size: 2.25rem;
	margin: .5rem;
    padding: 2%;
    height: 85px;
    border: 1px solid transparent;
	position: relative;
	text-align: center;
}

.slider-single img {
	line-height: 10rem;
}

/* .slider-nav img::before {
    content: '\f061';
    font-family: FontAwesome;
	display: block;
	padding-top: 75%;
} */

.slider-nav img span {
	position: absolute;
	top: 50%;
    left: 50%;
    height: 200px;
	transform: translate(-50%, -50%);
}


.slider-nav .slick-slide { cursor: pointer; }

.slick-slide.is-active img {
	/* color: #c00; */
	background-color: #fff
}
.font-14{
    font-size: 14px;
}



.product-details-card{
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    padding: 10px 15px 5px;
    height: 640px;
    box-shadow: 2px 3px 9px 4px #eee;
}
.product-list-card{
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    padding: 10px 15px 5px;
    height: 640px;
    box-shadow: 2px 3px 9px 4px #eee;
}
.getdetails{
    position: relative;
    bottom: -180%;
}

.btn-shadow-0{
    box-shadow: none;
}

.btn-shadow-0:hover{
    box-shadow: none;
}
.b-bottom{
    border-bottom: 4px solid var(--primary--color);
    padding-bottom: 13px;
}
.table-responsive{
    margin-top: -5px;
}

.product-bgcolor{
    background: #f7f7f7;
}
.h-40{
    height: 40px;
}
.btn-blue-grey {
    background-color: rgba(113, 114, 114, 0.77) !important;
    color: #fff;
}
.hover_effect:hover{
    background: #ececec;
    color:#fff;
}

.w-5{
    width: 50px;
}

.font-subhead{
    font-size: 24px;
}

.border-dark{
    border-top: 1px solid #fff;
}

.privacy-bgclr{
    background: #f2f3f7;
}
.privacy-card-top{
    margin-top: -2rem;
}
.privacy-card{
    background: #fff;
}
.farmer-head{
    width: 239px;
    height: 85px;
    margin-left: 52px;
    background-color: #fc0;
    z-index: 101;
    position: relative;
    top: 21px;
    text-align: right;
}
.farmer-head::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #fc0;
    display: inline-block;
    position: absolute;
    bottom: -18px;
    left: 0;
}
.for-farmer{
    font-size: 33px;
    font-weight: 600;
    text-align: left;
}

.contact-img{
    width: 160%;
    height:96%;
}

.iframe-size{
  width: 100%;
  height: 1560px;
}

.iframe-size-2 {
    width: 640px;
    height: 1650px;
}

.blog-category .modcontent {
    padding: 0;
}

.blog-category .modcontent ul li {
    border: none;
}

.blog-category .filters-panel .list-view button.btn {
    color: #fff;
}

.blog-header {
    margin: 0 0 20px;
}

.blog-header h3 {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 5px;
    /* [4] */
    /* [6] */
    /* [6] */
    /* [7] */
    font-size: 16px;
    font-size: 1.6rem;
    /* [8] */
    color: #555;
}

.blog-cate ul {
    margin-bottom: 0;
    padding: 10px 0;
}

.blog-cate ul li.list-group-item {
    border: none;
    padding: 5px 15px;
}

.blog-listitem .blog-item .blog-item-inner {
    display: block;
    margin-bottom: 30px;
    transition: all 0.2s;
}

.blog-listitem .blog-item .blog-item-inner:hover .blog-content h4>a {
    color: var(--primary--color);
}

.blog-listitem .blog-item .blog-item-inner .itemBlogContent {
    padding: 0;
}

.blog-listitem .blog-item .blog-item-inner .article-image {
    position: relative;
}

.blog-listitem .blog-item .blog-item-inner .article-image:before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 85px solid transparent;
    top: 0;
    position: absolute;
    z-index: 2;
    border-left: 80px solid #fff;
    left: 0;
}

.blog-listitem .blog-item .blog-item-inner .article-image .article-date {
    position: absolute;
    z-index: 2;
    top: 2px;
    left: 3px;
    line-height: 20px;
}

.blog-listitem .blog-item .blog-item-inner .article-image .article-date .date {
    font-size: 14px;
    color: #909090;
    display: block;
}

.blog-listitem .blog-item .blog-item-inner .article-image .article-date .date b {
    font-size: 18px;
    color: #909090;
    display: block;
}

.blog-listitem .blog-item .blog-item-inner .article-image:hover img {
    opacity: 0.8;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
}

.gallery_img {
    height: 275px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-listitem .blog-item .blog-item-inner .itemBlogContent {
    padding: 15px;
}

.blog-listitem .blog-item .blog-item-inner .blog-meta {
    display: inline-block;
    padding: 0px 0 10px;
    border-bottom: 1px solid #ebebeb;
    vertical-align: top;
    width: 100%;
    font-size: 13px;
}

.blog-listitem .blog-item .blog-item-inner .author,
.blog-listitem .blog-item .blog-item-inner .comment_count,
.blog-listitem .blog-item .blog-item-inner .blog-date {
    color: #b3b3b3;
    display: inline-block;
    margin-right: 15px;
}

.blog-listitem .blog-item .blog-item-inner .author i,
.blog-listitem .blog-item .blog-item-inner .comment_count i,
.blog-listitem .blog-item .blog-item-inner .blog-date i {
    margin-right: 8px;
}

.blog-listitem .blog-item .blog-item-inner .author a,
.blog-listitem .blog-item .blog-item-inner .comment_count a,
.blog-listitem .blog-item .blog-item-inner .blog-date a {
    color: #b3b3b3;
}

.blog-listitem .blog-item .blog-item-inner .blog-content {
    clear: both;
    display: inline-block;
    width: 100%;
}

.blog-listitem .blog-item .blog-item-inner .blog-content h4 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .article-description {
    margin: 5px 0 15px 0;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .readmore {
    font-size: 14px;
    margin-top: 10px;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .readmore .fa {
    margin-right: 8px;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .readmore>a {
    color: #78d31d;
}

.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogImg {
    width: 320px;
    margin: 0 15px 0 0;
    float: left;
}

@media (max-width: 767px) {
    .blog-listitem .blog-grid-1 .blog-item-inner .itemBlogImg {
        width: auto;
    }
}

.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogContent {
    width: auto;
    float: none;
    overflow: hidden;
    clear: none;
    padding: 0;
}

@media (max-width: 767px) {
    .blog-listitem .blog-grid-1 .blog-item-inner .itemBlogContent {
        float: left;
        margin-top: 15px;
    }
}

@media (min-width: 1200px) {
    .blog-listitem .blog-grid-2:nth-child(2n+1) {
        clear: both;
    }
}

.blog-listitem .blog-grid-2 .blog-item-inner {
    background: none;
    box-shadow: none;
}

.blog-listitem .blog-grid-2 .blog-item-inner .itemBlogContent {
    padding: 10px 0;
}

.blog-listitem .blog-grid-2 .article-description {
    display: none;
}

@media (min-width: 1200px) {
    .blog-listitem .blog-grid-3:nth-child(3n+1) {
        clear: both;
    }
}

.blog-listitem .blog-grid-3 .blog-item-inner {
    background: none;
    box-shadow: none;
}

.blog-listitem .blog-grid-3 .blog-item-inner .itemBlogContent {
    padding: 10px 0;
}

.blog-listitem .blog-grid-3 .article-description {
    display: none;
}

@media (min-width: 1200px) {
    .blog-listitem .blog-grid-4:nth-child(4n+1) {
        clear: both;
    }
}

.blog-listitem .blog-grid-4 .article-description {
    display: none;
}

.blog-listitem .blog-list .blog-item-inner {
    padding: 0px;
    background: none;
    margin-bottom: 35px;
}

.blog-listitem .blog-list .blog-item-inner .itemBlogImg {
    margin-bottom: 15px;
}

.blog-listitem .blog-list .blog-item-inner .itemBlogContent {
    padding: 0;
}
.gallery-name-clr{
    color: #000;
}


.privacy-bgclr{
    background: #eee;
}

.thanks-popup{
    position: absolute;
    width: 25%;
    right: 30px;
    top: 71px;
    border: 3px solid var(--primary--color);
}
.thanks-popup-body{
    margin: 0;
    color: var(--primary--color);
    font-size: 15px;
    padding: 10px;
}
.thumbnail {margin-bottom:6px;}
.carousel-control.left,.carousel-control.right{
 background-image:none;
 margin-top:10%;
 width:5%;
}
.g-img{
   max-width:100%;
   /* max-height: 100%; */
   display: flex;
   border-radius: 0.5em;
}
.gallery-img-height{
    height: 525px;
}
.modal-box-shadow{
    background: transparent;
    box-shadow: none;
}
.gallery-bgimg-modal{
    height: 600px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.modal-font{
    font-size: 2rem;
}
.modal_projectname{
    background: #fff;
    width: 50%;
    padding: 2rem 0;
    right: -50%;
    float: right;
    overflow: hidden;
    height: 525px;
    position: absolute;
    border-bottom: 1px solid #eee;
    overflow: scroll;
}
.modal-center{
    margin: 30px 15rem;
}



@media screen and (min-device-width: 320px) and (max-device-width: 767px) {
  .iframe-size{
    width: 100%;
    height: 1450px;
  }
  .iframe-size-2{
    width: 330px;
    height: 1650px;
  }
    .modal-center{
        margin: 30px 0;
        width: 100%;
    }
    .modal_projectname{
        display: none;
    }
    .padding-left-4{
        padding-left: 0 !important;
    }
    
    
    .cta-section{
        min-height: 50px;
        bottom: 0rem;
        align-self: flex-end;
        z-index: 9;
        }

  

        .z-index-adjust{
            z-index: 999 !important;
    position: relative;
    background-color: #fff;
        }

    .padding-left-3{
        padding-left: 0 !important;
    }
    .contact-card-top{
        margin: 0;
    }
    .close-btn{
        margin:85px 10px;
        color: #fff;
    }

    .video-section{
        position: relative;
        width: 100%;
        height: 90vh;
        display: flex;
    }
    .video-parallax{
        height: 100vh;
        object-fit: cover;
    }

    .px-3-mob{
        padding:0 !important;
    }
    .about_sec_bgimg{
        background-image: none;
    }
    .contact-img{
        display: none;
    }
    .h-400{
        height: 230px;;
    }
    .h-farmer-250{
        height: 230px;
    }
    .h-export{
        height: 210px;
    }

    .enquiry-card{
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .d_heading{
        font-size: 1.5rem;
    }
    .soldby-card{
        margin: 0;
        height: 480px;
    }

    .product-img-card-mob{
        background-color: #fff;
        background-clip: border-box;
        border: 1px solid rgba(0,0,0,.125);
        border-radius: .25rem;
        padding: 10px 15px 5px;
        height: 530px;
        box-shadow: 2px 3px 9px 4px #eee;
    }
    .product-image-card{
        height: 660px;
    }

    .p-left-mob{
        padding-left: 15px;
    }
    .p-right-mob{
        padding-right: 15px;
    }
    .p-top-mob{
        padding-top: 15px;
    }
    .p-bottom-mob{
        padding-bottom: 15px;
    }
    .m-left-mob{
        margin-left: -15px;
    }
    .m-right-mob{
        margin-right: -15px;
    }
    .m-top-mob{
        margin-top: 5rem;
    }
    .m-bottom-mob{
        margin-bottom: 15px;
    }
    #sidebar.side-menu-fixed{
        display: none;
    }

    .sec_height_small {
        height: 170px;
        background: var(--secondary--color);
        background-position: left;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .sidemenu-text-1 {
        position: absolute;
        top: 25%;
        right: 0;
        left: 0;
        padding: 0 20px;
        width: 100%;
        z-index: 1;
    }
    .s-home_1{
        height: 60%;
    }
    .s-home_2{
        height: 60%;
    }
    .font-20-mob{
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    .font-14-mob{
        font-size: 14px;
    }

    .font-9-mob{
        font-size: 9px !important;
    }

    .display-none {
        display: none !important;
    }
    .px-5 {
        padding: 1em !important;
    }
    .p-left {
        padding: 0;
    }
    .p-center {
        padding: 0;
    }
    .p-right {
        padding: 0;
    }

    .eco-prd-tlt-left {
        padding: 1rem 0;
        text-align: left;
    }
    .all-tlt {
        margin-bottom: 0;
        font-size: 4rem;
    }
    .product-header1 {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    .f-1 {
        font-size: 1.5rem;
    }
    .text-c {
        text-align: center;
    }
    .text-r {
        text-align: center;
    }
    .text-l-mob {
        text-align: left;
    }
    .padding-1 {
        padding: 0 .5rem;
    }
    .next-btn {
        right: 3%;
        background: transparent;
    }
    .border-bot {
        display: inline-block;
        width: 75px;
    }
    .location {
        padding-left: 0;
    }
    .address {
        padding-left: 0;
    }
    .box_:after{
        content: " ";
    }
    .box_:before{
        background: transparent;
    }
    .box-circle-after:after{
        background: transparent;
    }
    .box-circle-before:before{
        content: " ";
        display: block;
        position: absolute;
        left: 50%;
        z-index: 1;
        width: 1.5px;
        height: 18%;
        background-color: #fff;
        top: 80%;
    }
    .time-line-right-arrow::before{
        font-family: FontAwesome;
    content: "\f0d7";
    display: block;
    position: absolute;
    left: 42.7%;
    z-index: 1;
    top: 95%;
    width: 15%;
    height: 1.5px;
    background-color:transparent;
    }
}


@media screen and (min-device-width: 768px) and (max-device-width: 1900px) {
    .display-none-d {
        display: none;
    }
}

@media screen and (min-device-width: 992px) and (max-device-width: 2560px) {
    .display-n-md {
        display: none;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 991px) {
    .modal-center{
        margin: 30px 0;
    }
    .sec_height_small {
        height: 200px;
        background: var(--secondary--color);
        background-position: left;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .modal_projectname{
        display: none;
    }
    .border-bot{
        display: inline-block;
    }
    .text-c{
        text-align: center !important;
    }
    .soldby-card{
        height: 400px;
    }
    .product-image-card{
        height: 505px;
    }
    .product-img-card-mob{
        background: #fff;
    }
    .clip-left{
        clip-path: circle(141.5% at 0% 0%);
    }
    .time-line-border{
        display: none;
    }
    .time-line-check{
        display: none;
    }
    .time-line-arrow{
        display: none;
    }
    .time-line-right-arrow::before{
        display: none;
    } .box-circle-before:before{
        display: none;
    }
    .box-circle-after:after{
        display: none;
    }
     .box_:before .box_::after{
        display: none;
    }
    .box_::after{
        display: none;
    }
    .box_::before{
        display: none;
    }
    .enquiry-card{
        margin-top: -1.8rem;
    }
    .sidemenu-text-1{
        left: 10%;
        width: 50%;
        top: 15%;
    }
    #sidebar.side-menu-fixed{
        display: none;
    }
    #mySidenav{
        background-position: right;
    background-size: cover;
    }
    .video-section{
        height: 65vh;
    }
    .product-header{
        font-size: 1.6rem;
    }
    /* .pt-5{
        padding-top: 0 !important;
    } */
    .product-bgimg{
        height: 270px;
    }
    .video-icon::before{
        left: -22%;
    }
    .video-section-text{
        top: 18%;
        width: 45%;
    }
    .video-section-text::before{
        left: -25px;
        top: 10px;
    }
    .video-section-text-inner{
        padding: 0;
    }
    .video-section-text-inner::before{
        top: 25px;
        left: -20px;
    }
    .display-none-md {
        display: none !important;
    }
    .eco-hld-left {
        padding: 1.5rem 1rem;
    }
    .eco-prd-tlt-left {
        padding: 0 1rem 0 0rem;
    }
    .eco-prd-tlt-right {
        padding: 0 1rem 0 0;
    }
    .p-l-2 {
        padding-left: 0;
    }
    .farmer-menu {
        top: 76%;
    }
    .fixed {
        top: 18%;
    }
    .sidemenu-text-1-mob {
        position: absolute;
        top: 25%;
        right: 5%;
        left: 10%;
        font-size: 14px;

    }
    .sidemenu-text-2-mob {
        position: absolute;
        top: 25%;
        right: 5%;
        left: 10%;
        font-size: 14px;
    }
    .sidemenu-text-3-mob {
        position: absolute;
        top: 25%;
        right: 5%;
        left: 10%;
        font-size: 14px;
    }
}

@media screen and (min-device-width: 992px) and (max-device-width: 1250px) {
    .section-two-slider {
        font-size: 1.5rem;
    }
    .modal-center {
        margin: 30px 0rem;
    }

}




    /* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    z-index: 555;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #ffffffcf;
    padding: 15px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    font-family: system-ui;
}
#gdpr-cookie-message h4 {
    color: var(--primary--color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message h5 {
    color: #000;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: #000;
    font-size: 15px;
    line-height: 1.5em;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    color: 000;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: var(--primary--color);
    color: white;
    height: 35px;
    width: 100px;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    background: #008000;
    color: #fff;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: white;
    color: #000;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}

.gdpr-cross{
    position: absolute;
    right: 20px;
    top: 10px;
}
