@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.header {
  position: sticky;
  top: 0;
  background-color: #355872;
  z-index: 5000;
}
@media (max-width: 48rem) {
  .header {
    width: 100vw !important;
    position: sticky;
    top: 0;
    z-index: 5000;
  }
}
@media (max-width: 64rem) {
  .header {
    width: 100vw !important;
    position: sticky;
    top: 0;
    z-index: 5000;
  }
}
@media (max-width: 75rem) {
  .header {
    width: 100vw !important;
    position: sticky;
    top: 0;
    z-index: 5000;
  }
}
.header .navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
.header .navbar .logo-container {
  width: clamp(4rem, 6.5vw, 6rem);
  height: clamp(4rem, 6.5vw, 6rem);
  padding: 0.5rem 0;
}
.header .navbar .logo-container .logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .navbar .nav-wrapper {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media (max-width: 64rem) {
  .header .navbar .nav-wrapper {
    gap: 2.5rem;
  }
}
@media (max-width: 48rem) {
  .header .navbar .nav-wrapper {
    position: absolute;
    top: 100%;
    left: -100vw;
    flex-direction: column;
    justify-content: center;
    background-color: #355872;
    width: 100%;
    height: 100vh;
    gap: 3.5rem;
    transition: all 0.4s ease-in-out;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .navbar .nav-wrapper.active {
    left: 0;
  }
}
.header .navbar .nav-wrapper .nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}
@media (max-width: 64rem) {
  .header .navbar .nav-wrapper .nav-links {
    gap: 2rem;
  }
}
@media (max-width: 48rem) {
  .header .navbar .nav-wrapper .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
}
.header .navbar .nav-wrapper .nav-links li a {
  text-decoration: none;
  text-transform: capitalize;
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  transition: color 0.3s ease-in-out;
  position: relative;
}
.header .navbar .nav-wrapper .nav-links li a::after {
  content: "";
  display: block;
  width: 0;
  height: 0.2rem;
  margin-top: 0.5rem;
  background-color: #9cd5ff;
  transition: width 0.3s ease-in-out;
}
.header .navbar .nav-wrapper .nav-links li a:hover {
  color: #9cd5ff;
}
.header .navbar .nav-wrapper .nav-links li a:hover::after {
  width: 100%;
}
.header .navbar .nav-wrapper .login-btn {
  padding: 1rem 2rem;
  background-color: rgb(54, 169.7272727273, 255);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  transition: all 0.5s ease-in;
}
.header .navbar .nav-wrapper .login-btn:hover {
  background-color: rgb(207, 234.6363636364, 255);
  color: #333;
}
@media (max-width: 48rem) {
  .header .navbar .nav-wrapper .login-btn {
    margin-top: 2.4rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.5rem;
}
.hamburger span {
  display: block;
  width: 3rem;
  height: 0.3rem;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 48rem) {
  .hamburger {
    display: flex;
  }
}
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(0.6rem, 0.6rem);
}
.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

@media (max-width: 48rem) {
  .hero-section {
    width: 100vw !important;
  }
}
@media (max-width: 64rem) {
  .hero-section {
    width: 100vw !important;
  }
}
@media (max-width: 75rem) {
  .hero-section {
    width: 100vw !important;
  }
}
.hero-section .hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: backgroundSwap 50s infinite;
}
.hero-section .hero-text {
  text-align: center;
  border-radius: 8px;
  padding: 0 1.6rem;
}
.hero-section .hero-text h1 {
  font-size: clamp(1.8rem, 3vw, 4.4rem);
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero-section .hero-text h1 #typing-text {
  color: #fff;
  display: inline-block;
}
.hero-section .hero-text h1 .cursor {
  color: #fff;
  font-weight: 400;
  animation: blink 0.7s infinite;
}
.hero-section .hero-text p {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero-section .hero-text .cta-btn {
  padding: 1rem 2rem;
  background-color: rgb(54, 169.7272727273, 255);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  transition: all 0.5s ease-in;
}
.hero-section .hero-text .cta-btn:hover {
  background-color: rgb(207, 234.6363636364, 255);
  color: #333;
}
.hero-section .hero-text .cta-btn {
  margin-top: 2.4rem;
}
@media (max-width: 48rem) {
  .hero-section .hero-text .cta-btn {
    margin-top: 2.4rem;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes backgroundSwap {
  0% {
    background-image: url("../Images/hero.jpg");
  }
  25% {
    background-image: url("../Images/hero-1.jpg");
  }
  50% {
    background-image: url("../Images/hero-2.jpg");
  }
  75% {
    background-image: url("../Images/hero-3.jpg");
  }
  100% {
    background-image: url("../Images/hero-4.jpg");
  }
}
.egg-section {
  scroll-margin-top: 8rem;
}
@media (max-width: 64rem) {
  .egg-section {
    width: 100vw !important;
  }
}
@media (max-width: 48rem) {
  .egg-section {
    width: 100vw !important;
  }
}
.egg-section .egg-section-container {
  padding: 0 2.4rem;
  margin: 5.4rem 0;
}
.egg-section .egg-section-container .section-title {
  text-align: center;
}
.egg-section .egg-section-container .section-title-head {
  font-size: clamp(3.4rem, 6.5vw, 5.4rem);
  font-weight: bold;
  background: linear-gradient(to right, #355872, #9cd5ff);
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1.2rem;
  letter-spacing: 1rem;
}
.egg-section .egg-section-container .section-title-para {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  color: #333;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
.egg-section .egg-section-container .egg-cards {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin: 4.4rem 0;
}
@media (max-width: 64rem) {
  .egg-section .egg-section-container .egg-cards {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 48rem) {
  .egg-section .egg-section-container .egg-cards {
    flex-direction: column;
    gap: 3rem;
  }
}
.egg-section .egg-section-container .egg-cards .egg-card {
  width: calc(33.333% - 1.33rem);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
  background-color: #9cd5ff;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.egg-section .egg-section-container .egg-cards .egg-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}
@media (max-width: 64rem) {
  .egg-section .egg-section-container .egg-cards .egg-card {
    width: 100%;
  }
}
@media (max-width: 48rem) {
  .egg-section .egg-section-container .egg-cards .egg-card {
    width: 100%;
  }
}
.egg-section .egg-section-container .egg-cards .egg-card-textBox {
  padding: 1.8rem;
}
.egg-section .egg-section-container .egg-cards .egg-card .egg-image {
  max-width: 100%;
  height: 50%;
  object-fit: cover;
}
.egg-section .egg-section-container .egg-cards .egg-card .egg-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: bold;
  color: #355872;
  margin-bottom: 1.2rem;
}
.egg-section .egg-section-container .egg-cards .egg-card .egg-description {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #333;
  margin-bottom: 1.6rem;
}
.egg-section .egg-section-container .egg-cards .egg-card .egg-btn {
  padding: 1rem 2rem;
  background-color: rgb(54, 169.7272727273, 255);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  transition: all 0.5s ease-in;
}
.egg-section .egg-section-container .egg-cards .egg-card .egg-btn:hover {
  background-color: rgb(207, 234.6363636364, 255);
  color: #333;
}

.eggs-gallery {
  scroll-margin-top: 8rem;
  margin: 4rem 0;
}
.eggs-gallery .section-title {
  text-align: center;
}
.eggs-gallery .section-title-head {
  font-size: clamp(3.4rem, 6.5vw, 5.4rem);
  font-weight: bold;
  background: linear-gradient(to right, #355872, #9cd5ff);
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1.2rem;
  letter-spacing: 1rem;
}
.eggs-gallery .section-title-para {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  color: #333;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
.eggs-gallery .eggs-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.4rem;
  padding: 1rem;
  margin: 4.4rem 0;
}
.eggs-gallery .eggs-gallery-container .double {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 48rem) {
  .eggs-gallery .eggs-gallery-container .eggs-gallery-item {
    grid-column: span 1;
  }
}
@media (max-width: 64rem) {
  .eggs-gallery .eggs-gallery-container .eggs-gallery-item {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.eggs-gallery .eggs-gallery-container .eggs-gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.8rem;
  transition: all 0.3s ease-out;
}
.eggs-gallery .eggs-gallery-container .eggs-gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.contact-section {
  scroll-margin-top: 8rem;
}
@media (max-width: 48rem) {
  .contact-section {
    width: 100vw !important;
  }
}
@media (max-width: 64rem) {
  .contact-section {
    width: 100vw !important;
  }
}
.contact-section .section-title {
  text-align: center;
}
.contact-section .section-title-head {
  font-size: clamp(3.4rem, 6.5vw, 5.4rem);
  font-weight: bold;
  background: linear-gradient(to right, #355872, #9cd5ff);
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1.2rem;
  letter-spacing: 1rem;
}
.contact-section .section-title-para {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  color: #333;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
.contact-section .contact-container {
  width: 100%;
  margin: 2.4rem auto;
  position: relative;
}
.contact-section .contact-container .contact-image {
  max-width: 100%;
  height: 75vh;
  background-size: cover;
  background-position: center;
}
@media (max-width: 25rem) {
  .contact-section .contact-container .contact-image {
    height: 100vh !important;
  }
}
@media (max-width: 48rem) {
  .contact-section .contact-container .contact-image {
    height: 90vh !important;
  }
}
@media (max-width: 64rem) {
  .contact-section .contact-container .contact-image {
    height: 90vh !important;
  }
}
.contact-section .contact-container .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-section .contact-container .contact-info-form {
  width: 80%;
  display: flex;
  gap: 10rem;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
}
@media (max-width: 25rem) {
  .contact-section .contact-container .contact-info-form {
    flex-direction: column;
    padding: 1.6rem 0;
  }
}
@media (max-width: 48rem) {
  .contact-section .contact-container .contact-info-form {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 64rem) {
  .contact-section .contact-container .contact-info-form {
    flex-direction: column;
    gap: 3rem;
  }
}
.contact-section .contact-container .contact-info-form .contact-info {
  flex: 1;
}
.contact-section .contact-container .contact-info-form .contact-info .contact-info-head {
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: #fff;
  text-transform: capitalize;
}
@media (max-width: 25rem) {
  .contact-section .contact-container .contact-info-form .contact-info .contact-info-head {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.contact-section .contact-container .contact-info-form .contact-info .contact-info-para {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
}
.contact-section .contact-container .contact-info-form .contact-form-container {
  flex: 2;
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.8rem;
  padding: clamp(2.4rem, 2vw, 3.2rem);
}
@media (max-width: 25rem) {
  .contact-section .contact-container .contact-info-form .contact-form-container .contact-form {
    padding: 1.6rem;
  }
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form label,
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form input,
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form textarea:focus {
  outline: none;
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form-head {
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 2.4rem;
  color: #333;
  text-transform: capitalize;
}
@media (max-width: 25rem) {
  .contact-section .contact-container .contact-info-form .contact-form-container .contact-form-head {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form label {
  display: block;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form input {
  width: 100%;
  font-size: 1.2rem;
  padding: 1.2rem;
  margin-bottom: 1.6rem;
  border-radius: 0.4rem;
  border: none;
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form textarea {
  width: 100%;
  font-size: 1.2rem;
  padding: 1.2rem;
  border-radius: 0.4rem;
  border: none;
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form .contact-btn {
  width: 100%;
  margin-top: 4.4rem;
  padding: 1rem 2rem;
  background-color: rgb(54, 169.7272727273, 255);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  transition: all 0.5s ease-in;
}
.contact-section .contact-container .contact-info-form .contact-form-container .contact-form .contact-btn:hover {
  background-color: rgb(207, 234.6363636364, 255);
  color: #333;
}

.about-section {
  scroll-margin-top: 8rem;
}
@media (max-width: 48rem) {
  .about-section {
    width: 100vw !important;
  }
}
@media (max-width: 64rem) {
  .about-section {
    width: 100vw !important;
  }
}
@media (max-width: 75rem) {
  .about-section {
    width: 90vw !important;
  }
}
.about-section .section-title {
  text-align: center;
  margin-top: 5.4rem;
}
.about-section .section-title-head {
  font-size: clamp(3.4rem, 6.5vw, 5.4rem);
  font-weight: bold;
  background: linear-gradient(to right, #355872, #9cd5ff);
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1.2rem;
  letter-spacing: 1rem;
}
.about-section .section-title-para {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  color: #333;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
.about-section .about-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 10rem;
  flex-direction: row;
  justify-content: center;
  margin: 5.4rem auto;
}
@media (max-width: 64rem) {
  .about-section .about-container {
    flex-direction: column;
    width: 80%;
    gap: 2.4rem;
  }
}
@media (max-width: 48rem) {
  .about-section .about-container {
    flex-direction: column;
    width: 80%;
    gap: 2.4rem;
  }
}
.about-section .about-container .about-container-image {
  width: 30%;
  height: 30%;
  padding: 2.4rem;
}
@media (max-width: 64rem) {
  .about-section .about-container .about-container-image {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 48rem) {
  .about-section .about-container .about-container-image {
    width: 100%;
    padding: 0;
  }
}
.about-section .about-container .about-container-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.about-section .about-container .about-container-text {
  width: 50%;
  height: 50%;
  padding: 2.4rem;
  text-align: justify;
}
@media (max-width: 48rem) {
  .about-section .about-container .about-container-text {
    width: 100%;
    text-align: justify;
  }
}
@media (max-width: 64rem) {
  .about-section .about-container .about-container-text {
    width: 100%;
    text-align: justify;
  }
}
.about-section .about-container .about-container-text .about-headline {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  color: #333;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
  margin-bottom: 1.6rem;
}
.about-section .about-container .about-container-text .about-description {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #333;
  margin-bottom: 1.6rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.footer {
  scroll-margin-top: 8rem;
  background-color: #113d3c;
  color: #fff;
}
@media (max-width: 48rem) {
  .footer {
    width: 100vw !important;
  }
}
@media (max-width: 64rem) {
  .footer {
    width: 100vw !important;
  }
}
.footer-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 5.4rem 0;
  margin: 0 auto;
}
@media (max-width: 48rem) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 3.4rem;
  }
}
.footer-container-text-logo {
  font-size: clamp(1.8rem, 2.5vw, 3.2rem);
  font-weight: bold;
  background: linear-gradient(to right, #355872, #9cd5ff);
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1.4rem;
}
.footer-container-text-head {
  font-size: clamp(1.2rem, 2vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-container-text-para {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #fff;
  line-height: 1.4;
  font-style: italic;
}
.footer-container-text-social-icons {
  margin-top: 1.6rem;
  display: flex;
  gap: 1.8rem;
}
.footer-container-text-social-icons a {
  width: clamp(1.8rem, 2vw, 3rem);
  text-decoration: none;
}
.footer-container-text-social-icons a img {
  width: 100%;
}
.footer-container-menu {
  display: flex;
  align-items: start;
  gap: 8rem;
}
.footer-container-menu-normal-title {
  font-size: clamp(1.2rem, 2vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-container-menu-normal-menubar li {
  list-style: none;
  margin-bottom: 0.8rem;
}
.footer-container-menu-normal-menubar li a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-transform: capitalize;
  transition: all 0.3s;
}
.footer-container-menu-normal-menubar li a:hover {
  color: #9cd5ff;
}
.footer .footer-copyright {
  text-align: center;
  background: #355872;
  padding: 1.6rem 0;
}
.footer .footer-copyright p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
.footer .footer-copyright p small {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #f7f8f0;
  font-family: "Roboto", sans-serif;
}

.header,
.hero-section,
.egg-section,
.eggs-gallery,
.contact-section,
.about-section,
.footer {
  width: 80vw;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */
