@font-face {
  font-family: 'Helvetica';
  src: url(assets/Bold-Condensed.otf);
}

@font-face {
  font-family: 'Helvetica';
  src: url(assets/Medium.otf);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Helvetica", sans-serif;
  overflow-x: hidden;
}

/*NAVBAR*/

.navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  width: 100%;
}

.nav {
  position: relative;
  height: 109px;
}

.navbar-nav {
  margin-left: auto;
  gap: 25px;
}

.nav-link {
  color: black;
  padding: 2px 0;
}

.nav-link:hover {
  color: #d40b04;
}

.dropdown-item:hover {
  background-color: #d40b04;
  color: #fff;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}



.nav-link i {
  display: inline-block;
  margin-left: .255em;
  content: "";
  border-right: .3em solid transparent;
  border-bottom: 0;
  font-size: 14px;
}

.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  position: relative;
}

.navbar-toggler-icon {
  width: 30px;
  height: 3px;
  background-color: black;
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: black;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* Change icon to 'X' when navbar is open */
.navbar-toggler.open .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.open .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler.open .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Ensure navbar items are visible when open */
.navbar-collapse {
  transition: all 0.3s ease-in-out;
}


/* 1.ABOUT-US */

/*BANNER*/

.about-banner {
  background-image: url('assets/about-us-img/about-banner.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adds dark overlay */
}

.about-banner .container {
  position: relative;
  z-index: 1;
}

.about-banner h1 {
  font-size: 48px;
  font-weight: 700;
}

.about-banner p {
  font-size: 18px;
  font-weight: 300;
}

/*ABOUT-US*/

.about-section {
  padding: 40px 0;
  position: relative;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}

.about-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  top: 175px;
  left: 210px;
  background: #dc3545;
  color: #fff;
  padding: 20px 15px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-content {
  padding-left: 40px;
}

.about-title {
  font-size: 24px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 0;
}

.about-subtitle {
  font-size: 40px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 15px;
}

.about-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/*ABOUT-PARALLAX*/

.about-parallax-section {
  position: relative;
  background: url('assets/about-us-img/about-parallax.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 40px;
  background-attachment: fixed;
}

.about-parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.about-parallax-section .about-content {
  position: relative;
  z-index: 2;
}

/*MISSION-VISION*/

.mission-vision-section {
  padding: 40px 0;
  /* background-color: #f8f9fa; */
}

.mission-vision-section .card {
  border: 2px solid #dc3545;
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  /* height: 315px; */
}

.mission-vision-section .card img {
  width: 80px;
  margin-bottom: 15px;
}

.mission-vision-section .card h3 {
  font-size: 24px;
  font-weight: bold;
}

.mission-vision-section .card p {
  font-size: 16px;

}

/* 2.SERVICES */

/*BANNER*/




/*SERVICES*/

.services-section {
  padding: 40px 0;
}

.services-title {
  text-align: center;
  margin-bottom: 40px;
}

.services-title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #212529;

}

.services-title p {
  font-size: 1rem;
  color: #666;
}

.services-section .service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  background-color: #fff;
  height: 100%;
}

.services-section .service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
  text-align: center;
}

.service-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}

.services-section .service-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
}


/*FOOTER*/

.footer {
  background-color: #dc3545;
  color: #ffffff;
  padding: 20px 0;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

.footer a:hover {
  color: white !important;
}


.footer .icon {
  font-size: 12px;
  color: #fff;
  margin-right: 10px;
  margin-bottom: auto;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
}

.footer .address {
  margin-bottom: 10px;
}



.footer a:hover {
  color: #fff;
}

.footer .logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer .social-icons a {
  text-decoration: none;
  border-radius: 50%;
  background: #fff;
  height: 27px;
  width: 27px;
  display: inline-grid;
  justify-content: center;
  align-items: center;
  margin-left: 20px;

}

.footer .social-icons a:hover {
  color: #000;
}

.footer .social-icons i {
  font-size: 16px;
  margin-right: 10px;
  color: #dc3545;
  cursor: pointer;
  display: contents;
  justify-content: center;
  align-items: center;
}

.footer .social-icons i:hover {
  color: #eb8f98;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.company {
  margin: 0;
  padding-left: 40px;
  color: #fff;
}

.company:hover {
  color: #eb8f98;
}

.copyrights {
  text-align: left;
  padding-right: 40px;
  margin: 0;
}

.disclaimer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-right: 110px;
  font-size: 14px;
}

.disclaimer a {
  color: #fff;
}

.disclaimer a:hover {
  color: #eb8f98;
}

.disclaimer-content {
  display: block;
  /* Treats the span as a block element */
  text-align: center;
  /* Centers the text content */
  margin: 0 auto;
  /* Centers the block element itself */
  margin-top: 5px;
  font-size: 10px;
  /* Adjust font size as needed */
  line-height: 1.5;
  /* Adjust line height for better spacing */
  width: 80%;
  /* Optional: Restrict width for better readability */
}

#contacts iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 1400px) {
  #contacts iframe {
    width: 100%;
    height: 550px;
  }
}

/*MEDIA QUERIES*/

/*NAVBAR*/

@media (max-width: 992px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
    overflow-y: auto;
  }

  .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

}

@media (max-width: 768px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
  }
}

@media (max-width: 576px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
  }
}

@media (max-width: 480px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
  }
}

/*CONTENT-ALIGNMENT*/

/* Hide first h3 on 576px and 480px */
@media (max-width: 576px) {
  .hide-small {
    display: none;
  }
}

/* Hide second h3 on 1200px, 992px, and 768px */
@media (min-width: 768px) and (max-width: 2600px) {
  .hide-large {
    display: none;
  }
}

/*1. ABOUT-US*/

/*BANNER*/

/* Extra Large Devices (1200px and below) */
/* For screens larger than 1200px */
@media (max-width: 1200px) {
  .about-banner {
    height: 280px;
  }

  .about-banner h1 {
    font-size: 42px;
  }

  .about-banner p {
    font-size: 16px;
  }
}

/* For screens between 992px and 1200px */
@media (max-width: 992px) {
  .about-banner {
    height: 250px;
  }

  .about-banner h1 {
    font-size: 38px;
  }

  .about-banner p {
    font-size: 15px;
  }
}

/* For screens between 768px and 992px */
@media (max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 34px;
  }

  .about-banner p {
    font-size: 14px;
  }
}

/* For screens between 576px and 768px */
@media (max-width: 576px) {
  .about-banner {
    height: 200px;
  }

  .about-banner h1 {
    font-size: 30px;
  }

  .about-banner p {
    font-size: 13px;
  }
}

/* For screens 480px and below */
@media (max-width: 480px) {
  .about-banner {
    height: 180px;
  }

  .about-banner h1 {
    font-size: 26px;
  }

  .about-banner p {
    font-size: 12px;
  }
}


/*ABOUT-US*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .about-section {
    padding: 35px 0;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .about-images img {

    height: 180px;
  }

  .experience-badge {
    top: 150px;
    left: 180px;
    font-size: 16px;
    padding: 15px 10px;
  }

  .about-content {
    padding-left: 30px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-subtitle {
    font-size: 36px;
  }

  .about-text {
    font-size: 16px;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .about-section {
    padding: 30px 0;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
  }

  .about-images img {
    height: 160px;
  }

  .experience-badge {
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-content {
    padding-left: 20px;
  }

  .about-title {
    font-size: 20px;
  }

  .about-subtitle {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
  }

  .navbar-nav {
    gap: 10px;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .about-section {
    padding: 25px 0;
  }

  .about-images {
    gap: 5px;
  }

  .about-images img {

    height: 150px;
  }

  .experience-badge {
    top: 130px;
    font-size: 14px;
    padding: 10px 8px;
  }

  .about-content {
    padding-left: 15px;
  }

  .about-title {
    font-size: 18px;
  }

  .about-subtitle {
    font-size: 28px;
  }

  .about-text {
    font-size: 16px;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .about-section {
    padding: 20px 0;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .about-images img {

    height: 140px;
  }

  .experience-badge {

    font-size: 12px;
    padding: 8px 6px;
  }

  .about-content {
    padding-left: 10px;
    margin-top: 20px;
  }

  .about-title {
    font-size: 16px;
  }

  .about-subtitle {
    font-size: 24px;
  }

  .about-text {
    font-size: 16px;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .about-section {
    padding: 20px 0;
  }

  .about-images img {
    height: 120px;
  }

  .experience-badge {
    top: 105px;
    font-size: 10px;
    padding: 6px 4px;
  }

  .about-content {
    padding-left: 15px;

  }

  .about-title {
    font-size: 14px;
  }

  .about-subtitle {
    font-size: 24px;
  }

  .about-text {
    font-size: 16px;
  }
}

/*ABOUT-PARALLAX*/

/* 1200px - Large Screens */
@media (max-width: 1200px) {

  .about-parallax-section .about-content h2 {
    font-size: 30px;
  }

  .about-parallax-section .about-content p {
    font-size: 16px;
  }
}

/* 992px - Tablets */
@media (max-width: 992px) {

  .about-parallax-section .about-content {
    max-width: 700px;
    padding: 15px;
  }

  .about-parallax-section .about-content h2 {
    font-size: 28px;
  }

  .about-parallax-section .about-content p {
    font-size: 16px;
  }
}

/* 768px - Small Tablets */
@media (max-width: 768px) {

  .about-parallax-section .about-content {
    max-width: 600px;
    padding: 10px;
  }

  .about-parallax-section .about-content h2 {
    font-size: 26px;
  }

  .about-parallax-section .about-content p {
    font-size: 16px;
  }
}

/* 576px - Mobile Devices */
@media (max-width: 576px) {
  .about-parallax-section {
    padding: 20px;
  }

  .about-parallax-section .about-content {
    max-width: 500px;
    padding: 10px;
  }

  .about-parallax-section .about-content h2 {
    font-size: 24px;
  }

  .about-parallax-section .about-content p {
    font-size: 16px;
  }
}

/* 480px - Small Mobile */
@media (max-width: 480px) {
  .about-parallax-section {
    height: 550px;
    padding: 15px;
  }

  .about-parallax-section .about-content {
    max-width: 400px;
    padding: 8px;
  }

  .about-parallax-section .about-content h2 {
    font-size: 22px;
  }

  .about-parallax-section .about-content p {
    font-size: 16px;
  }
}

/*MISSION-VISION*/

/* 1200px - Large Screens */
@media (max-width: 1200px) {
  /* .mission-vision-section .card {
    height: 350px;
  } */

  .mission-vision-section .card img {
    width: 75px;
  }

  .mission-vision-section .card h3 {
    font-size: 22px;
  }

  .mission-vision-section .card p {
    font-size: 16px;
    color: #000000;
  }
}

/* 992px - Tablets */
@media (max-width: 992px) {
  /* .mission-vision-section .card {
    height: 330px;
  } */

  .mission-vision-section .card img {
    width: 70px;
  }

  .mission-vision-section .card h3 {
    font-size: 22px;
  }

  .mission-vision-section .card p {
    font-size: 16px;
  }
}

/* 768px - Small Tablets */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 30px 0;
  }

  /* .mission-vision-section .card {
    height: 310px;
  } */

  .mission-vision-section .card img {
    width: 65px;
  }

  .mission-vision-section .card h3 {
    font-size: 21px;
  }

  .mission-vision-section .card p {
    font-size: 15px;
  }
}

/* 576px - Mobile Devices */
@media (max-width: 576px) {
  .mission-vision-section {
    padding: 20px 0;
  }

  .mission-vision-section .card {
    /* height: 290px; */
    padding: 15px;
  }

  .mission-vision-section .card img {
    width: 60px;
  }

  .mission-vision-section .card h3 {
    font-size: 21px;
  }

  .mission-vision-section .card p {
    font-size: 16px;
  }

  .mission-vision-section .mission {
    margin-bottom: 10px;
  }
}

/* 480px - Small Mobile */




@media (max-width: 480px) {
  .mission-vision-section {
    padding: 20px 0;
  }

  .navbar-brand img {
    width: 100px !important;
  }

  .mission-vision-section .card {
    /* height: 388px; */
    padding: 10px;
  }

  .mission-vision-section .card img {
    width: 55px;
  }

  .mission-vision-section .card h3 {
    font-size: 21px;
  }

  .mission-vision-section .card p {
    font-size: 15px;
  }
}

/*2.SERVICES*/

/*SERVICES*/

/*SERVICES*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .services-section {
    padding: 35px 0;
  }

  .services-title h2 {
    font-size: 36px;
  }

  .service-card img {
    height: auto;
  }

  .service-card-body {
    padding: 15px;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .services-section {
    padding: 30px 0;
  }

  .services-title h2 {
    font-size: 32px;
  }

  .services-title p {
    font-size: 0.95rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .services-section {
    padding: 25px 0;
  }

  .services-title {
    margin-bottom: 30px;
  }

  .services-title h2 {
    font-size: 28px;
  }

  .services-title p {
    font-size: 0.9rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card-body {
    padding: 10px;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .services-section {
    padding: 20px 0;
  }

  .services-title h2 {
    font-size: 24px;
  }

  .services-title p {
    font-size: 0.85rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .services-section {
    padding: 15px 0;
  }

  .services-title {
    margin-bottom: 20px;
  }

  .services-title h2 {
    font-size: 20px;
  }

  .services-title p {
    font-size: 14px;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
  }
}

/*FOOTER*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .footer {
    padding: 30px 0;
  }

  .footer .social-icons i {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 16px;
  }

  .company {
    padding-left: 30px;
  }

  .copyrights {
    padding-right: 30px;
  }

  .disclaimer {
    flex-direction: row;
    justify-content: center;

    font-size: 14px;
  }

  .footer .icon {
    font-size: 22px;
  }

  .footer .address {
    margin-bottom: 8px;
  }

  .address {
    justify-content: center;
  }

  .address .col-md-4 {
    min-width: 280px;
  }

  .address .icon {
    font-size: 12px;
  }

  .footer .logo {
    width: 150px;
  }


}

/* Up to 992px */
@media (max-width: 992px) {
  .footer {
    padding: 25px 0;
  }

  .footer .social-icons i {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }

  .company,
  .copyrights,
  .social-icons {
    padding: 10px 0;
    text-align: center;
  }

  .company {
    padding-left: 0;
  }

  .copyrights {
    padding-right: 0;
    margin: 0;
  }

  .social-icons {
    padding-left: 0;
  }

  .footer a {
    order: 3;
    /* margin-left: 15px; */
  }

  .footer:nth-child(even) .company {
    order: 2;
    padding-left: 20px;
  }

  .footer:nth-child(odd) .company {
    padding-right: 20px;
  }

  .disclaimer {
    flex-direction: row;
    justify-content: center;
    margin-right: 0;
    font-size: 14px;
    margin-top: 8px;
  }

  .footer .icon {
    font-size: 20px;
  }

  .footer .address {
    margin-bottom: 6px;
  }

  .address {
    justify-content: center;
    text-align: center;
  }

  .address .col-md-4 {
    flex-direction: row !important;
    flex: 1 1 100%;
    justify-content: flex-start !important;
    text-align: start;
    margin-bottom: 10px;
  }

  .address .icon {
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .footer .logo {
    width: 130px;
  }

}

/* Up to 768px */
@media (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }

  .footer .social-icons i {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }

  .company,
  .copyrights {
    padding: 5px;
    text-align: center;
  }

  .footer a {
    /* margin-left: 15px; */
  }

  .disclaimer {
    flex-direction: row;
    justify-content: center;
    margin-right: 0px;
    font-size: 13px;
  }

  .footer .icon {
    font-size: 18px;
  }

  .footer .address {
    margin-bottom: 5px;
  }

  .address {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .address .col-md-4 {
    flex: 1 1 100%;
    justify-content: flex-start !important;
    text-align: center;
  }

  .address .icon {
    font-size: 12px;
  }

  .footer .logo {
    width: 120px;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .footer {
    padding: 15px 0;
  }

  .footer .social-icons i {
    font-size: 14px;
    margin-right: 6px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }

  .company,
  .copyrights,
  .social-icons {
    padding: 5px 0;
  }

  .footer a {
    /* margin-left: 10px; */
  }

  .disclaimer {
    flex-direction: column;
    text-align: center;
    margin-right: 0;
    font-size: 12px;
  }

  .footer .icon {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer .address {
    margin-bottom: 4px;
  }

  .address .icon {
    font-size: 12px;
    margin-right: 6px;
  }

  .address p,
  .address a {
    font-size: 14px;
  }

  .footer .logo {
    width: 100px;
  }

  .footer .footer-links {
    text-align: center;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .footer {
    padding: 10px 0;
    text-align: center;
  }

  .footer .social-icons i {
    font-size: 14px;
    margin-right: 5px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }

  .company,
  .copyrights,
  .social-icons {
    padding: 5px 0;
    text-align: center;
  }

  .company {
    padding-left: 0;
  }

  .copyrights {
    padding-right: 0;
    padding-bottom: 0;
  }

  .social-icons {
    padding-left: 0;
  }

  .footer a {
    /* margin-left: 10px; */
  }

  .disclaimer {
    flex-direction: column;
    text-align: center;
    margin-right: 0;
    font-size: 12px;
  }

  .footer .icon {
    font-size: 14px;
    margin-right: 6px;
  }

  .footer .address {
    margin-bottom: 3px;
  }

  .address {
    padding: 10px;
  }

  .address .icon {
    font-size: 12px;
    margin-right: 5px;
  }

  .address p,
  .address a {
    font-size: 14px;
  }

  .footer .logo {
    width: 90px;
  }
}
#btn-back-to-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: none;
  z-index: 9999;
}
.whatsapp-btn i {
  position: fixed;
  bottom: 145px;
  right: 0;
  cursor: pointer;
  /* display: none; */
  z-index: 10;
  /* background: var(--main-color); */
  background: #25d366;
  color: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 25px;
  border-radius: 50%;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-right: 28px;
  -webkit-box-shadow: 0px 0px 14px 0px #25d366;
  box-shadow: 0px 0px 14px 0px #25d366;
}