/* global theme css */

:root {
    --sk-size: 40px;
    --sk-color: #2D4FA6;
  }
  
@keyframes loading {
    from {
      transform: rotate(0turn);
    }
    to {
      transform: rotate(1turn);
    }
}

.swiper {
    width: 600px;
    height: auto;
    display: none;
  }

  .navbar {
    background-color: #2D4FA6;
  }

.navbar-brand img{
    height: 100px; 
    padding-left: 10vw;
}

.nav-item{
    padding-right: 50px;
}

.nav-link p {
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: italic;
    color:white;
}

p, form {
    font-family: "Libre Franklin", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
  }
  
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #FFA2A5;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2D4FA6;
    transition: all 0.3s ease;
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #2D4FA6;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .cta:hover:before {
    width: 100%;
    background: #5879cc;
  }
  
  .cta:hover svg {
    transform: translateX(0);
  }
  
  .cta:hover span {
    color:white;
  }
  
  .cta:active {
    transform: scale(0.95);
  }
  

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,  rgba(47, 57, 172, 0.5), rgba(255, 174, 174, 0.5));
    align-items: center;
    justify-content: center;
}

.circle {
    width: 200px;
    height: 200px;
    margin-left: 200px;
    border: none;
    border-radius: 100%;
    background-color: #FFA2A5;
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
}
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, -8px); } 
    75% { transform: translate(0, -15px); } 
    100% { transform: translate(0, -0px); } 
}

.footer a{
    color: white;
    text-decoration: none;
}

.link-section{
    width: 40vw;
    text-align: end;
}

.contact-section {
    height: 152px;
    margin-left: 20px;
    width: 40vw;
}

.contact-section p {
    color: white;
}

.social-media-links {
    width: 20vw;
    align-self: center;
}

.social-media-links img {
    width: 45px;
    height: 45px;
    margin: 10px;
}

.theme-color {
    background-color: #2D4FA6;
}

.theme-secondary-color {
    background-color: #DD2C32;
    color: white;
}

.footer {
    background-color: #2D4FA6;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    display: flex;
}

.footer-line {
    border-left:2px solid #ffffff;
    height:300px; 
    margin-left: 20px;
}

/* used in index & Mission & Vision */
.green-background-stripe {
    height: 174px;
    background-color: #DD2C32;
    margin-top: 100px;
    display: flex;
}

.pulse-circle {
    background: #3d72f8; 
    height: 50px; 
    width: 50px; 
    border-radius: 100%; 
    margin-top: 20px; 
    margin-left: 60px;
}

.pulse-circle-2 {
    background: #0048ff; 
    height: 20px; 
    width: 20px; 
    border-radius: 100%; 
    margin-top: 80px; 
    margin-left: -10px; 
    z-index: 2;
}

.redblock{
    background-color: #DD2C32; 
    margin-top: -100px; 
    height: 650px; 
    margin-bottom: 150px;
}

.light-green-background-stripe {
    background-color: #9BB4F6;
    display: flex;
    height: 457.3px;
    margin-bottom: 150px;
}


.light-text-space {
    width: 50vw;
}

/* index.html */
.hero {
    position: relative;
    height: 83vh;
    margin-bottom: 100px;
}

.background-Image {
    background-image: url("../img-main/hero-homepage2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.card { 
    height: 500px;
    width: 350px;
    background-color: #ffffff;
    border-radius: 20px;
    transition: all .4s;
    box-shadow: 20px 20px 60px #bebebe;
}

.card:hover{ 
    transform: scale(0.98);
    border-radius: 30px;
    box-shadow: 0px 0px 60px 2px rgba(45, 79, 166, 0.60);
    .card-Image {
        border-radius: 30px 30px 0px 0px;
    }
}

.card-Image {
    object-fit: cover;
}

.card-border {
    height: 500px;
    width: 350px;
    background-image: linear-gradient(136deg, #0048FF 0%, #FF0009 100%);
    transition: all .6s;
    border-radius: 30px;
    
};
    
.card h3, .card p {
    padding-top: 8%;
    color: #0048FF;
}
    
.card-Image {
    width: inherit;
    height: 225px;
    border-radius: 20px 20px 0px 0px;
    transition: all .4s;
}

    
.read-more-button {
    margin-top: 5%;
    margin-bottom: 10%;
    width: 80%; 
    align-self: center;
}
    


.fresh-produce-text p {
    margin-top: 20px;
    font-size:26px;
    padding-left: 10px; 
    color: #2D4FA6;
}

.icon-section{
    display: flex;
    margin-bottom: 200px;
}

.icon-section p {
    color: #2D4FA6
}

.icon {
    border-radius: 10px;
    width: 236px;
    margin-left: 10%;
    margin-right: 10%;
    height: 191px;
    text-align: center;
    font-size: 20px;
    transition: all .4s;
    background: rgb(255, 255, 255);
}

.icon:hover {
    background-color: #fdfdfd;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.icon p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.icon img {
    margin: auto;
    height: 128px;
    width: 128px;
}

.section-gap {
    margin-bottom: 300px;
}

.light-image-space img{
    width: 396.7px;
    height: 502.7px;
    margin-top: -100px;
    margin-left:100px;
    object-fit: cover;
    border-radius: 20px 20px 20px 20px;
}

.empty-space {
    width: 50vw;
}

.light-text-space h1 {
    color: #ffffff;
    margin-left: 5vw;
    margin-top: 60px;
}

.light-text-space p {
    margin-left:5vw; 
    margin-top: 60px; 
    width:40vw; 
    font-size: 1rem; 
    color: #ffffff;
}


.pear-apples img {
    width: 769px; 
    height: 463px; 
    margin-top: -190px; 
    object-fit: contain;
}




/* mission&vision.html */
.hero-mv {
    position: relative;
    height: 80vh;
}

.hero-text h1 {
    color: #DD2C32; 
    padding-left: 20vw;
    margin-top: 50px;
}

.overlay-mission {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: linear-gradient(to right, rgba(47, 57, 172, 0.5), rgba(255, 174, 174, 0.5));
    align-items: center;
    justify-content: center;
}

.background-Image-mv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: url("../img-main/pear-tree2.jpeg") center center/cover no-repeat;
    z-index: -1;
}

.au-heading {
    padding-right: 20%;
    float: right;
}

.quote {
    color:white;  
    padding-top: 80px;
    margin-right: 20vw;
}

.line-1 {
    border-left: solid #DD2C32; 
    height: 700px; 
    margin-left: 10%;
}

.line-2 {
    border-left: solid #2D4FA6;
    height: 600px; 
    margin-left: 10%;
}

.mission-statement {
    width: 40%;
}

.mission-statement h1 {
    color: #DD2C32; 
    margin-top: 100px;
}

.vision-graphics {
    width: 40%;
}

.vision-statement {
    width: 40%; 
    margin-left: 110px;
}

.fourth-section h1 {
    color: #2D4FA6;
    margin-left: 150px;
}

.light-text-space-mv {
    margin-left:150px; 
    margin-top: 60px; 
    width: 337px; 
    font-size: 1rem; 
    color: #DD2C32;
}

.light-image-space-mv {
    width: 50%;
}

.light-image-space-mv img {
    margin-left: 150px; 
    width: 602.7px; 
    height: 396.7px; 
    margin-top:25px; 
    object-fit: cover; 
    border-radius: 20px 20px 20px 20px;
}

.light-text-space-mv-rhd {
    margin-left:100px;
    margin-right: 100px; 
    margin-top: 60px; 
    width: 50%;
    font-size: 1rem; 
    color: #ffffff;
}

.gradient-button {
    margin-top: 20px;
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    color: #fff;
    width: 9em;
    height: 3em;
    line-height: 2em;
    text-align: center;
    background: linear-gradient(90deg, #2D4FA6, #DD2C32, #58D0F6, #2D4FA6);
    background-size: 300%;
    border-radius: 30px;
    z-index: 1;
  }
  
  .gradient-button:hover {
    animation: ani 8s linear infinite;
    border: none;
  }
  
  @keyframes ani {
    0% {
      background-position: 0%;
    }
  
    100% {
      background-position: 400%;
    }
  }
  
  .gradient-button:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #2D4FA6, #DD2C32, #58D0F6, #FFA2A5);
    background-size: 400%;
    border-radius: 35px;
    transition: 1s;
  }
  
  .gradient-button:hover::before {
    filter: blur(20px);
  }
  
  .gradient-button:active {
    background: linear-gradient(32deg, #2D4FA6, #58D0F6, #DD2C32, #FFA2A5);
  }
  

.square-shape {
    height: 320px; 
    width: 266px; 
    background-color: #DD2C32; 
    z-index: -1; 
    margin-left: 70%; 
    margin-top: -500px;
}

.square-shape-2 {
    height: 320px; 
    width: 266px; 
    background-color: #2D4FA6; 
    z-index: -1; 
    margin-top: -500px;
}

.m-img img {
    height: 536px; 
    width: 357px; 
    margin-left: 30%; 
    margin-top: 50px; 
    border-radius: 13px 13px 13px 13px;
}

.m-img-2 img {
    object-fit: cover; 
    height: 536px; 
    width: 357px; 
    margin-left: 10%; 
    margin-top: 50px; 
    border-radius: 13px 13px 13px 13px;
}

.btn-success { 
    margin-top: 30px; 
    border-radius: 5px 5px 5px 5px; 
    background-color: #2D4FA6; 
    border-color: #2D4FA6;
}

/* aboutus.html */
.background-Image-au {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 523px;
    background: url("../img-main/gallery-image-9.jpg") center center/cover no-repeat;
    z-index: -1;
}    

.overlay-au {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 523px;
    background: linear-gradient(to right,  rgba(47, 57, 172, 0.5), rgba(255, 174, 174, 0.5));
    align-items: center;
    justify-content: center;
}

.wea {
    margin-bottom: 100px; 
    margin-top: 100px;
}

.wea-title {
    color: #DD2C32; 
    margin-top: 50px; 
    margin-left: 450px;
}

.wea-statement p {
    color: #2D4FA6; 
    margin-top: 50px; 
    margin-left: 10vw; 
    width: 40%; 
    margin-bottom: 50px;
}

.wea-background-stripe {
    background-color: #DD2C32; 
    height:265px; 
    margin-bottom: 100px; 
    display: flex;
}

.wea-background-stripe img {
    height: 457px; 
    width: 357px; 
    object-fit: cover; 
    border-radius: 20px 20px 20px 20px; 
    margin-top: -250px; 
    margin-left: 200px;
}

.wea-background-stripe p {
    color: white; 
    width: 40%; 
    margin-top: 50px; 
    margin-left: 10vw;
}

.point-1, .point-2 {
    display: flex; 
    height: 200px; 
    margin-bottom: 50px;
}

.point-3 {
    display: flex; 
    height: 200px;
}

.img-title img {
    width: 127px; 
    height: 127px;
}

.img-title p {
    color: #2D4FA6; 
    text-align: center;
}

.img-description {
    background-color: #5879cc; 
    color: #ffffff; 
    padding: 20px; 
    margin-left: 50px; 
    border-radius: 10px 10px 10px 10px;
}

.gallery-section {
    display: grid; 
    grid-auto-flow: column; 
    gap: 4px; 
    align-items: center; 
    justify-items: center; 
    margin-bottom: 100px;
}

.image-gallery img {
    object-fit: cover; 
    border-radius: 20px 20px 20px 20px; 
    width: 331px; 
    height: 166px; 
    margin: 10px
}

.picsAndVids {
    margin: auto;
}

/* contactus.html */
.contact-title {
    color: #DD2C32; 
    padding-left: 30%; 
    margin-bottom: 50px;
}

.name-surname {
    display: flex;
    margin-bottom: 30px;
}

.contact-info {
    display: flex; 
    margin-bottom: 30px;
}

/*loader animation*/
/* Styles for the loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Set the background color you want for your loader */
    z-index: 9999; /* Make sure it's on top of other elements */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Initially visible */
    transition: opacity 0.5s ease-in-out; /* Add a transition for a smooth fade */
}

/* Add a class to hide the loader */
.loader.loader--hidden {
    opacity: 0;
}

/* Styles for the sk-flow animation */
.sk-flow {
    width: calc(var(--sk-size) * 1.3);
    height: calc(var(--sk-size) * 1.3);
    display: flex;
    justify-content: space-between;
}

.sk-flow-dot {
    width: 25%;
    height: 25%;
    background-color: var(--sk-color);
    border-radius: 50%;
    animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}

.sk-flow-dot:nth-child(1) { animation-delay: -0.30s; }
.sk-flow-dot:nth-child(2) { animation-delay: -0.15s; }

@keyframes sk-flow {
    0%, 80%, 100% {
        transform: scale(0.3);
    }
    40% {
        transform: scale(1);
    }
}

/*tablet view*/

@media screen and (max-width: 1024px) {
    .hero-text h1{
        padding-left: 10vw;
    }
    
    .navbar-brand img{
        padding-left: 30px; 
        height: 75px;
    }

    .card-border {
        width: 30vw
    }
    
    .card {
        width: 30vw;
    }

    .icon {
        width: 25vw;
        margin-inline: 10px;
        margin: auto;
    }

    .light-image-space {
        margin-right: 100px
    }

    /* mission&vision.html */

    .hero-mv {
        padding-bottom: 100px;
    }

    .overlay-mission {
        height: 85vh;
    }
    .background-Image-mv {
        height: 85vh;
    }
    .mission-statement h1, .mission-statement p {
        margin-left: 50px;
    }
    .vision-statement {
        margin-left: 50px;
    }

    .light-image-space-mv img {
        margin-top: 50px;
        margin-left: 30px;
        width: 421.89px;
        height: 327.69px;
    }

    /* aboutus.html */
    .au-heading {
        padding-right: 10%;
    }

    .overlay-au {
        height: 85vh;
    }
    .background-Image-au {
        height: 85vh;
    }
    .wea {
        margin-top: 200px;
    }
    .wea-title {
        margin-left: 100px;
    }
    .wea-background-stripe img {
        margin-left: 50px;
    }
    .image-gallery img {
        width: 301px;
        margin: auto;
        margin-bottom: 15px;
    }

}


/* mobile view */

@media (max-width: 992px) {

    .swiper {
        width: 100%;
        height: 550px;
        padding: 20px;
        display:block
      }

    .zig-zag-background {
        display: none;
    }

    .card, .card-border {
        display: none;
    }

    .mobile-card {
        border: none;
        box-shadow: none;
        /* border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 15px; */
        display: inline-flex;
        flex-direction: column;
        margin-bottom: 40px;
        margin-top: 20px;
        padding-top: 10px;
        margin-left: 5px;
        margin-right: 5px;
        height: auto;
    }

    .mobile-card h3 {
        text-decoration: underline 1px;
        text-underline-offset: 6px; 
        font-size: 36px;
    }
    
    .mobile-card p, h3{
        color: #DD2C32;
        padding-left: 20px;
    }

    /* .mobile-card button {
        display: none;
    } */
    .card-Image {
        object-fit: cover;
        margin: 20px;
        border-radius: 10px 10px 10px 10px;
    }

    .light-image-space {
        display: flex;
        width: 100%;
        height: 200px;
        justify-content: center;
        align-items: center;
    }

    .light-image-space img{
        height: 195px;
        width: 340px;
        margin-top: 0px;
        margin-left: 0px;
    }

    .light-text-space {
        width: 100%;
        margin: auto;
    }

    .pulse-circle, .pulse-circle-2 {
       display: none;
    }

    .light-text-space h1 {
        font-size: 2rem;
        padding-top: 30px;
        margin-left: 0px;
        text-align: center;   
    }

    .light-text-space p {
        width: 90vw;
        text-align: center;
        margin-left: auto;
        margin-left: 5vw;
    }

    .light-green-background-stripe {
        display: block;
        height: 350px;
    }

    .pear-apples {
        display: none;
    }

    .empty-space {
        width: 100%;
    }

    .icon-section {
        display: inline;
        margin: 0;
        padding: 0;
        display: none;
    }

    .icon {
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .section-gap{
        display: none;
    }

    .text-space {
        width: 100%;
        text-align: center;
    }

    .text-space h1 {
        font-size: 2rem;
        margin-top: 15px;
        z-index: 1;
    }

    .empty-space {
        display: none;
    }

    .fresh-produce-text p {
        margin-top: 40px;
        font-size: 1.5rem;
        width: 100%;
        margin-bottom: 80px;
    }

    .link-section {
        display: none;
    }

    .footer-line {
        display: none;
    }

    .contact-section {
        width: 100%;
        height: auto;
        padding: auto;
    }

    /* mission&vision.html */

   .line-1, .line-2, .v {
        display: none;
    }

    .light-image-space-mv {
        display: table;
        
        margin: auto;
    }

    .light-image-space-mv img {
        height: 250px;
        width: 340px;
        margin-left: 0;
    }

    .redblock {
        position: relative;
        z-index: -1;
        height: 750px;
    }

    .square-shape-2 {
        position: relative;
        top: 70px;
        margin-top: -180px;
        margin-left: 0px;
        height: 188px;
        width: 272px;
        box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.2);
        border-radius: 0px 13px 13px 0px;
    }

    .mission-graphics{
        width:100%;
        margin-bottom: 100px;
    }

    .vision-graphics {
        width: 100%;
    }

    

    .m-img {
        float: right;
    }

    .m-img img {
        height: 188px;
        width: 282px;
        object-fit: cover;
        margin-left: 0px;
        border-radius: 13px 0px 0px 13px;
    }

    .square-shape {
        position: relative;
        margin-top: -180px;
        margin-left: 0px;
        height: 188px;
        width: 272px;
        float: right;
        box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.2);
        border-radius: 13px 0px 0px 13px;
    }

    .m-img-2 {
        position: static;
        width: 100%;
        margin: 0;
        margin-top: 330px;
    }

    .m-img-2 img{
        position: relative;
        top: 60px;
        height: 188px;
        width: 282px;
        object-fit: cover;
        margin-left: 0px;
        border-radius: 0px 13px 13px 0px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        padding-left: 5vw;
    }

    .au-heading {
        font-size: 1.5rem;
        float: right;
        padding-right: 5vw;
    }

    .quote {
        margin-right: 5vw;
        margin-top: 80px;
        
    }

    .mission-statement{
        padding-top: 300px;
        width: 100%;
        margin: 0;
    }

    .vision-statement {
        position: static;
        width: 100%;
        margin: 0;
        margin-top: -600px;
        z-index: 1
    } 

    .mission-statement h1 {
        padding-left: 30px;
        margin-top: 0;
    }

    .vision-statement h1 {
        padding-bottom: 30px;
        padding-left: 30px;
    }

    .mission-statement p, .vision-statement p {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 1rem;
        padding-bottom: 10px;
    }

    .fourth-section h1 {
        color: #2D4FA6;
        margin-left: 0;
        padding: 10px;
        text-align: center;
    }

    .light-green-background-stripe {
    height: auto;
    padding-bottom: 50px;
    }

    .light-text-space-mv {
        width: 100%;
        margin-left: 0;
        min-width: 80%;
        text-align: center;
    }

    .light-text-space-mv p {
        padding: 10px;
        padding-top: 60px;
    }

    .light-text-space-mv-rhd {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 10px;
    }

    /* about-us.html */

    .wea-background-stripe {
        overflow-x: clip;
        height: 424px;
        width: 100%;
    }

    .hero-mv {
        height: 505px;
    }

    .wea {
        padding-top:300px
    }

    .wea-background-stripe p{
        color: white;
        width: 50%;
        margin-top: 50px;
        margin-right: 5%;
        margin-left: 30px;
    }

    .wea-background-stripe img {
        margin-left: 9%;
        width: 35%;
        margin-top: -229px;
        border-radius: 20px 0px 0px 20px;
    }

    .wea-title {
        margin-left: 30px;
        margin-top: 0;
    }

    .wea-statement{
        margin: 0;
        width: 80%;
    }

    .wea-statement p {
        margin-left: 0px;
        padding: 10px;
        width: 70%;
        padding-left: 30px;
    }

    .history p {
        padding-left: 10px;
    }

    .points {
        display: none;
    }

    .point-1, .point-2, .point-3 {
        display: inline-flex;
        flex-direction: column;
        height: auto;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .img-title {
        width: 100%;
        align-items: center;
        justify-content: center;    
    }

    .img-title img {
        display: block;
        margin: auto;
    }

    .img-description {
        margin-left: 0px;
        margin-right: 15px;
        width: 90%;
        text-align: center;
    }

    .gallery-section {
        display: block;
        align-items: center;
    }

    .image-gallery img {
        height: 110px;
        width:110px;
        margin: 10px;
    }

    .picsAndVids {
        margin: auto;
    }

    .gallery-title {
        margin-top: 100px;
    }

    

    /*contact-us.html*/

    .contact-title {
        padding-left: 0;
        text-align: center;
    }

    .name-surname {
        display: block;
    }

    .contact-info {
        display: block;
    }

}