html,
body {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.bg-light {
  background-color: white !important;
}

header {
  display: flex;
}

nav {
  width: 100%;
}

nav .navbar {
  padding: 2rem;
}

.nav-logo-print {
  display: none !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 10px !important;
}

@media print {
  .nav-logo-print {
    display: block !important;
  }
  .socials {
    display: none !important;
  }
  .copyright {
    display: none !important;
  }
  .grid-footer {
    grid-template-columns: 30% 30% 30% !important;
  }
  .grid-footer .grid-img {
    border: 0px !important;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    justify-content: start;
  }
  .navbar .container img {
    margin-left: 1rem;
  }

  .grid-home img {
    width: 100%;
    margin-top: 10px;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-family: Montserrat, sans-serif;
  font-weight: 550;
  text-transform: uppercase;
  font-style: normal;
}

.nav-link:active {
  color: #3ea2fc;
}

ul {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  margin-right: 3rem;
}

.navbar-collapse ul li {
  margin-right: 1rem;
}

h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 2.4rem;
  font-weight: 550;
  font-style: normal;
  line-height: 60px;
  color: #29415e;
  text-align: center;
  margin: 1.5rem 0rem 0rem 0rem;
}

.line-text {
  color: #949292;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: normal;
  line-height: 29px;
  letter-spacing: 0.1px;
  text-align: center;
  margin: 1rem 0rem 2rem 0rem;
}

/* BANNER */

.banner {
  background-color: #f8fbff;
  padding: 2rem 0rem 2rem 0rem;
  margin-bottom: 2rem;
}

.banner .text-banner {
  display: flex;
  justify-content: center;
}

.banner a {
  text-decoration: none;
  color: #29415e;
}

/* FOOTER */

footer {
  color: white;
}

.grid-footer {
  display: grid;
  grid-template-columns: 35% 35% 25%;
  background-color: #3e95fb;
  padding: 2rem;
}

.grid-footer p {
  margin-bottom: 0.2rem;
}

.grid-footer .grid-img {
  display: grid;
  grid-template-columns: 35% 65%;
}

.grid-footer .grid-img:not(:last-child) {
  border-right: 1px solid white;
}

.grid-footer .grid-img .icon {
  display: flex;
  justify-content: flex-end;
  height: 2.5rem;
  margin-top: 1.2rem;
}

.grid-footer .grid-img .text {
  margin-left: 2rem;
}

.email {
  padding-top: 1rem;
}

.socials {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.socials a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin: 0px 0.5rem 1.2rem 0.5rem;
}

.socials i {
  font-size: 1.7rem;
  text-align: center;
  padding: 0rem;
  cursor: pointer;
  display: block;
  margin: 0.22rem auto;
  color: white;
}

.copyright p {
  font-style: normal;
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.6;
  font-family: Poppins, sans-serif;
  letter-spacing: 0px;
  text-align: left;
  color: #949292;
  padding-left: 10rem;
  margin: 0rem 0rem 2rem 0rem;
}
.copyright span {
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .copyright p {
    padding-left: 1rem;
  }
}

@media (max-width: 1200px) {
  .grid-footer {
    grid-template-columns: 35% 30% 25%;
  }
}

@media (max-width: 1100px) {
  .grid-footer {
    grid-template-columns: 100%;
  }

  .grid-footer .grid-img:not(:last-child) {
    border-right: 0px solid white;
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
  }

  .grid-footer .grid-img:not(:first-child):not(:last-child) {
    padding-top: 1rem;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.8;
  animation: pulse-green 2s infinite ease-out;
  z-index: -1;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
}

.whatsapp-float i {
  margin-top: 0;
}
