<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
  background: white;
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
}

@keyframes fade-out {
  from { opacity: 1 }
    to { opacity: 0 }
}

@keyframes fade-in {
  from { opacity: 0 }
    to { opacity: 1 }
}

#fader.fade-out {
  opacity: 0;
  animation-name: fade-out;
}

#fader.fade-in {
  opacity: 1;
  animation-name: fade-in;
}


justify {
  text-align: justify;
  text-justify: inter-word;
}

.navbar-item {
    padding-right: 40px !important;
    font-size: large !important;
  }
  
  .navbar-item:hover {
    background-color: white !important;
    color: black !important;
  }
  #carousel-section {
    background-color: #f7f7f7 !important;
    padding: 50px 0;
    margin-bottom: 50px;
  }
  
  #carousel-demo {
    margin-top: 50px;
    
  }
  
  #card-product-description {
    color: #9dbcf8;
  }
  
  #fresh-fruits-section {
    margin-top: 50px;
  }
  
  #tasty-fruits-section {
    background-image: url(https://technext.github.io/tropika/images/tasty-image.png);
    background-repeat: no-repeat;
    height: 400px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  
  .card:hover {
    transform: scale(1.02);
    border-top: 5px solid #4974e9;
  }
  
  .is-white-text-title {
    color: white !important;
    text-transform: uppercase;
  }
  
  .is-256x256 {
    width: 256px !important;
    height: 256px !important;
  }
  
  #contact-section {
    background-image: url(https://technext.github.io/tropika//images/orange-dish.png);
    background-repeat: no-repeat;
    height: 500px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 50px;
    margin-bottom: 100px;
    background-position: right center;
    overflow: hidden;
  }
  
  input.is-custom-field {
    border-bottom: 0.8px solid #252525 !important;
    outline: none;
    border: none;
    box-shadow: none !important;
    /* width: 90% !important; */
    border-radius: unset;
  }
  
  textarea {
    border-bottom: 0.8px solid #252525 !important;
    outline: none !important;
    border: none;
    box-shadow: none !important;
    border-radius: unset;
    border-color: none !important;
    outline-color: none !important;
  }
  
  #map {
    width: 100% !important;
    height: 400px;
    margin-bottom: 50px;
  }
  
  .footer-main {
    background-color: white !important;
    padding: 0 !important;
  }
  
  .footer-secondary {
    padding: 20px;
    margin-top: 20px;
  }
  
  .button.is-black {
    background-color: black !important;
    color: white !important;
  }
  
  .button.is-blue1 {
    background-color: #4974e9 !important;
    color: white !important;
  }
  
  .button.is-blue1:hover {
    background-color: white !important;
    color: #9dbbf8 !important;
  }
  .button.is-black:hover {
    background-color: white !important;
    color: black !important;
  }
  
  .is-black-social {
    color: black !important;
  }
  .is-black-social:hover {
    background-color: white !important;
    color: #fc5d35 !important;
  }
  
  .footer {
    height: 50px;
  }</pre></body></html>