/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

div.sticky {
  position: sticky-sm-top;
  top: 0;
  padding-top: 10%; 
}

@media { 
  div.sticky {
   position: sticky-sm-top;
   top: 0;
   width: 150px;
   padding-top: 10%; 


}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f18c00;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #eea827;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #f0eae3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #eea827;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar i {
  font-style: normal;
  color: #fff;
}
#topbar i a, #topbar i span {
  padding-left: 5px;
  color: #fff;
}
#topbar i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar i a:hover {
  text-decoration: underline;
}
#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 5px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #f0eae3;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
}
.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 800;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #efac32;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #efac32;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #efac32;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s; 
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #efac32;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #efac32;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: auto;
	background: url("../img/Sunny Prawn website_Home.png")top left; 
	background-size: cover;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #FFFF;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #106eea;
}
#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid #fff;
  transition: 0.5s;
  color: #fff;
  background: #8bb71f;

}
#hero .btn-get-started:hover {
  background: #4b640d;
}

.whatsapp-icon img{
width: 120px;

}

@media (max-width: 768px) {
  #hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started{
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
}
/*--------------------------------------------------------------
# Home Page Continue
--------------------------------------------------------------*/
.homecon .content h1 {
  font-weight: bold;
  font-size: 35px;
  font-family: "Poppins", sans-serif;

}
.homecon .content p {
  font-size: 14px;
  text-align: justify;
}
.homecon .content p:last-child {
  margin-bottom: 1;
}

#homecon .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid #fff;
  transition: 0.5s;
  color: #fff;
  background: #8bb71f;

}
#homecon .btn-get-started:hover {
  background: #4b640d;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  width: 100%;
  height: auto;
  background: url("../img/Sunny Prawn website_Home2.png"); 
  background-size: cover;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #106eea;
}
.section-title p {
  margin: 20px auto 0 auto;
  font-weight: 0;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 60%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#aboutus {
  background: url("../img/Sunny Prawn website_AboutUs.png")center top; 
  background-size: cover;
  background-color: #f0eae3;

}

.row .content1{
  text-align: justify;
  font-size: 13px;
}

@media (max-width: 1080px) {

    .content1 {
    background-color: #fff;
    }

}

.aboutus1 .icon-box {
  padding: 30px;
  position: relative;
  /*overflow: hidden;*/
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.aboutus1 .icon {
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0 0 2px #eea827;
  background: #eea827;
  padding: 1.5em 1.3em;
  margin-bottom: 15px;
  border-radius: 50%;
  width: 130px;
  float: left;
  margin-top: 50px;
  margin-bottom: 50px;

}

.aboutus1 .icon1 {
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0 0 2px #eea827;
  background: #eea827;
  padding: 1.5em 1.3em;
  margin-bottom: 15px;
  border-radius: 50%;
  width: 130px;
  float: left;
  margin-top: 80px;
  margin-bottom: 80px;
}

.aboutus1 .icon2 {
  display: inline-block;
  border-radius: 60px;
  margin-bottom: 15px;
  width: 130px;
  float: left;
  margin-top: 70px;
  margin-bottom: 70px;

}

.aboutus1 .icon2-mobile {
  display: inline-block;
  border-radius: 60px;
  margin-bottom: 20px;
}

.aboutus1 .icon3 {
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0 0 2px #eea827;
  background: #eea827;
  padding: 1.5em 1.3em;
  margin-bottom: 15px;
  border-radius: 50%;
  width: 130px;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.aboutus1 .icon3-mobile {
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0 0 2px #eea827;
  background: #eea827;
  padding: 1.5em 1.3em;
  margin-bottom: 15px;
  border-radius: 50%;
  width: 130px;
 display: block;
  margin-left: auto;
  margin-right: auto;
 
}

.aboutus1 .icon2 i {
  font-size: 48px;
  line-height: 1;
  color: #eea827;
  transition: all 0.3s ease-in-out;
}

.aboutus1 .icon2-mobile i {
  font-size: 48px;
  line-height: 1;
  color: #eea827;
  transition: all 0.3s ease-in-out;
}

.aboutus1 .icon i {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.aboutus1 .title{
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #eea827;
  font-size: 25px;
  margin-left: 150px;
}

.aboutus1 .title-mobile{
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #eea827;
  font-size: 25px;
  text-align: center;
}

.aboutus1 .description {
  font-size: 15px;
  margin-left: 150px;
}

.aboutus1 .description1 {
  font-size: 15px;
}

.aboutus1 .description-mobile {
  font-size: 15px;
  margin-left: 0px;

}

.aboutus1 .header2{
  color: #eea827;
 line-height: 3em;
}

.aboutus1 .bm1{
  margin-left: 140px;
}

.imgOurPeople{
  /*position: absolute;*/
    position: fixed;
    top: -55%;
  width: 30%;

}
.aboutPage {
  padding: 90px;
}

.aboutTitle{
  width: 60%;
}

@media (min-width: 1800px) {
  .aboutPage {
   padding: 200px;
   }
}

@media (max-width: 768px) {
  .aboutTitle{
    width:80%;
  }
}
@media (max-height: 500px) {
  .aboutTitle{
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Our Product
--------------------------------------------------------------*/
#product {
  height: 100vh;
  background: url("../img/Sunny Prawn website_Product.png")center top; 
  background-size: cover;
}

#product h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #FFFF;
  font-family: "Poppins", sans-serif;
}
#product h1 span {
  color: #106eea;
}
#product h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#product .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid #fff;
  transition: 0.5s;
  color: #fff;
  background: #8bb71f;

}

.productTitle { 
  width: 50%;
  }

@media (max-width: 768px) {
  #product {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
  #product h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #product h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #product .btn-get-started{
    font-size: 13px;
  }
  .productTitle {  
     width: 80%;
  }
}
@media (max-height: 500px) {
  #product {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
  .productTitle {  
     width: 80%;
  }
}

#product2 {
  background-color:#f0eae3;
}

* {
  box-sizing: border-box;
}

.card-block {
    background-color: #f0f0f0;
    font-size: 1em;
    position: relative;
    margin: 0;
    padding: 20px;
    border: none;
    border-top: 1px solid rgba(34, 36, 38, .1);
    box-shadow: none;
     
}
.card {
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    font-size: 1em;
    overflow: hidden;
    padding: 5;
    border: none;
    margin-top:20px;
}

.btn {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid #fff;
  transition: 0.5s;
  color: #fff;
  background: #8bb71f;
  text-align: center;
}

.btn:hover {
  background: #4b640d;
  color: #fff;
}

.card-block h2 {
  left: 30%;
  font-size: 40px;
  font-weight: 800;
  color: #eea827;
  text-align: center;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
#contactUs {

  height: 107vh;
  background: url("../img/Sunny Prawn website_Contact us.png")top left; 
  background-size: cover;
}

#contactUs h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 56px;
  color: #eea827;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

#contactUs h3 i {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  color: #eea827;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

#contactUs p i {
  color: #eea827;
}

#contactUs h3 a{
    color: #000000; 
}

.cardContact{
  background-color: rgba(245, 245, 245, 0.8);
   margin: 0 auto;
   float: none;
   margin-bottom: 10px;
   width: 40rem;
   border-radius: 20px;
    font-size: 1em;
    overflow: hidden;
    padding: 5;
    border: none;
    margin-top:20px;
}

@media (max-width: 768px) {

.cardContact{
 width: 28rem;
}
  #contactUs {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
#contactUs h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  color: #eea827;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

#contactUs h3 i {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 56px;
  color: #eea827;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

  #contactUs b{
    font-size: 15px;
    font-weight: bold;
  }
}
@media (max-height: 500px) {
  #contactUs {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  background: #eea827;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #eea827;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #eea827;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}
#footer .footer-top .social-links a {
  font-size: 30px;
  display: inline-block;
  background: #eea827;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 5px;
  border-radius: 5px;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

#footer .footer-top .social-links-mobile a {
  font-size: 30px;
  display: inline-block;
  background: #eea827;
  border: 2px solid #fff;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 5px;
  border-radius: 5px;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.3s;

}
#footer .footer-top .social-links a:hover {
  background: #f0eae3;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: center;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}