<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ====== Colors ====== */
:root {
  --primary-color: #2e86c1;
  --secondary-color: #f39c12;
  --dark: #000000;
  --white: #ffffff;
  --grey: #606870;
  --bg-color: #e6e6e6;
}

/* ====== Font ====== */
* {
  font-family: "Poppins", sans-serif;
}

a {
  color: var(--primary-color);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

a:hover {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: #2e86c1;
  border-radius: 10px;
  border: 3px solid #f39c12;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #2e86c1 #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1a5276;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: #2e86c1;
  border-radius: 10px;
  border: 3px solid #f39c12;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #2e86c1 #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1a5276;
}

/*  header-section-start  */
/*==== menu bar ====*/
.header-section {
  position: relative;
  z-index: 9999999;
}

.header-section .menu-bar {
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.096);
}

.header-section .is-sticky-menu {
  position: fixed;
  top: -1px;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.5s ease-in;
  background-color: var(--white);
}

.header-section .navbar-brand img {
  width: 70px;
  height: auto;
}

.header-section .menu-bar .nav-link {
  margin: 0px 5px;
  text-transform: capitalize;
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

.header-section .nav-link::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  background-color: var(--dark);
  transition: 0.2s;
  bottom: 0;
  left: 50%;
  right: 0;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-section .navbar-toggler {
  background-color: var(--primary-color);
  color: var(--white);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  border: 1px solid white;
}

.header-section .offcanvas-header {
  background-color: var(--primary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 16px;
  padding: 3px 8px;
}

.header-section .nav-link:hover:after {
  width: 100%;
  transition: 0.5s;
  left: 0;
}

.header-section .nav-link:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

.header-section .conatact-btn {
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
}

.header-section .conatact-btn:hover {
  background-color: var(--secondary-color);
  transition: ease-in-out 0.5s;
}

.header-section .offcanvas-header .btn-close {
  color: var(--primary-color);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 16px;
  padding: 6px 8px;
  background-color: var(--white);
}

/* header-section-end */

/* hero-section-start */

.hero-section .slide {
  padding: 90px 0px;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-section .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000d3;
  z-index: -1;
}

.hero-section .slide .background-image {
  width: 100%;
}

.hero-section .slide .content {
  margin: 0px 300px 0px 100px;
  padding-top: 30px;
}

.hero-section .content h2 {
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
}

.hero-section .content p {
  font-size: 16px;
  color: var(--white);
  margin-top: 20px;
}

.hero-section .slide .content .contact-links {
  margin: 40px 0px 0px 0px;
}

.hero-section .content .btn-1 {
  background-color: var(--white);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: ease-in-out 0.3s;
}

.hero-section .content .btn-1:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: ease-in-out 0.3s;
}

.hero-section .content .btn-2 {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  transition: ease-in-out 0.3s;
}

.slide {
  position: relative;
}

.hero-section .owl-carousel .owl-nav button.owl-next {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 24px;
  color: var(--white);
  position: absolute;
  right: 25px;
  top: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .owl-carousel .owl-nav button.owl-next i {
  padding-left: 3px;
}

.hero-section .owl-carousel .owl-nav button.owl-prev i {
  padding-right: 3px;
}

.hero-section .owl-carousel .owl-nav button.owl-prev {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 24px;
  color: var(--white);
  position: absolute;
  left: 25px;
  top: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .owl-dots {
  position: absolute;
  margin: auto;
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, -50%);
}

.hero-section .owl-carousel button.owl-dot {
  color: inherit;
  height: 15px;
  width: 15px;
  border: 1px;
  background-color: #f7f5f5;
  border-radius: 50%;
  margin: 2px;
  font-size: 50px;
  line-height: 0;
  color: var(--white);
}

.hero-section .owl-carousel button.owl-dot.active {
  background-color: var(--primary-color);
  height: 15px;
  width: 40px;
  border-radius: 10px;
  transition: 0.2s;
}

/* hero-section-end */

/* about-section-start */

.about-section {
  padding: 90px 0px;
  background-color: var(--white);
}

.about-section .section-title span {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

.about-section .section-title h2 {
  font-size: 30px;
  color: var(--dark);
  font-weight: 600;
  margin-top: 10px;
}

.about-section .about-item {
  margin-bottom: 25px;
}

.about-section .about-image {
  position: relative;
}

.about-section .about-image .Teacher-image {
  position: absolute;
  height: 200px;
  width: 200px;
  bottom: -33px;
  right: 0;
  object-fit: contain;
}

.about-section .about-item .about-inner-img {
  margin: 20px 0px;
  display: flex;
  width: 100%;
}

.about-section .about-main {
  display: flex;
}

.about-section .about-item .learn-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: ease-in-out 0.3s;
}

.about-section .about-item .learn-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: ease-in-out 0.3s;
}

.about-section .about-item p {
  color: var(--dark);
}

.about-section .about-item span {
  font-weight: 700;
  color: var(--dark);
}

.about-section .about-btn {
  margin-top: 35px;
}

/* about-section-end */

/* working-Section-start */

.Working-Fields {
  padding: 90px 0px;
  background-color: var(--bg-color);
}

.Working-Fields .section-title {
  text-align: center;
  margin: 0px 200px 45px 200px;
}

.Working-Fields .section-title h2 {
  font-size: 30px;
  color: var(--dark);
  font-weight: 600;
}

.Working-Fields .working-item {
  margin-bottom: 25px;
}

.Working-Fields .working-item .working-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.Working-Fields .working-item .working-content {
  padding-top: 15px;
}

.Working-Fields .working-item .working-content h2 {
  font-size: 22px;
  color: var(--dark);
  font-weight: 500;
}

.Working-Fields .working-item a {
  text-decoration: none;
  color: var(--primary-color);
}

.Working-Fields .working-item i {
  font-size: 14px;
  padding-left: 5px;
}

/* working-Section-end */

/* service-section-start */
.service-section {
  padding: 90px 0px;
  background-color: var(--bg-color);
}

.service-section .section-title {
  margin: 0px 200px 45px 200px;
  text-align: center;
}

.service-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.service-section .section-title h2 {
  color: var(--dark);
  font-size: 30px;
  font-weight: 600;
}

.service-section .service-item {
  margin-bottom: 25px;
}

.service-section .service-item .service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-section .service-item .service-content {
  padding-top: 15px;
}

.service-section .service-item .service-content h2 {
  font-size: 22px;
  color: var(--dark);
  font-weight: 500;
}

.service-section .service-item a {
  text-decoration: none;
  color: var(--primary-color);
}

.service-section .service-item i {
  font-size: 14px;
  padding-left: 5px;
}

/* service-section-end */

/* our-partner-section-start */

.partner {
  padding: 90px 0px;
  background-color: var(--bg-color);
}

.partner .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.partner .section-title h2 {
  color: var(--dark);
  font-size: 30px;
  font-weight: 600;
}

.partner .partner-image {
  margin: 0px 10px 25px 10px;
  text-align: center;
}

.partner .partner-image img {
  display: flex;
  width: 100%;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.partner .partner-main {
  display: flex;
  justify-content: center;
}

/* our-partner-section-end */

/* our-success-section-start */

.succes-story {
  background: url(../images/happy-faces.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 45px 0px;
}

.succes-story::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #110b0be1;
  z-index: -1;
}

.succes-story .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.succes-story .section-title h2 {
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.succes-story .succee-inner .succes-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.succes-story .succee-inner img {
  height: 55px;
  width: 55px;
}

.succes-story .succee-inner {
  padding: 20px 0px;
  color: var(--white);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.137);
  margin-bottom: 25px;
}

.succes-story .succee-inner span {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
}

.succes-story .succee-inner p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
/* our-success-section-end*/

/* cta-section-start */

.cta-section {
  padding: 45px 0px;
  position: relative;
  background: url(../images/cta-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #110b0be5;
  z-index: -1;
}

.cta-section .cta-item .cta-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  margin-top: 30px;
  transition: ease-in-out 0.3s;
}

.cta-section .cta-item .cta-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: ease-in-out 0.3s;
}

.cta-section .cta-item h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 2em;
}

.cta-section .cta-item p {
  color: var(--white);
}

/* cta-section-end */

/* footer-section-start */

.footer {
  background-color: var(--white);
  padding-top: 90px;
  overflow: hidden;
}

.footer .footer-item img {
  width: 70px;
  height: auto;
}

.footer .footer-item {
  position: relative;
  margin-bottom: 15px;
}

.footer .footer-item h2 {
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0px;
  margin: 0;
}

.footer .footer-item .para {
  color: var(--dark);
  font-size: 14px;
  padding: 20px 0px;
  margin: 0;
}

.footer .footer-item .social-icon {
  display: flex;
  list-style: none;
}

.footer .footer-item .social-icon li {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid var(--dark);
  margin-right: 5px;
  text-align: center;
  font-size: 20px;
  line-height: 35px;
  transition: 1s;
}

.footer .footer-item .social-icon li:hover {
  background-color: var(--primary-color);
  transition: 0.5s;
}

.footer .footer-item .social-icon li:hover a {
  color: var(--white);
  transition: 0.5s;
}

.footer .footer-item .social-icon li a {
  color: var(--dark);
  text-decoration: none;
}

.footer .footer-item .about-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .about-list li {
  margin-bottom: 10px;
  font-size: 16px;
  transition: 1s;
}

.footer-item .about-list li:hover {
  transition: 1s;
  padding-left: 3px;
}

.footer .footer-item .about-list li a {
  color: var(--dark);
  text-decoration: none;
}

.footer .footer-item .about-list li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item .contact-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .contact-list li {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--dark);
  transition: 1s;
}

.footer .footer-item .contact-list li:hover {
  padding-left: 3px;
  transition: 1s;
}

.footer .footer-item .contact-list li a {
  color: var(--dark);
  text-decoration: none;
}

.footer .footer-item .contact-list li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item input {
  margin: 10px 0px;
  height: 50px;
  border: none;
  box-shadow: none;
  border-radius: 5px;
  border: 1px solid black;
}

.footer .footer-item .subscribe-btn {
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
  margin-right: 10px;
  border: none;
  width: 100%;
  margin-top: 10px;
  transition: ease-in-out 0.3s;
}

.footer .footer-item .subscribe-btn:hover {
  color: var(--white);
  background-color: var(--secondary-color);
  transition: ease-in-out 0.3s;
}

.footer .footer-main {
  border-top: 1px solid rgba(0, 0, 0, 0.322);
}

.footer .copy-right {
  margin-top: 10px;
}

.footer {
  position: relative;
}

.footer .copy-right p {
  color: var(--dark);
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.footer .top-button .top {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  color: white;
  right: 1em;
  bottom: 0;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  border-radius: 5px;
}

.footer .top-button .top {
  animation: bounce-in 2s ease infinite;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

/* footer-section-end */

/* breadcrumb-section-start */

.breadcrumb-section {
  padding: 50px 0px;
  position: relative;
  background: url(../images/breadcrumb.jpg) center center repeat no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  z-index: 1;
  align-items: center;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.836);
  z-index: -1;
}

.breadcrumb-section .breadcrumb-heading h2 {
  font-size: 50px;
  color: var(--white);
  font-weight: 600;
  z-index: 1;
}

.breadcrumb-section .breadcrumb {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.breadcrumb-section .breadcrumb li {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  z-index: 1;
  padding: 5px;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

.breadcrumb-section .breadcrumb-box {
  display: flex;
  padding: 10px 30px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* === breadcrumb-section-end === */

/* our-courses-section-start */

.courses-section {
  padding: 90px 0;
  background-color: var(--bg-color);
}

.courses-section .section-title {
  margin: 0px 230px 45px 230px;
  text-align: center;
}

.courses-section .section-title h2 {
  color: var(--dark);
  font-size: 30px;
  font-weight: 600;
}

.courses-section .course-category {
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 25px;
  background: url(../images/library-1.jpg);
  background-size: cover;
  position: relative;
  z-index: 1;
}

.courses-section .course-category::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    to right,
    rgb(0, 0, 0) 20%,
    rgba(1, 36, 56, 0.733)
  );
  z-index: -1;
  inset: 0;
  border-radius: 5px;
}

.courses-section .course-category h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.courses-section .course-category ul {
  list-style: none;
  padding: 0;
}

.courses-section .course-category ul li {
  font-size: 16px;
  color: rgba(241, 241, 241, 0.808);
}
.courses-section .course-category ul i {
  margin-right: 5px;
  color: rgba(9, 121, 173, 0.527);
  font-size: 12px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
}

.courses-section .session-info {
  text-align: center;
  margin-top: 20px;
}

.courses-section .session-info p {
  font-size: 18px;
  font-weight: bold;
  color: var(--dark);
}

/* our-courses-section-start */

/* testimonial-section-start */

.testimonial-section.home-page {
  background-color: var(--white);
}

.testimonial-section {
  padding: 90px 0px;
  background-color: var(--bg-color);
}

.testimonial-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.testimonial-section .section-title h2 {
  font-size: 30px;
  color: var(--dark);
  font-weight: 600;
  margin-top: 10px;
}

.testimonial-section .testimonial-item {
  background-color: var(--white);
  margin-bottom: 25px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.192);
}

.testimonial-section .slide-item {
  margin: 0px 15px;
}

.testimonial-section .testimonial-item img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 5px;
}

.testimonial-section .testimonial-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
}

.testimonial-section .testimonial-item i {
  font-size: 26px;
  color: var(--primary-color);
  margin: 0px 10px;
}

.testimonial-section .testimonial-item .testimonial-content h2 {
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

/* testimonial-section-end */

/* partner-section-start */

.partner-section {
  padding: 90px 0px;
}

.partner-section .section-title {
  margin: 0px 200px 45px 200px;
  text-align: center;
}

.partner-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.partner-section .section-title h2 {
  color: var(--dark);
  font-size: 30px;
  font-weight: 600;
}

.partner-section .partner-item {
  padding: 20px;
  margin-bottom: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  text-align: center;
}

/* partner-section-end */

/* contact-section-start */

.contact-section {
  padding: 90px 0px;
}

.contact-section .section-title {
  margin-bottom: 35px;
  text-align: center;
}

.contact-section .section-title h2 {
  font-size: 30px;
  color: var(--dark);
  font-weight: 600;
  margin: 20px 0px;
}

.contact-section .service-inner-item h2 {
  font-size: 20px;
  color: var(--white);
}

.contact-section .service-inner-item {
  margin-bottom: 20px;
  background-color: var(--dark);
  padding: 25px 10px;
  border-radius: 5px;
}

.contact-section .service-inner-item .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  text-align: center;
}

.contact-section .service-inner-item i {
  font-size: 24px;
  color: var(--dark);
  line-height: 50px;
}

.contact-section .service-inner-item a {
  color: var(--white);
  text-decoration: none;
}

.contact-section .contact-item {
  margin-bottom: 25px;
}

.contact-section .contact-item input {
  background-color: var(--white);
  border-radius: 5px;
  border: 0;
  margin-bottom: 20px;
  box-shadow: none;
  height: 50px;
  color: var(--dark);
}

.contact-section .contact-item select {
  background-color: var(--white);
  color: var(--dark);
  border-radius: 5px;
  border: 0;
  box-shadow: none;
  height: 50px;
}

.contact-section .contact-item textarea {
  background-color: var(--white);
  color: var(--dark);
  border-radius: 5px;
  border: 0;
  box-shadow: none;
}

.contact-section .contact-item p {
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}

.contact-section .contact-item ::placeholder {
  color: var(--dark);
}

.contact-section .contact-item .submit-btn {
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
  margin-right: 10px;
  border: none;
  width: 100%;
}

.contact-section .contact-item .submit-btn:hover {
  color: var(--dark);
  background-color: var(--white);
}

.contact-section .contact-form-item {
  background-color: var(--dark);
  padding: 32px 20px;
  border-radius: 5px;
}

/* contact-section-end */

.footer .contact-buttons .whatsapp-btn {
  background-color: #10c245;
  height: 40px;
  width: 40px;
  border: none;
  color: white;
  right: 0;
  bottom: 7.2em;
  position: fixed;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.footer .contact-buttons .whatsapp-btn a {
  color: var(--white);
  text-decoration: none;
}

.footer .contact-buttons .call-btn {
  background-color: #2e86c1;
  height: 40px;
  width: 40px;
  border: none;
  color: white;
  right: -1px;
  bottom: 10.2em;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.footer .contact-buttons .call-btn a {
  color: var(--white);
  text-decoration: none;
}
</pre></body></html>