/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}
:root {
  /* Font Sizes & Family */
  /* if we set html's font size 62.5% then 1rem = 10px */

  --body-font: "Poppins", sans-serif;

  --h2-font: 2.4rem;
  --h4-font: 1.8rem;
  --normal-font: 1.6rem;
  --small-font: 1.4rem;

  /* Font Weight ***/
  --font-regular: 400;
  --font-medium: 500;

  /* Color Variables */
  --primary-color: #8d1600;
  --primary-color-hover: #c96400;
  --text-color: #333;
  --text-color-light: #888682;
  --border-color: #484848;
  --white-color: #fff;
  --section-bg: #2c3034;

  /* z-index */
  --z-overlay: 10;
  --z-fixed: 100;

  /* transition */
  --tran-0-2: 0.2s;
  --tran-0-3: 0.3s;
  --tran-0-5: 0.5s;
}

/*Font sizes For Small Screen 968px */
@media screen and (max-width: 990px) {
  :root {
    --h2-font: 2rem;
    --h4-font: 1.6rem;
    --normal-font: 1.5rem;
    --small-font: 1.3rem;
  }
}

/* Pre-CSS */
* {
  margin: 0;
  padding: 0;
 box-sizing: border-box;
}
body {
  overflow-x: hidden;
  background-color: var(--white-color);
}

/* Custom Scrollbar */
::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #f9f1ec;
}
::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb:hover {
  border-radius: 1rem;
  background-color: var(--primary-color-hover);
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font);
  font-weight: var(--font-regular);
  color: var(--text-color);
}

input {
  outline: none;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reusuable CSS */
.section {
  padding: 7rem 2rem;
}
.container {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
.flex {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
}
.button {
  border: none;
  outline: none;
  color: var(--white-color);
  padding: 1.4rem 4rem;
  border-radius: 3rem;
  background-color: var(--primary-color);
  transition: var(--tran-0-3);
  cursor: pointer;
}
.button a{
  color: var(--white-color);

}
.button:hover {
  background-color: var(--primary-color-hover);
}



.section-title,.gallery-title, .content-title, .findus-title {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #C96400;
  margin-bottom: 10px;
  font-family: 'boxicons';
}

.section-description {
  text-align:center;
  margin-bottom: 2rem;
  
}
.section-description {
  padding: 0 16rem;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 7rem;
  width: 100%;
  z-index: var(--z-fixed);
  transition: var(--tran-0-5);
}
.header-active {
  height: 6rem;
  background-color: var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* nav */
.nav {
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.logo-icon,
.nav-link,
.phone-icon,
.facebook-icon,
.instagram-icon,
.phone-number, .b1{
  color: white;
}


.header-active .nav-link,
.header-active .phone-icon,
.header-active .facebook-icon,
.header-active .instagram-icon,
.header-active .phone-number, 
.header-active .b1{
  color: var(--text-color);
}


.facebook-icon,
.instagram-icon,
.phone-icon {
  font-size: 2rem;
}
.menu-list {
  column-gap: 2rem;
}
.nav-link {
  position: relative;
  text-transform: capitalize;
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  transform: translateX(-50%);
  background-color: var(--white-color);
  opacity: 0;
}
.active-navlink::before {
  opacity: 1;
}
.header-active .active-navlink::before {
  background-color: var(--text-color);
}

.media-icons {
  column-gap: 1rem;
}
.media-icons a {
  color: var(--text-color-light);
}
.navClose-btn,
.navOpen-btn,
.media-icons {
  display: none;
}
.logo-img{
  margin-left: 10px;
  width: 140px;
  height:60px;
}

/*Nav bar Place order form*/
.b1 {
  background-color: transparent;
  border: none;
}

input[type=text] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}
input[type=text]:focus {
  background-color: #ddd;
  outline: none;
}
form{
  text-align:center;
}
.required:after{
  content: "*";
  color:red;
}
.error { color: red }

.cancelbtn, .submitbtn {
  font-size: medium;
  padding: 7px ;
  margin: 10px;
  background-color: #be9303;
  color: white;
}


/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .submitbtn {
  float: center;
  width: 20%;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-image: linear-gradient(0deg, #8d1600, #c96400);
  padding-top: 50px;
  
}

/* Modal Content/Box */
.modal-content {
  background-image: linear-gradient(180deg, #8d1600, #c96400);
  margin: 5% auto 5% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #be9303;
  width: 80%; /* Could be more or less, depending on screen size */
 
}
.modal-content h2{
  color: white;
  margin-top: 10px;
}
hr {
  border: 1px solid #be9303;
  margin-bottom: 25px;
}

.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: #8d1600;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}



/* nav responsive */
@media screen and (max-width: 840px) {
  .contact-content {
    display: none;
  }
  .navClose-btn,
  .navOpen-btn,
  .media-icons {
    display: block;
  }
  .nav .menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 300px;
    width: 100%;
    height: 100%;
    z-index: var(--z-fixed);
    padding: 10rem 0 5rem;
    background-color: var(--white-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: var(--tran-0-5);
  }
  .nav .menu-content.open {
    right: 0;
  }
  .menu-list {
    flex-direction: column;
    row-gap: 2.5rem;
    font-size: var(--h4-font);
  }
  .logo-icon,
  .nav-link,
  .phone-icon,
  .facebook-icon,
  .instagram-icon,
  .phone-number, .b1 {
    color: var(--text-color);
  }
  .nav-link::before {
    background-color: var(--text-color);
  }
  .navClose-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
  }
  .navOpen-btn {
    font-size: 2rem;
    cursor: pointer;
    color: var(--white-color);
  }
  .header-active .navOpen-btn {
    color: var(--text-color);
  }
  .cancelbtn, .submitbtn {
    width: 90%;
 }
}

/* Home */
.home {
  height: 100vh;
  width: 100%;
  /* background-color: red; */
}
.swiper-slide {
  position: relative;
  height: 100vh;
  width: 100%;
}
.home .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: var(--z-overlay);
}
.home-img {
  height: 100%;
  width: 100%;
}

/* swiper button */
.swiper-navBtn {
  height: 5rem;
  width: 5rem;
  color: var(--white-color);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--tran-0-2);
  opacity: 0;
  visibility: visible;
}
.home:hover .swiper-navBtn,
.review:hover .swiper-navBtn {
  opacity: 1;
}
.swiper-navBtn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.swiper-navBtn::after,
.swiper-navBtn::before {
  font-size: 2rem;
}

.swiper-button-next {
  right: 16rem;
}
.swiper-button-prev {
  left: 16rem;
}

.swiper-pagination-bullet {
  background-color: var(--white-color);
  opacity: 1;
  height: 1.5rem;
  width: 1.5rem;
  margin-bottom: 2rem;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  border: 3px solid var(--white-color);
  background-color: var(--primary-color);
}

.home-details {
  position: absolute;
  top: 90%;
  left: 50%;
  z-index: var(--z-fixed);
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  width: 100%;
  row-gap: 4rem;
}

/* About */
.about {
  background-color: #e0e0e0;
}

.about .content-description {
  text-align:justify;
}
.about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 7rem;
  align-items: center;
  padding: 0 5rem;
}
.about-imageContent {
  position: relative;
  max-width: 400px;
  height: 450px;
  border: solid 4px #8d1600 ;
}

.aboutImg-textBox {
  position: absolute;
  bottom: 2rem;
  right: -5rem;
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  background-color: #8d1600;

}
.aboutImg-textBox {
  text-align: center;
  margin-bottom: 0;
  color:white;
}
.heart-icon {
  position: absolute;
  left: -1.9rem;
  top: 50%;
  height: 3rem;
  width: 3rem;
  color: #8d1600; 
  background-color: white;
  transform: translateY(-50%);
  justify-content: center;
  border-radius: 50%;
}

.about-details {
  display: grid;
  row-gap: 4rem;
}

#more {
  display: none;
}

.proudparents-content{
  text-align: justify;

}
.about-subtitle{
  text-align: center;
  font-size: 16px;
  color: var(--primary-color-hover);
  margin-top: 10px;
}
.about-subtitle-rating{
  text-align: center;
  font-size: 16px;
  color: var(--primary-color-hover);
}

#parentsMore {
  display: none;
}

/*Gallery */
.gallery {
  background: #eee;
}

.gallery .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.gallery .controls .buttons {
  height: auto;
  width: auto;
  color: #666;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
  margin: 10px;
  text-align: center;
}

.gallery .controls .buttons:hover{
  text-decoration: overline;
  text-decoration-color: var(--primary-color-hover);
  color:#8d1600;
  font-weight: 500;
  font-size: 18px;
}

.gallery .controls .buttons.active {
  color: var(--primary-color);
  background-color: transparent;
}

.gallery .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;

}

.gallery .image-container .image {
  height: 250px;
  width: 350px;
  overflow: hidden;
  margin: 10px;
}

.gallery .image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .image-container .image:hover img {
  transform: scale(1.4);
}

@media only screen and (max-width: 1030px) {
  .gallery .image-container .image {
    height: 190px;
    width: 300px;
  }
}

@media only screen and (max-width: 1006px) {
  .gallery .image-container .image {
    height: 190px;
    width: 280px;
  }
}

@media only screen and (max-width: 946px) {
  .gallery .image-container .image {
    height: 190px;
    width: 260px;
  }
}

@media only screen and (max-width: 888px) {
  .gallery .image-container .image {
    height: 190px;
    width: 240px;
  }
}

@media only screen and (max-width: 828px) {
  .gallery .image-container .image {
    height: 170px;
    width: 230px;
  }
}

@media only screen and (max-width: 798px) {
  .gallery .image-container .image {
    height: 190px;
    width: 320px;
  }
}

@media only screen and (max-width: 736px) {
  .gallery .image-container .image {
    height: 170px;
    width: 300px;
  }
}

@media only screen and (max-width: 668px) {
  .gallery .image-container .image {
    height: 130px;
    width: 270px;
  }
}

@media only screen and (max-width: 608px) {
  .gallery .image-container .image {
    height: 130px;
    width: 250px;
  }
}

@media only screen and (max-width: 568px) {
  .gallery .image-container .image {
    height: 100px;
    width: 220px;
  }
}

@media only screen and (max-width: 515px) {
  .gallery .image-container .image {
    height: 90px;
    width: 180px;
  }
}

@media only screen and (max-width: 468px) {
  .gallery .image-container .image {
    height: 90px;
    width: 170px;
  }
}

@media only screen and (max-width: 428px) {
  .gallery .image-container .image {
    height: 90px;
    width: 150px;
  }
}

@media only screen and (max-width: 376px) {
  .gallery .image-container .image {
    height: 90px;
    width: 130px;
  }
}

@media only screen and (max-width: 328px) {
  .gallery .image-container .image {
    height: 90px;
    width: 120px;
  }
}


/* Review */
.review {
  background-color: #e0e0e0;
}

.review .section-description {
  color: var(--text-color);
}
.testi-content {
  position: relative;
  height: 100%;
  width: 100%;
  row-gap: 2rem;
  flex-direction: column;
}
.review-img {
  height: 200px;
  width: 300px;
  border-radius: 10%;
  margin-bottom: 1rem;
}
.review-quote {
  padding: 0 15rem;
  text-align: center;
 
}
.quote-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.testi-name{
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: var(--font-medium);
}
.testi-personDetails .location{
  font-size: 1rem;
  font-weight: var(--font-medium);
}
/* swiper btn */
.review .swiper-navBtn {
  background-color: rgba(0, 0, 0, 0.1);
}
.review .swiper-button-next {
  right: 2rem;
  transform: translateY(2rem);
}
.review .swiper-button-prev {
  left: 2rem;
  transform: translateY(2rem);
}
.review .swiper-navBtn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

/*Contact Us*/
.contact {
  display: grid;
  align-items: center;
  background-color: #eee;
}

.contact-wrap {
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.contact-in {
  padding: 40px 30px;
}

.contact-in:nth-child(1) {
  flex: 50%;
  color: black;
  box-sizing: border-box;
}

.contact-in:nth-child(2) {
  flex: 50%;
  box-sizing: border-box;
}
.contact-in h3 {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 15px;
  text-align:justify;
}
.contact-in h3 i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #8d1600 ;
  color: white;
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
}
.contact-in a{
  color: black;
}
.contact-in a:hover{
  color:#8d1600;
  font-weight: 500;
  font-size: 18px;
}

.contact-in iframe {
  width: 100%;
  height: 100%;
  border: solid 4px #8d1600 ;

}


/* Footer */
.footer {
  position: relative;
  width: 100%;
  background-color: var(--section-bg);
  padding: 1px 2px;
  justify-content: center;
  flex-direction: column;
  
}

.footer-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  overflow: hidden;
}

.footer-copyright {
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--small-font);
  color: rgba(255, 255, 255, 0.8);;
}

/*FAQs Popup*/

.popup-button {
  font-size: 1em;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  opacity: 0.75;
}
.popup-button:hover {
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 900ms;
  visibility: hidden;
  opacity: 0;
  
  
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 70%;
  position: relative;
  transition: all 5s ease-in-out;
  max-height: 80%;
  overflow: scroll;
}

.popup h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: red;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p{
  color: black;
  text-align: left;
  margin: 10px 0;
}


/* Scroll Up */
.scrollUp-btn {
  position: fixed;
  bottom: -30%;
  right: 3rem;
  height: 3rem;
  width: 3rem;
  font-size: 2rem;
  border-radius: 4px;
  color: var(--primary-color-hover);
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-color: var(--white-color);
  z-index: var(--z-overlay);
  justify-content: center;
  transition: var(--tran-0-3);
}
.scrollUpBtn-active {
  bottom: 3rem;
}
.scrollUp-icon {
  opacity: 0.9;
  transition: var(--tran-0-3);
}
.scrollUp-btn:hover .scrollUp-icon {
  opacity: 1;
}

/*whatsapp*/

.whats-app {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 2%;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1001;
  left: 2%;
}

.my-float {
  margin-top: 16px;
}

/* Responive media */
@media screen and (max-width: 1150px) {
  .swiper-button-prev {
    left: 10rem;
  }
  .swiper-button-next {
    right: 10rem;
  }
}

@media screen and (max-width: 1000px) {
  .swiper-button-prev {
    left: 3rem;
  }
  .swiper-button-next {
    right: 3rem;
  }
  .section-description {
    padding: 0 8rem;
  }
  .about-imageContent {
    height: 400px;
  }
  .aboutImg-textBox {
    padding: 1.5rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .section.review {
    padding: 7rem 1rem 3rem;
  }
  .review .swiper {
    padding-bottom: 6.5rem;
  }
  .swiper-navBtn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }

  .section {
    padding: 7rem 1rem;
  }
  .section-description,
  .review-quote {
    padding: 0 6rem;
  }
  .about-content {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    justify-items: center;
  }

  .about .content-description {
    text-align:justify;
  }
  .about-details {
    justify-items: center;
  }

  .footer{
    padding: 1px 2px;
  }
  .contact-in {
    padding: 1px 1.5px 2px 1.5px;
  }
}

@media screen and (max-width: 600px) {
  .container {
    padding: 0.5rem;
  }
  .section-description,
  .review-quote {
    padding: 0;
  }
  .aboutImg-textBox {
    right: -2rem;
  }
  .contact-in {
    padding: 1px 1.5px 2px 1.5px;
  }
  .footer{
    padding: 1px 2px;
  }
}

@media screen and (max-width: 415px) {
  .contact-in p {
    margin-bottom: 2px;
  }
  .contact-in h2 {
    margin-bottom: 2px;
  }
}

