@font-face {
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Gilroy-Bold'), url('Gilroy-Bold.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Gilroy-Heavy';
    font-style: normal;
    font-weight: normal;
    src: local('Gilroy-Heavy'), url('Gilroy-Heavy.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Gilroy-Light';
    font-style: normal;
    font-weight: normal;
    src: local('Gilroy-Light'), url('Gilroy-Light.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Gilroy-Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Gilroy-Medium'), url('Gilroy-Medium.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Gilroy-Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Gilroy-Regular'), url('Gilroy-Regular.woff') format('woff');
    }

h1,h2,h3,h4,h5,h6
{
    font-family: "Montserrat Alternates", serif !important;
}
p,body,html .action.primary, html .btn
{
    font-family: "Quicksand", serif !important;
    font-weight: 500;
}
header .navigation ul li a 
{
    font-family: "Quicksand", serif !important;
}
input[type="text"], input[type="password"], 
input[type="url"], input[type="tel"], 
input[type="search"], input[type="number"], 
input[type*="date"], input[type="email"],
Select,textarea
{
    border-radius: 10px !important;
}
.pd-50
{
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-heading h1
{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-heading p 
{
    font-size: 18px;
    margin-bottom: 0px;
    color: #323232;
}
.section-heading h1 span
{
    color:#489929;
}
.process-info
{
    column-gap: 10px;
}
.process-info h4 
{
    font-size: 18px;
    color: #489929;
    font-weight: 600;
    margin-bottom: 0px;
}
.process-step img
{
    width: 100%;
}
.grid-row {
    display: grid;
    gap: 16px; 
    grid-template-columns: repeat(3, 1fr);
}
.why-choose-box
{
    background-color: #FFBD1D;
    border-radius: 12px;
    column-gap: 10px;;
}
.why-choose-box h5
{
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
.why-choose .section-bg
{
    position: absolute;
    right: -85px;
    top: -50px;
}
.why-choose .section-bg img 
{
    max-width: 600px;
    width: 600px;
}
.how-we-work
{
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 100px;
}
.about-mangoes .section-heading h1 
{
    font-family: 'Gilroy-Medium' !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-mangoes .ab-icon span 
{
    display: flex;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    background-color: #52721B;
    border-radius: 12px;
}
.about-left .d-flex 
{
    column-gap: 10px;
}
.about-left h5 
{
    font-size: 16px;
    font-weight: 600;
}
.about-left p 
{
    font-size: 14px;
    font-weight: 400;
}
.about-mangoes 
{
    background-color: #FFBD1D;
    padding-top: 150px;
}
.process-info img 
{
    width: auto;
}
.right-img-box
{
    margin-top: -130px;
}
.right-img-content
{
    background-color: #52721B;
    border-radius: 12px;
    border: 5px solid #FFBD1D;
    display: grid;
    padding: 20px 15px;
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
    left: 15px;
    top: -50px;
    right: 15px;
    column-gap: 15px;
}
.right-img-content .d-flex:last-child 
{
    border-right: none;
}
.right-img-content .d-flex
{
    column-gap: 10px;
    border-right: 1px solid #FFFFFF80;
}
.right-img-content span 
{
    font-size: 36px;
    font-weight: bold;
    color: white;
    font-family: 'Gilroy-Medium' !important;
}
.right-img-content h6
{
    color: white;
    font-size: 15px;
    margin-bottom: 0px;
    font-family: 'Gilroy-Medium' !important;
    letter-spacing: 1px;
}
.block-static-block 
{
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.marquee {
    /* overflow: hidden; */
    position: relative;
    height: 150px; /* Adjust the height to fit your content */
    width: 100%; /* Make it full width */
    background-color: #FFBD1D;
  }
  
  .marquee__inner-wrap {
    width: 100%;
    overflow: hidden;  /* Ensure no horizontal scrollbar */
    background-color: white;
    padding: 15px 0px;
    transform: rotate(358deg);
  }
  
  .marquee__inner {
    display: flex;  /* Use flexbox for easy alignment */
    animation: marquee 30s linear infinite; /* Adjust speed as needed */
    width: fit-content; /*Important:  width should fit its content */
    padding-left: 100%; /* to start from right edge of parent div */
    white-space: nowrap;  /* Prevent line breaks inside */
    column-gap: 50px;
  
  }
  
  
  .marquee-box {
    display: flex;  /* Align image and text vertically */
    align-items: center;
    justify-content: center; /* Center content vertically */
    text-align: center;
    column-gap: 15px;
    margin: 0 20px; /*Space between boxes*/
    /* Add spacing, borders, or background if needed */
  }
  .marquee-box img 
  {
    width: 70px;
  }
  .marquee-box h3 {
    font-size: 42px; /* Adjust text size */
    font-weight: 500;
    margin: 0;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

.testimonial-slider-section
{
    background-color: #FFBD1D;
}
.map-box h5 
{
    font-size: 24px;
    color: #A96801;
    line-height: 32px;
    font-weight: 500;
}
.map-box h5 span 
{
    color: black;
}
.map-box p 
{
    color: #323232;
    text-align: justify;

}
.map-box a 
{
    background-color: #52721B;
    color: white !important;
    border-radius: 8px;
    padding: 8px 12px;
}
.map-box a:hover
{
    color: white;
}
.testimonial-slider {
    overflow: hidden;
}

.testimonial-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 16px 16px 120px 32px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.customer-details h5 
{
    font-size: 16px !important;
    font-weight: 600 !important;
}
.customer-details p
{
    color:#323232 !important;
    font-size: 14px !important;
}
.customer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.customer-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.customer-location {
    font-size: 12px;
    color: #323232;
    margin: 0;
}

.testimonial-content {
    margin-bottom: 10px;
    flex-grow: 1;
}

.testimonial-message {
    font-size: 14px;
    color: #323232;
    line-height: 1.4;
}

.rating {
    font-size: 14px;
    color: #52721B;
    margin-top: 5px;
}

.rating .fa-star,
.rating .far.fa-star {
    margin-right: 2px;
}

.rating .fa-star.checked {
    color: #52721B; /* Gold color for filled stars */
}

.rating .far.fa-star {
    color: #ccc; /* Grey color for empty stars */
}

.rating-value {
    margin-left: 5px;
    font-size: 14px;
    color: #52721B;
    font-weight: 700;
}
.testimonial-slider
{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.testimonial-image
{
    position: absolute;
    bottom: -15px;
    right: 0;
}
.testimonial-image img 
{
    max-width: 100px;
}
.testimonial-slider .slick-list 
{
    padding-bottom: 20px;
}
.mango-item 
{
    background-color: #52721B;
    border-radius: 12px 120px 12px 12px;
    z-index: 1;
    display: flex;
    height: 100%;
}
.mango-item a 
{
    width: 100%;
}
.mango-item-bg 
{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.mango-item-bg img 
{
    max-width: 300px;
}
.mango-image img 
{
    width: 150px;
    margin-right: -30px;
    object-fit: contain;
}
.mango-list-container 
{
    row-gap: 15px;
}
.mango-details h3 
{
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}
.mango-details span 
{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #FDD07B26;
    color: #FFBD1D;
}
.mango-products
{
    background-size: 100% 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}
.about-mangoes .section-bg
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.about-mangoes .section-bg img,
.mangoes-from-india .section-bg img
{
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.testimonial-slider-section .section-bg
{
    position: absolute;
    right: -100px;
    top: -50px;
}
.testimonial-slider-section .section-bg img 
{
    max-width: 500px;
}
.mangoes-from-india .section-bg
{
    position: absolute;
    top: -80px;
    right: 0;
    left: 0;
}
.faq-wrapper .accordion
{
    border-bottom: 1px solid #F0F0F0;
}
.faq-wrapper .accordion h4 
{
    font-weight: 500;
    color: #52721B;
    font-size: 20px;
}
.faq-wrapper .accordion p
{
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    color: #323232;
}
.faq-wrapper .accordion h4 span 
{
    position: absolute;
    right: 0;
}
.faq-wrapper .accordion h4
{
    padding-right: 30px;
}
.process-step p 
{
    color: #323232;
    text-align: justify;
}
.footer-content p 
{
    color: white;
}
.footer-grid  
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
}
.custom-footer-bottom p
{
    border-top: 1px solid #FFEEC533;
    border-bottom: 1px solid #FFEEC533;
    color: white;
}
.footer-content h3 
{
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
}
.footer-content ul
{
    padding-left: 0px;
}
.footer-content ul li 
{
    list-style-type: none;
}
.footer-content ul li a 
{
    color: white;
    font-size: 16px;
}
.footer-main 
{
    padding-bottom: 0px;
    padding-top: 120px;
    background-size: 100%;
}
.footer-main .section-bg
{
    position: absolute;
    right: -100px;
    top: -50px;
}
.footer-main .section-bg img 
{
    max-width: 500px;
}
.how-we-work .row 
{
    row-gap: 30px;
}
.brand .row 
{
    border-top: 1px dashed #32323280;
    border-bottom: 1px dashed #32323280;
}
.brand-wrapper
{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(7, 1fr);
    padding: 30px 0px;
}
.brand-box 
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-box img 
{
    object-fit: contain;
}
.hero-content p 
{
    color: #323232;
}
.hero-btn 
{
    column-gap: 20px;
}
.hero-btn a.shop-btn
{
    background-color: #52721B;
    border-radius: 5px;
    padding: 10px 15px;
    color: white;
}
.hero-btn a.more-btn
{
    background-color: white;
    border-radius: 5px;
    padding: 10px 15px;
    color: #52721B;
}
.hero-banner .section-bg
{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
.how-we-work .section-bg
{
    position: absolute;
    left: 0;
    right: 0;
    top: -110px;
}
.feature-slider .section-bg
{
    position: absolute;
    left: 0;
    right: 0;
    top: -110px;
}
.hero-banner 
{
    padding: 200px 0px 150px 0px;
    background-size: contain;
}
.page-header.type24
{
    background-color: transparent !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 25px;
}
.header.content.header-row
{
    padding-left: 0px !important;
    padding-right: 0px !important;
    background-color: white;
    padding: 0px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.page-header.type24 .nav-sections
{
    margin-left: 0px !important;
}
.header.content.header-row .header-left,
.header.content.header-row .header-right
{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
.page-header.type24 .minicart-wrapper
{
    padding-left: 0px !important;
    border-left: 0px !important;
}
.header.content.header-row .header-left
{
    padding-left: 10px;
}
.header.content.header-row .header-right
{
    padding-right: 15px;
}
.hero-left,.hero-right
{
    padding: 15px;
}
.hero-left:last-child,.hero-right:last-child
{
    text-align: right;
}
.hero-left img.anim1,.hero-right img.anim3 {
    -webkit-animation: mover1 1s infinite  alternate;
    animation: mover1 1s infinite  alternate;
}
.hero-left img.anim2,.hero-right img.anim4{
    -webkit-animation: mover2 1s infinite  alternate;
    animation: mover2 1s infinite  alternate;
}

@-webkit-keyframes mover1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
@keyframes mover1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
@-webkit-keyframes mover2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}
@keyframes mover2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}
.footer-main
{
    background-repeat: no-repeat;
}
.catalog-product-view main.page-main
{
    background-color: #FFBD1D;
}
.catalog-product-view .breadcrumbs
{
    background-color: #FFBD1D !important;
    padding-top: 150px;
}
.page-wrapper > .breadcrumbs .items:after
{
    border-bottom: 0px !important;
}
.product-view-top-image{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
.breadcrumbs .container ul.items 
{
    max-width: unset;
    padding: 0px;
}
.gallery-placeholder .fotorama__stage
{
    border: 0px;
}
.fotorama__nav .fotorama__thumb-border
{
    border-color: #55741E;
    border-radius: 12px;
}
.fotorama__thumb,.fotorama__wrap--slide .fotorama__stage__frame
{
    border-radius: 12px;
}
.moved-add-to-links,.product-social-links,.prev-next-products
{
    display: none;
}
.product-add-form .box-tocart
{
    border-top: 0;
    border-bottom: 0;
}
.box-tocart .fieldset 
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.box-tocart .field.qty .control
{
    margin: 0px;
    background-color: #ffffff5e;
    border-radius: 30px;
    width: 100%;
}
.box-tocart .field.qty .control .qty-changer a 
{
    border: 0px;
}
.box-tocart .field.qty .control .qty-changer a.qty-inc
{
    right: 15px;
    color: #55741E;
}
.box-tocart .field.qty .control .qty-changer a.qty-dec
{
    left: 15px;
    color: #55741E;
}
.box-tocart .field.qty .control input 
{
    background-color: transparent;
    border: 0px;
}
.box-tocart .fieldset .actions button
{
    background-color: #55741E;
    border-radius: 30px;
    border: 0px;
    width: 100%;
    color: white;
}
.product.attribute.overview div 
{
    color: #323232;
}
.page-main-description 
{
    background-color: #FFBD1D;
}
.des-row 
{
    padding: 25px 0px;
    border-top: 1px solid #55741E80;
    color: black;
}
.des-row h3 
{
    font-family: "Quicksand", serif !important;
    font-weight: 600;
}
.fotorama__nav-wrap--vertical.fotorama__nav-wrap
{
    position: static !important;
    order: 1;
    padding: 0px !important;
}
.gallery-placeholder .fotorama__wrap
{
    display: flex;
    gap: 15px;
}
.gallery-placeholder .fotorama__stage
{
    order: 2;
}
.product-info-main 
{
    padding-right: 0px;
}
.catalog-product-view .page-main-details
{
    display: none;
}
.catalog-product-view  .mango-products
{
    background-color: #FFBD1D;
}
.product-info-main .product-reviews-summary .reviews-actions a
{
    color: black;
}
.product-info-main .product-reviews-summary.empty .reviews-actions:before
{
    color: white;
}
.pickup-location-modal .modal-inner-wrap,
.feedback-modal .modal-inner-wrap 
{
    max-width: 600px;
    border-radius: 12px;
}
.pickup-location-modal .modal-inner-wrap .modal-header,
.feedback-modal .modal-inner-wrap .modal-header
{
    padding: 15px 25px 25px 25px;
}
.pickup-location-modal .modal-inner-wrap .modal-header h1,
.feedback-modal .modal-inner-wrap .modal-header h1
{
    padding: 0px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}
.pickup-location-modal .modal-inner-wrap .modal-content,
.feedback-modal .modal-inner-wrap .modal-content
{
    padding: 0px 25px 25px 25px;
}
.pickup-location select
{
    border-radius: 10px;
    padding: 12px 15px;
}
.pickup-location-modal header button,
.feedback-modal header button
{
    right: -15px !important;
    top: 15px !important;
}
.pickup-location-modal button.submit,
.form-login button.login,.form-login a.create,
.form-create-account button.submit,.forget button.submit,
.block-minicart button.checkout,.form-cart .actions button.update,
.fieldset.coupon button.apply,.cart-summary .checkout-methods-items .action.primary.checkout,
.checkout-shipping-method .actions-toolbar button.continue,
.checkout-payment-method button.checkout,span.enquiry-btn,
.form.contact button.submit,.checkout-success a.continue,
.return-to-shop a.btn-go-shop,button.action.primary.add,
.form-edit-account button.save,.form-newsletter-manage button.save,
.form-address-edit button.save,.form.password.reset button.submit,
button.back-testimonial
{
    border-radius: 30px !important;
}
.customer-account-login .action.primary,.customer-account-create .action.primary,
.customer-account-forgotpassword .action.primary
{
    line-height: unset !important;
}
html .action.primary,.return-to-shop a.btn-go-shop
{
    background-color: #55741E !important;
    border-color: #55741E #55741E #55741E !important;
}
.block-collapsible-nav .item a:before, .block-collapsible-nav .item > strong:before
{
    display: none;
}
.minicart-wrapper .action.showcart .counter.qty
{
    background-color: #55741E !important;
}
.customer-account-login main.page-main,
.customer-account-forgotpassword main.page-main,
.catalog-category-view .breadcrumbs,.checkout-cart-index main.page-main,
.cms-page-view .breadcrumbs,.checkout-index-index main.page-main,
.contact-index-index main.page-main,.mango_feedback-index-index main.page-main,
.customer-account-create main.page-main,.account main.page-main,
.checkout-onepage-success main.page-main,
.customer-account-createpassword main.page-main,
.customer-account-logoutsuccess main.page-main,
.testimonial-index-form main.page-main
{
    margin-top: 120px;
}
.sticky-header .header.content.header-row
{
    box-shadow: none;
}
.page-header.type24.sticky-header .logo
{
    max-width: 150px !important;
}
.page-header.type24.sticky-header .logo img
{
    transform: unset !important;
}
.mango-products-category
{
    padding-bottom: 100px;
}
.page-header.type24 .minicart-wrapper .action-subtotal .cart-price
{
    color: #55741E !important;
}
.minicart-wrapper .block-minicart .subtotal
{
    padding: 15px !important;
    border-top: 1px solid #e7e7e7;
}
.block-minicart .actions 
{
    padding: 0px 15px 15px 15px !important;
}
.block-minicart .actions button.checkout 
{
    margin-bottom: 0px !important;
}
.catalog-product-view .product.media,.catalog-product-view .product-info-main
{
    width: 50% !important;
}
.catalog-product-view .product-info-main
{
    padding-right: 0px !important;
    padding-left: 30px;
}
.product.media .fotorama__wrap
{
    height: 500px !important;
}
.product.media .fotorama__wrap .fotorama__stage
{
    height: 100% !important
}
.product.media .fotorama__stage__frame .fotorama__img
{
    object-fit: contain;
}
.catalog-product-view .mango-products
{
    padding-top: 50px !important;
    padding-bottom: 150px !important;
}
.des-row p 
{
    margin-bottom: 5px;
}
.cart.table-wrapper,li.checkout-shipping-address,
li.checkout-shipping-method,li.checkout-payment-method,
.feedback-form-container,.block-customer-login,
.forgot-pwd-block,.crate-customer-block,
.form-edit-account fieldset.fieldset,.form-newsletter-manage fieldset.fieldset,
.form-address-edit fieldset.fieldset,.form.password.reset,
.testimonial-form-container 
{
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 20px;
}
.form-cart table .qty input 
{
    border-radius: 0px !important;
}
.crate-customer-block .actions-toolbar
{
    padding-left: 0px !important;
}
.forgot-pwd-block .actions-toolbar .primary,
.crate-customer-block .actions-toolbar .primary
{
    margin-bottom: 0px !important;
}
.cart-discount .fieldset.coupon .control
{
margin-right: 10px;
}
.fieldset.coupon button.apply span 
{
    color: white;
}
.cart-summary,.opc-block-summary
{
    padding: 20px !important;
    border-radius: 12px;
}
main.page-main 
{
    padding-right: 0px !important;
    padding-left: 0px !important;
}
.opc-progress-bar-item._active:before,
.opc-progress-bar-item._active > span:before
{
    background: #55741E !important;
}
.opc-progress-bar-item > span
{
    font-weight: 600 !important;
}
.opc-sidebar.opc-summary-wrapper 
{
    margin-top: 0px !important;
}
.opc-progress-bar
{
    margin-bottom: 15px !important;
}
.checkout-container .field-tooltip
{
    display: none;
}
.opc-wrapper .form-login, .opc-wrapper .form-shipping-address
{
    max-width: unset !important;
}
.field .control._with-tooltip input
{
    width: 100% !important;
}
li.checkout-shipping-method 
{
    margin-top: 20px !important;
}
.opc-wrapper .step-content,.opc-wrapper .form-shipping-address
{
    margin-bottom: 0px !important;
}
.minicart-items .product-item-details .details-qty,
.minicart-items .product-item-details .price
{
    font-weight: 600 !important;
}
.minicart-items .product-item-details .price
{
    font-size: 16px !important;
}
.opc-block-summary .items-in-cart > .title strong
{
    font-weight: 500 !important;
}
.checkout-container button.action-auth-toggle,
.block-authentication .actions-toolbar button.action-login,
.form.form-discount button.action-apply,
.feedback-modal button.btn-primary,.feedback-form-container button.btn-primary
{
    padding: 15px 20px;
    background-color: #55741E;
    border-radius: 30px;
    color: white !important;
    border-color: #55741E !important;
    font-size: 16px !important;
}
.actions-toolbar a.action-remind
{
    color: #55741E !important;
}
.authentication-dropdown 
{
    border-radius: 0px 0px 12px 12px;
}
.fieldset>.field .label
{
    font-size: 16px !important;
}
.block-customer-login .fieldset .field label
{
    line-height: 24px !important;
}
.checkout-payment-method .payment-option._collapsible .payment-option-title,
.checkout-payment-method .payment-option._collapsible .payment-option-content
{
    padding-left: 0px !important;
}
.feedback-modal input,.feedback-form-container input,
.form.contact input
{
    padding: 12px 15px !important;
}
.mango_feedback-index-index .page-title-wrapper
{
    text-align: center;
}
.mango_feedback-index-index .page-title-wrapper h1
{
    font-weight: 600;
    font-size: 30px !important;
}
.feedback-form-container input 
{
    width: 100%;
    border: 1px solid #cccccc;
    border-radius: 10px;
}
.feedback-form-container textarea:focus,
.form.contact textarea:focus
{
    box-shadow: none;
}
.form.contact .legend,.contacts-title h3
{
    font-weight: 600;
    font-size: 24px;
    color: #323232;
}
.form.contact 
{
    padding-right: 100px;
}
.socal-media-link .d-flex
{
    gap: 15px;
}
.socal-media-link .d-flex i 
{
    margin-bottom: 0px !important;
}
.header-right a.popup-trigger
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky-header .header.content.header-row
{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.sticky-header .header.content.header-row .header-left
{
    padding-left: 0px !important;
}
.sticky-header .header.content.header-row .header-right
{
    padding-right: 0px !important;
}
.popup-trigger svg 
{
    color: #323232;
    width: 21px;
}
.mango-details
{
    row-gap: 15px;
}
span.enquiry-btn
{
    padding: 4px 20px !important;
    height: auto !important;
}
.cms-about-us h1,.cms-about-us h2
{
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}
.cms-about-us ul 
{
    margin-bottom: 20px;
}
button.enq-btn-now {
    font-weight: 700 !important;
}

.block-collapsible-nav .item a,.block-collapsible-nav .item > strong
{
    border: 0px;
    border-radius: 30px;
}
.block-collapsible-nav .item:first-child
{
    border-top: 0px
}
.block-collapsible-nav .item.current > strong,.block-collapsible-nav .item a:hover
{
    background-color: #4899291a;
}
.block-dashboard-info strong.box-title,
.block-dashboard-addresses strong.box-title,
.block-addresses-default strong.box-title,
.block-order-details-view strong.box-title
{
    border-radius: 12px 12px 0px 0px;
}
.block-dashboard-info .box-actions,
.block-dashboard-addresses .box-actions,
.block-addresses-default .box-actions,
.block-order-details-view .box-content
{
    border-radius: 0px 0px 12px 12px;
}
.block-dashboard-addresses .block-title,.block-dashboard-addresses .box-actions,
.block-dashboard-info .box-actions,.block-dashboard-orders .block-title,
.block-addresses-default .box-actions
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block-dashboard-addresses a.action.edit,.block-dashboard-info a.action.edit,
.block-dashboard-info a.action.change-password,.block-dashboard-orders a.action.view,
.block-dashboard-orders a.action.order,.orders-history a.action.view,.orders-history a.action.order,
.block-addresses-default a.action.edit,.order-actions-toolbar a.action.order,
.order-actions-toolbar a.action.print,.order-details-items a.action.back
{
    background-color: #55741E;
    border-radius: 25px;
    padding: 10px 15px;
    color: white;
}
.box-information .box-actions .action:after,
.account .data.table .col.actions .action:after
{
    display: none;
}
.block-dashboard-orders .orders-recent,.orders-history
{
    border: 1px solid #ddd;
    border-radius: 12px;
}
.block-dashboard-orders a.action.order,.orders-history a.action.order
{
    margin-left: 10px;
}
.orders-history table.history 
{
    margin-top: 0px;
}
.form-edit-account .fieldset .legend,.form-newsletter-manage .fieldset .legend,
.form-address-edit .fieldset .legend
{
    color: #323232;
    font-weight: 500;
}
.order-links .item strong
{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.content.block-collapsible-nav-content
{
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.customer-account-createpassword .page-title-wrapper
{
    text-align: center;
}
.sparsh-faq-block .accordion .block > .question::after 
{
    display: none;
}
.checkout-index-index .block-customer-login 
{
    padding: 0px;
    border: 0px;
}
.opc-estimated-wrapper .estimated-block .estimated-price
{
    color: #55741E;
}
.testi-block h1 
{
    margin-bottom: 0px;
}
.testi-block  button.back-testimonial
{
    margin: 0px;
}
.testi-form .field-div input
{
    padding: 10px 15px !important;
}
.testi-form .field-div
{
    margin-bottom: 20px;
}
.testi-form label span 
{
    color: red;
}
input.testi-btn
{
    background-color: #55741E;
    border-radius: 30px !important;
    padding: 15px 20px !important;
    color: white;
    font-size: 16px;
    border: 0px;
}

.fotorama__stage  .fotorama__fullscreen-icon {
    display: none !important;
}

.testimonial-slider-section .section-heading h3
{
    color:  #52721B;
    font-size: 21px;
    font-weight: 500;
}
.testimonial-slider-section .section-heading a.feedback-button
{
    border-radius: 30px;
    text-decoration: none;
}
.testimonial-slider-section .section-heading h1 {
    font-size: 36px !important;
}
.pilot-img img 
{
    max-width: 300px;
}
h2.pilot-head
{
    font-size: 36px;
    font-weight: 500;
}
.modal-popup .modal-inner-wrap
{
    border-radius: 10px;
}
.minicart-items .item-qty
{
    width: 60px !important;
    height: 30px !important;
    border-radius: 5px !important;
}
.minicart-items .item-qty
{
    border-radius: 10px;
}
.modal-popup .modal-content,.modal-popup .modal-footer
{
    padding: 20px 30px !important;
}
.confirm .modal-content>div 
{
    font-size: 20px;
    color: black;
}
.modal-footer .action-accept,.modal-footer .action-dismiss:hover,
.cart.actions button.action:hover
{
    background-color: #55741E !important;
    border-color: #55741E #55741E #55741E !important;
    border-radius: 30px !important;
    color: white !important;
}
.modal-footer .action-dismiss
{
    border-color: #55741E #55741E #55741E !important;
    border-radius: 30px !important;
}
header.page-header .nav-sections-item-title
{
    background-color: #55741E !important;
}
header.page-header .nav-sections-item-title.active
{
    background-color: transparent !important;
}
header.page-header .nav-sections-item-title.active a
{
    color: #55741E !important;
}
header.page-header .nav-sections-item-title a 
{
    font-size: 16px !important;
}
.nav-sections-item-content .header li span,.nav-sections-item-content .header li a
{
    color: #323232 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase;
}
.page-header .navigation:not(.side-megamenu) .level0 .level-top
{
    color: #323232 !important;
}
.page-header .navigation:not(.side-megamenu) .level0 .level-top:hover 
{
    color: #55741E !important;
}
.ag-announcement-bar.ag-bar-visible
{
    position: static !important;
}
body:has(.ag-announcement-bar.ag-bar-visible) .page-header.type24:not(.sticky-header){
    top: 60px !important;
}
.contact-index-index .page-main .contact-info [class^="porto-icon-"], .contact-index-index .page-main .contact-info [class*=" porto-icon-"]
{
    background-color: #55741E !important;
}
.contact-index-index .socal-media-link a 
{
    color: #55741E !important;
}
.page-main>.page-title-wrapper .page-title
{
    color: #323232 !important;
}
.breadcrumbs
{
    padding-bottom: 15px !important;
}
#discount-coupon-form #coupon_code
{
    border-radius: 30px !important;
}
.authentication-dropdown
{
    border-top-color: #55741E !important;
}
.product-info-main .product-info-stock-sku,.page-wrapper>.breadcrumbs .items>li
{
    font-size: 14px !important;
}
.sw-megamenu.navigation li.ui-menu-item>a
{
    font-size: 14px !important;
    font-weight: 600 !important;
}
.catalog-product-view div.mage-error
{
    font-size: 14px !important;
    position: static !important;
}
.inner-wrap .modal-header h1
{
    padding-bottom: 15px !important;
}
#feedback-form label,.minicart-items .product-item-name,
.cart-totals, .opc-block-summary .table-totals
{
    font-size: 16px !important;
}
.checkout-payment-method .payment-option-title .action-toggle,
.opc-block-shipping-information .shipping-information-title .action-edit,
.opc-block-shipping-information .shipping-information-title .action-edit:hover,
.opc-block-shipping-information .shipping-information-title .action-edit:before,
.opc-progress-bar-item._complete>span,#opc-sidebar a,.billing-address-details a,
.block-collapsible-nav .item.current a, .block-collapsible-nav .item.current strong,
.block-collapsible-nav .item a:hover, .block-collapsible-nav .item a:active, .block-collapsible-nav .item a:focus
{
    color: #55741E !important;
}
.opc-block-shipping-information .shipping-information-title
{
    font-size: 20px !important;
    font-weight: 600 !important;
    color: black;
}
.account .page-main .page-title-wrapper .page-title
{
    color: black !important;
}
.product-item-name a
{
    font-size: 18px !important;
    font-weight: 500 !important;
    color: black !important;
}
.product-item-photo:hover,
.product-item-info:hover .product-item-photo:not(.porto-tb-featured-image)
{
    box-shadow: none !important;
}
.product-item
{
    padding: 15px;
}
.product-item .product-item-info
{
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
}
.product-add-form .box-tocart
{
    padding-top: 0px !important;
}
.feature-slider .slick-prev:before,.feature-slider .slick-next:before,
.feature-slider .slick-prev:after,.feature-slider .slick-next:after
{
    font-size: 24px;
}
.feature-slider .slick-prev,.feature-slider .slick-next
{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    width: 40px !important;
}
.slick-prev, .slick-next, .owl-prev, .owl-next {
    font-size: 0 !important;
}
.products.list
{
    display: flex;
    flex-wrap: wrap;
}
.products-grid .product-item .product-item-info
{
    height: 100%;
}
.products-grid .product-item .product-item-info .porto-section
{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.products-grid .product-item .product-item-info .product-item-details
{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.stock.unavailable
{
    margin-bottom: 8px;
}
.opc-wrapper .shipping-address-item.selected-item
{
    border-color: #52721B !important;
}
.opc-wrapper .shipping-address-item.selected-item:after
{
    background: #52721B !important;
}
.opc-wrapper .action-select-shipping-item
{
    float: left !important;
}
.opc-wrapper .action-show-popup,.opc-wrapper .action-select-shipping-item,
button.action-save-address,.checkout-payment-method .payment-method-billing-address .primary .action-update
{
    border-radius: 5px !important;
}
.opc-wrapper .action-show-popup:hover,.opc-wrapper .action-select-shipping-item:hover,
.checkout-payment-method .payment-method-billing-address .primary .action-update:hover
{
    background-color: #55741E !important;
    border-color: #55741E #55741E #55741E !important;
}
.modal-slide._inner-scroll .modal-header, .modal-slide._inner-scroll .modal-footer
{
    padding-left: 20px !important;
}
.modal-slide._inner-scroll .modal-header h1 
{
    font-size: 20px !important;
    font-weight: 500 !important;
}
.checkout-index-index .modal-popup .form-shipping-address
{
    max-width: unset !important;
}
.modal-footer button.action-hide-popup
{
    padding: 13px 15px !important;
}
.payment-method-billing-address .actions-toolbar .action-cancel
{
    padding: 10px 15px !important;
    margin: 0px !important;
}
.hero-banner .section-bg img, .how-we-work .section-bg img{
    width: 100%;
}

/*********************************** Responsive CSS *************************************/

@media (min-width: 1200px) {
    .container {
        max-width: 1440px !important;
    }
}

@media (max-width: 991px) {
    .pd-50
    {
        padding-top: 40px;
        padding-bottom: 40px;   
    }
    .how-we-work
    {
        padding-top: 40px;
    }
    .header.content.header-row .header-left, .header.content.header-row .header-right 
    {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .mango-products
    {
        background-size: cover;
    }
    .cart-discount
    {
        width: 100% !important;
        padding-right: 0px !important;
    }
    .navigation .level0
    {
        border-top: 0px !important;
        border-bottom: 1px solid #ddd;
    }
    .cart-container
    {
        display: flex;
        flex-wrap: wrap;
    }
    .cart.table-wrapper .action-towishlist
    {
        display: none;
    }
    .cart-summary
    {
        border: 1px solid #ddd;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .brand-wrapper
    {
        grid-template-columns: repeat(3, 1fr);
    }
    .logo {
        max-width: unset !important;
    }
    .grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-banner {
        padding: 150px 0px 150px 0px;
    }
    .hero-banner .row .col-md-3 
    {
        display: none;
    }
    .pickup-location-modal .modal-inner-wrap
    {
        border-radius: 0px;
    }
    .catalog-product-view .product.media,
    .catalog-product-view .product-info-main
    {
        width: 100% !important;
    }
    .catalog-product-view .breadcrumbs .items
    {
        margin-bottom: 15px !important;
    }
    .catalog-product-view .product-info-main
    {
        padding-left: 0px;
    }
    .product-info-main .page-title-wrapper
    {
        max-width: unset !important;
        padding-bottom: 0px !important;
    }
    .catalog-product-view .column.main
    {
        padding-bottom: 0px !important;
    }
    .how-we-work .section-bg
    {
        top: -50px;
    }
    .feature-slider .section-bg
    {
        top: -50px;
    }
    .form.contact
    {
        padding-right: 0px;
    }
    .contact-info
    {
        margin-top: 25px;
    }
    .contact-index-index .columns .column.main
    {
        padding-bottom: 0px !important;
    }
    .cart-container
    {
        flex-direction: column-reverse;
    }
    .cart.table-wrapper .col.item:before
    {
        display: none;
    }
    .cart.table-wrapper .item .col.item
    {
        display: flex;
        padding: 0px;
        column-gap: 15px;
    }
    .cart.table-wrapper .product-item-photo
    {
        margin: 0px;
    }
    .cart.table-wrapper .col.price,
    .cart.table-wrapper .col.qty,
    .cart.table-wrapper .col.subtotal
    {
        width: 33.33%;
        padding: 0px;
        margin-top: 15px;
        float: left;
    }
    .cart.table-wrapper .col.price
    {
        text-align: left;
    }
    .cart.table-wrapper .col.subtotal
    {
        text-align: right;
    }
    .cart-container .form-cart .actions.main
    {
        text-align: right;
    }
    .checkout-cart-index .page-title-wrapper
    {
        padding-top: 0px;
    }
    .cart-summary, .opc-block-summary
    {
        border: 0px;
        border-radius: 0px;
    }
    .checkout-payment-method .payment-methods,
    .opc-block-shipping-information
    {
        padding: 0px 15px;
    }
    .checkout-payment-method .payment-option
    {
        margin: 0px;
    }
    .account main.page-main 
    {
        margin-top: 50px;
    }
    .block .block-title strong
    {
        margin-right: auto;
    }
    .sidebar-content .block.block-reorder
    {
        padding: 0px;
        margin: 0px;
    }
    .block-collapsible-nav
    {
        position: static;
    }
    .sidebar.sidebar-additional
    {
        display: none;
    }
    .block-collapsible-nav-content.active ul 
    {
        margin-top: 10px;
    }
    .account .columns .column.main
    {
        order: 2;
    }
    .account .sidebar
    {
        order: 1;
    }
    .block.block-collapsible-nav 
    {
        border: 1px solid #ddd;
        border-radius: 10px;
    }
    .sidebar.sidebar-main.mobile-sidebar
    {
        margin-top: 15px;
    }
    .testi-block h1
    {
        font-size: 24px;
    }
    .cart-summary
    {
        border: 1px solid #ddd !important;
        border-radius: 12px !important;
    }
    
}


@media (max-width: 575px) {
    .pd-50
    {
        padding-top: 30px;
        padding-bottom: 30px;   
    }
    .how-we-work
    {
        padding-top: 30px;
    }
    section .row.mb-5 
    {
        margin-bottom: 20px !important;
    }
    .section-heading h1
    {
        font-size: 24px;
        line-height: 30px;
    }
    h2.pilot-head
    {
        font-size: 28px;
    }
    .hero-content img 
    {
        max-width: 300px;
    }
    .hero-banner {
        padding: 120px 0px 120px 0px;
    }
    .section-heading p
    {
        font-size: 16px;
    }
    .why-choose .section-bg img
    {
        max-width: 200px;
    }
    .why-choose-box span img 
    {
        max-width: 55px;
    }
    .about-mangoes .section-bg
    {
        top: -60px;
    }
    .about-mangoes
    {
        padding-top: 80px;
    }
    .about-mangoes .section-heading h1
    {
        margin-bottom: 25x;
    }
    .right-img-content .d-flex
    {
        gap: 10px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    .right-img-content span
    {
        font-size: 30px;
    }
    .mangoes-from-india .row
    {
        row-gap: 30px;
    }
    .footer-main .section-bg img {
        max-width: 300px;
    }
    .footer-main
    {
        padding-top: 80px;
    }
    .footer-content h3
    {
        margin-bottom: 5px;
    }
    .right-img-content
    {
        padding: 15px 10px;
    }
    .right-img-content h6
    {
        font-size: 14px;
    }
    .right-img-content
    {
        position: static;
        margin-top: 15px;
    }
    .footer-grid
    {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
    }
    .footer-main
    {
        background-size: cover;
    }
    .why-choose-box h5
    {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0px;
    }
    .why-choose-box
    {
        column-gap: 5px;
    }
    .marquee-box h3
    {
        font-size: 28px;
    }
    .marquee-box img
    {
        width: 50px;
    }
    .marquee__inner-wrap
    {
        padding: 8px 0px;
    }
    .marquee
    {
        height: 90px;
    }
    .map-box h5
    {
        font-size: 20px;
    }
    .brand-wrapper
    {
        display: -webkit-box;
        overflow-x: scroll;
        padding: 20px 0px;
    }
    .brand-box {
        max-width: 100px;
        margin-right: 12px;
      }
      .page-title-wrapper 
      {
        padding: 20px 0px !important;
      }
      .mango-details h3
      {
        font-size: 22px;
      }
      .faq-wrapper .accordion h4
      {
        font-size: 18px;
        line-height: 28px !important;
      }
      .product-info-main .page-title-wrapper h1
      {
        font-size: 24px !important;
      }
      .catalog-product-view .mango-products
      {
        padding-bottom: 90px !important;
      }
      .catalog-product-view .breadcrumbs
      {
        padding-top: 120px !important;
      }
      .customer-account-login .page-title-wrapper h1.page-title,
      .customer-account-create .page-title-wrapper h1.page-title,
      .customer-account-forgotpassword .page-title-wrapper h1.page-title
      {
        font-size: 24px !important;
      }
      html .action.primary, html .btn
      {
        padding: 10px 10px !important;
      }
      .product-item .product-item-info
      {
        padding: 10px;
      }
      .product-item-name a
      {
        font-size: 16px !important;
      }
      .product-item-info .product-item-details .price-box,
      .product-item-info .product-item-details .price-box span 
      {
        font-size: 15px !important;
      }
      .products .product-item
      {
        padding-left: 6px;
        padding-right: 6px;
      }
      .product-item {
        padding: 0px 12px;
      }
      .delivery-message
      {
        line-height: 20px;
      }
      .box-tocart .action.tocart
      {
        line-height: unset !important;
      }
}