/* styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
}

/* Top Bar Section */

.top-bar-section {
  width: 100%;
  background-color: #4fb649;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 70px;
  position: fixed;
  z-index: 1001;
}

.top-bar-section a {
  color: white;
  height: auto;
  text-decoration: none;
}

.top-bar-social-icons a {
  height: 20px;
}

.top-bar-content-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar-content-section p {
  font-size: 16px;
  /* font-weight: 600; */
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-social-icons i {
  font-size: 20px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  /* background-color: #fff; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 30px;
}

.logo {
  font-weight: bold;
}

.logo img {
  width: 170px;
  height: auto;
}

.logo span {
  color: #ffc107;
}

.nav-links {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  color: white;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

/* Slide Overlay */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust transparency level as needed */
  z-index: 1;
  pointer-events: none;
  /* Ensure it doesn’t interfere with any user interactions */
}

/* Adjusted Slide Style */
.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Set z-index to 1 so overlay can appear above */
}

.slide.active {
  opacity: 1;
  z-index: 2;
  /* Ensure active slide is above inactive ones */
}

.hero-overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  /* Keep overlay text on top */
}

.hero-overlay p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.hero-overlay h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-overlay h1 span {
  font-size: 1.65rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn-primary {
  background-color: #ffc107;
  color: #333;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

/* Catalog Section */

.catalog-section {
  text-align: center;
  padding: 20px;
}

.catalog-section__title {
  font-size: 14px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.catalog-section__subtitle {
  font-size: 35px;
  color: #2d3e50;
  font-weight: bold;
  margin-bottom: 30px;
}

.catalog-section__items {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.catalog-item {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 220px;
  text-decoration: none;
}

.catalog-item__image {
  width: 100%;
  /* height: 140px; */
  border-radius: 5px;
  margin-bottom: 15px;
}

.catalog-item__category {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.catalog-item__name {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.catalog-item__description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.catalog-item__link {
  font-size: 24px;
  color: #333;
  text-decoration: none;
}

@media (max-width:500px) {
  .catalog-section__subtitle{
    font-size: 26px;
    margin-bottom: 10px;
  }
  .catalog-section {
    padding: 5px 10px 10px 10px;
}
}

/* About Section */

.about-section {
  background-color: #ffffff;
  padding: 50px;
  display: flex;
  justify-content: center;
}

.about-container {
  /* max-width: 1200px; */
  width: 100%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-title {
  font-size: 36px;
  font-weight: bold;
  color: #2d3e50;
  margin-bottom: 10px;
}

.about-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 15px;
}

.about-image-and-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.img-inner img {
  width: 100%;
  margin: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 10px;
}

.about-stats {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  text-align: center;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
  font-size: 28px;
  font-weight: bold;
  color: #2d3e50;
}

.stat-item p {
  font-size: 14px;
  color: #777777;
  margin-top: 10px;
}

.about-description-new {
  width: 95%;
  margin: auto;
  display: block;
  font-size: 18px;
  margin-top: 15px;
  text-align: justify;
}

.read-more-btn {
  color: white;
  background-color: #4fb649;
  text-decoration: none;
  padding: 2px 10px;
  margin-top: 120px;
  border-radius: 5px;
}

/* Performance Section */

.performance-section {
  background-color: #4fb649;
  padding: 80px 20px;
  background-image: url(https://themejunction.net/html/pipex/demo/assets/images/shapes/counter-shapes-1.svg), url(https://themejunction.net/html/pipex/demo/assets/images/shapes/counter-shapes-2.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
}

.performance-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.performance-item {
  text-align: center;
}

.performance-item i {
  font-size: 40px;
}

.performance-item h2 {
  font-size: 36px;
  margin: 10px 0;
}

.performance-item h2 img {
  width: 45px;
  height: 45px;
  filter: invert(100%);
}

.performance-item p {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* Footer Section */

.footer-section {
  background-color: #2C2C2C;
  color: #ffffff;
  padding: 60px 20px;
  background-image: url("./images/footer-background.webp");
  background-size: cover;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 0px 50px;
}

.footer-brand {
  width: 50%;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  width: 60%;
  margin-bottom: 10px;
}

.footer-socials a {
  margin-right: 10px;
  font-size: 25px;
  color: #ffffff;
  text-decoration: none;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0px;
}

.footer-logo-section img {
  width: auto;
  height: 60px;
  border-radius: 5px;
}

.footer-links {
  flex: 1;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
}

.footer-below-box {
  width: 100%;
  padding: 10px;
  background-color: #4fb649;
}

.footer-below-box h3 {
  width: 100%;
  text-align: center;
  color: white;
}

/* Responsive Code */

@media (max-width: 1200px) {

  /* Footer */
  .footer-brand {
    width: 45%;
  }
}

@media (max-width: 769px) {

  /* Footer Section */
  .footer-section {
    padding: 20px;
  }

  .footer-middle {
    flex-direction: column;
    padding: 0px 10px;
    justify-content: center;
    gap: 25px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer-links h3 {
    margin-bottom: 10px;
  }

  .footer-item .footer-icon i {
    font-size: 30px;
  }

  .footer-links ul li {
    text-align: center;
  }

  .footer-item p {
    font-size: 14px;
  }

  .footer-item h3 {
    font-size: 18px;
  }

  .footer-below-box h3 {
    font-size: 14px;
  }

  .footer-brand p {
    width: 100%;
    text-align: center;
  }

  .footer-brand {
    width: auto;
  }

  .footer-logo-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-logo-section img {
    height: 65px;
  }
}

/* Responsive Code */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }

  .hero-overlay h1 {
    font-size: 2.5rem;
  }

  .catalog-section {
    padding: 25px 20px;
  }

  .catalog-section__items {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-middle {
    padding: 0px 30px;
  }

  .performance-container {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

  /* Top Section */
  .top-bar-section {
    flex-direction: column;
    padding: 5px 10px;
    gap: 10px;
    display: none;
  }

  .top-bar-content-section {
    flex-direction: column;
    gap: 2px;
  }

  /* Navbar */
  .navbar {
    padding: 15px 20px;
    align-items: flex-start;
    top: 0px;
  }

  .nav-links {
    display: none;
  }

  .nav-links a {
    font-size: 16px;
  }

  .logo img {
    width: 150px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 70vh;
  }

  .hero-overlay {
    width: 90%;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Catalog Section */
  .catalog-section__items {
    align-items: center;
  }

  .catalog-item {
    width: 100%;
    max-width: 350px;
  }

  /* About Section */
  .about-section {
    padding: 20px 10px;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
  }

  .about-description {
    font-size: 14px;
    text-align: justify;
  }

  /* Performance Section */
  .performance-container {
    flex-direction: column;
    text-align: center;
  }

  .performance-item {
    margin-bottom: 20px;
  }

  .performance-section {
    background-position: top left, top right;
    padding: 40px 15px;
  }

  /* Footer */
  .footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-links ul li {
    text-align: center;
  }

  .footer-below-box h3 {
    font-size: 14px;
  }

  .footer-logo-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-logo-section img {
    height: 50px;
  }
}

@media (max-width:450px) {

  /* Hero Section */
  .hero-section {
    min-height: 22.5vh;
    max-height: 22.5vh;
    top: 64px;
  }

  .hero-overlay h1 {
    font-size: 1.2rem;
  }

  .hero-overlay h1 span {
    font-size: 0.9rem;
  }
  .hero-overlay{
    top: 85%;
  }
  .navbar{
    background-color: #000;
  }
  .about-section {
    padding: 20px 10px;
    padding-top: 80px;
  }
}

/* Sidebar */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 2000;
}

.sidenav a {
  padding: 8px 8px 8px 22px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

.sidebar-logo-img {
  width: 150px;
  margin-top: 10px;
}

.sidebar-open {
  display: none !important;
  color: white;
  font-size: 25px;
  cursor: pointer;
}

@media (max-width:900px) {
  .sidebar-open {
    display: block !important;
  }
}

.sidebar-nav {
  color: white;
  font-size: 25px;
  display: none !important;
  cursor: pointer;
}

@media (max-width:1050px) {
  .sidebar-nav {
    display: block !important;
  }
}

/* About Us Section */

.about-section-1 {
  padding: 50px 120px 20px 120px;
  /* background-image: url('https://themejunction.net/html/pipex/demo/assets/images/shapes/about-1.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 180px;
    background-color: white; */
}

.main-h2-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 25px;
}

.about-container-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-image-container {
  width: 50%;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  padding: 10px;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: auto;
  display: block;
  border-radius: 15px;
  border: 4px solid #000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.content-container {
  width: 50%;
  margin-top: 15px;
}

.section-title {
  color: #4fb649;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.content-container h1 {
  font-size: 25px;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.content-container p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
}

.service-list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  background-color: rgb(79, 182, 73);
  padding: 20px 35px;
  border-radius: 15px;
  border-left: 5px solid black;
}

.service-list li {
  width: 100%;
  font-size: 18px;
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.service-list li::marker {
  color: #171263;
}

@media (max-width: 768px) {
  .about-container-1 {
    flex-direction: column;
    text-align: center;
  }

  .content-container,
  .about-image-container {
    width: 100%;
  }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {

  .nimbus-about-container,
  .about-container-1 {
    flex-direction: column;
    text-align: center;
  }

  .nimbus-about-content,
  .nimbus-about-images,
  .about-image-container,
  .content-container {
    max-width: 100%;
  }

  .nimbus-about-title {
    font-size: 32px;
  }

  .nimbus-about-subtitle,
  .nimbus-about-text {
    font-size: 16px;
  }

  .steps-section {
    padding: 1rem 2rem;
  }

  .step-big-box {
    flex-direction: column;
    text-align: center;
  }

  .step-box-1,
  .steps-container {
    width: 100%;
  }

  .about-image-container {
    width: 100%;
  }

  .content-container {
    width: 100%;
  }

  .step-big-box {
    gap: 20px;
  }
}


/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

  /* About Us Sections */
  .about-section-1 {
    padding: 10px 10px 10px 10px;
  }

  .about-container-1 {
    gap: 10px;
  }

  .nimbus-about-container {
    flex-direction: column;
    text-align: center;
  }

  .nimbus-about-section {
    padding: 20px 10px;
  }

  .nimbus-about-content,
  .nimbus-about-images,
  .about-image-container,
  .content-container {
    width: 100%;
    text-align: center;
  }

  .nimbus-about-content {
    padding-right: 0px;
  }

  .nimbus-about-title {
    font-size: 28px;
  }

  .nimbus-about-subtitle,
  .nimbus-about-text {
    font-size: 14px;
  }

  .nimbus-about-buttons {
    justify-content: center;
  }

  .nimbus-about-image-overlay {
    bottom: -25px;
    left: -5px;
  }

  /* Steps Section */
  .steps-section {
    padding: 1rem;
  }

  .step-big-box {
    flex-direction: column;
  }

  .step-box-1,
  .steps-container {
    width: 100%;
  }

  .steps-container::before {
    left: 22px;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .step-box-1 img {
    width: 100%;
  }

  .content-container {
    margin-top: 5px;
  }

  .content-container h1 {
    font-size: 30px;
  }

  .steps-section h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

/* Testimonial Section */

.outerdiv {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 50px;
}

.outerdiv h2 {
  font-size: 35px;
  margin-top: 15px;
  color: #2d3e50;
  margin-bottom: 5px;
}

.outerdiv .testi-para{
  max-width: 1100px;
  text-align: justify;
  color: #666;
  margin-bottom: 10px;
}

.innerdiv {
  transform: scale(0.98);
  display: grid;
  grid-gap: 1.5rem;
  grid-template-rows: repeat(2, 19rem);
  grid-template-columns: repeat(4, 17rem);
  margin-bottom: 20px;
}

.eachdiv {
  padding: 1rem 1rem;
  border-radius: 0.8rem;
  box-shadow: 5px 5px 20px #6d6b6b6b;
  color: white;
}

.div1 {
  background: #733FC8;
  grid-column: 1/3;
  grid-row: 1/2;
  background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
  background-repeat: no-repeat;
  background-position-x: 25rem;
}

.div2 {
  background: #49556B;
  grid-column: 3/4;
  grid-row: 1/2;
}

.div3 {
  background: white;
  grid-column: 4/5;
  grid-row: 1/3;
  color: black;
}

.div4 {
  background: white;
  grid-column: 1/2;
  grid-row: 2/3;
  color: black;
}

.div5 {
  background: #18202D;
  grid-column: 2/4;
  grid-row: 2/3;
}

.userdetails {
  display: flex;
}

.imgbox {
  margin-right: 1rem;
}

.imgbox img {
  border-radius: 50%;
  width: 2rem;
  border: 2px solid #cec5c5;
}

.detbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detbox p {
  margin: 0;
}

.detbox .name {
  color: hsl(0, 0%, 81%);
  font-size: 0.9rem;
  font-weight: 600;
}

.detbox .name.dark {
  color: #49505A;
}

.detbox .designation {
  color: hsl(0, 0%, 81%);
  opacity: 50%;
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
}

.detbox .designation.dark {
  color: #49505A;
}

.review h4 {
  font-size: 1.4rem;
  color: #F3DEFF;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.review.dark h4 {
  color: #4B5258;
}

.review p {
  font-size: 0.95rem;
  color: #F3DEFF;
  font-weight: 500;
  opacity: 50%;
  line-height: 1.5;
}

.review.dark p {
  color: #0e0e0e;
}

@media only screen and (max-width: 1200px) {
  .innerdiv {
    transform: scale(0.8);
  }
}

@media only screen and (max-width: 1000px) {
  .innerdiv {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 800px) {
  .innerdiv {
    transform: scale(0.55);
  }
}

@media only screen and (max-width: 600px) {
  .div1 {
    background-position-x: 10rem;
  }

  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 2rem;
  }
  .outerdiv{
    margin-top: 10px;
  }
  .outerdiv h2{
    text-align: center;
    font-size: 28px;
  }
  .outerdiv .testi-para{
    padding: 0px 10px;
    font-size: 14px;
  }
}

/* NEW CSS - Map Section */

.container-map {
  max-width: 1300px;
  margin: auto;
  margin-top: 50px;
}

.container-map h2 {
  font-size: 40px;
  text-align: center;
  color: #2d3e50;
  line-height: 1;
  margin-bottom: 15px;
}

.container-map h2 span{
  font-size: 30px;
  color: #2d3e50;
  font-weight: 500;
}

.container-map .map-para{
  margin: auto;
  max-width: 1100px;
  text-align: justify;
  color: #666;
  margin-bottom: 10px;
}

.inner-container-map {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  width: 100%;
  padding-bottom: 25px;
}

.map {
  width: 40%;
  text-align: center;
  padding: 10px;
}

.map img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.info {
  width: 30%;
  padding: 0px 20px;
  align-self: center;
}

.info-inner-box {
  background-color: white;
  box-shadow: 5px 5px 20px #6d6b6b6b;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 10px;
  list-style: none;
  font-size: 14px;
  text-align: center;
}

.info-1 {
  width: 30%;
  padding: 0px 20px;
  align-self: center;
}

.info h3 {
  margin-bottom: 5px;
}

.info-1 h3 {
  margin-bottom: 5px;
}

.info ul li {
  font-size: 14px;
}

.info a {
  color: #0056b3;
  text-decoration: none;
}

.info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .map,
  .info {
    padding: 10px;
  }

  .info-1 {
    padding: 10px;
  }

  .info,
  .info-1 {
    width: 50%;
  }

  .map {
    order: 1;
    width: 100%;
  }
  .container-map .map-para{
    padding: 0px 10px;
    font-size: 14px;
  }
}

@media (max-width: 450px) {

  .info,
  .info-1 {
    width: 100%;
  }

  .map {
    width: 100%;
  }

  .container-map h2{
    font-size: 30px;
  }
  .container-map h2 span{
    font-size: 22px;
  }
  .container-map{
    margin-top: 5px;
  }
}

/* Whatsapp Button */

.whatsapp-btn{
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10000;
}

.whatsapp-btn img{
  width: 70px;
  height: auto;
}

@media (max-width: 600px) {
  .whatsapp-btn img{
      width: 60px;
      height: auto;
  }
}