/** ===== GOOGLE FONTS ===== **/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/** ===== VARIABLES CSS ===== **/
:root {
  --header-height: 4rem;

  /** ========== Colors ========== **/
  --first-color: #2adabc;
  --first-color-alt: #24bba2;
  --first-color-send: #2adabc;
  --title-color: #161212;
  --text-color: #5b5757;
  --text-color-light: #8f8a8a;
  --body-color: #fefbfb;
  --container-color: #fff;

  /** ========== Font and typography ========== **/  
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /** ========== Font weight ========== **/
  --font-semi-bold: 600;
  --font-bold: 700;

  /** ========== Margenes ========== **/
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  
  /** ========== Z INDEX ========== **/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

/** ========== BASE ========== **/
* {
	box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/** ========== Variables Dark theme ========== **/
body.dark-theme {
  --first-color-send: #161212;
  --title-color: #f3f1f1;
  --text-color: #d1c7c8;
  --body-color: #251d1e;
  --container-color: #302728;
}

/** ========== Button Dark/Light ========== **/
.change-theme {
  position: absolute;
  right: 1.5rem;
  top: 2.2rem;
  display: flex;
  color: var(--title-color);
  font-size: 2rem;
  cursor: pointer;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

/** ========== NEW HEADER ========== **/
*{
  margin: 0;
  padding: 0;
}

.xl-header{
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

span {
  color: var(--first-color);
}

.safety span {
  color: #ffd334;
  text-decoration: underline;
  text-transform: uppercase;
}


#showcase{
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 80vh;
  justify-content: center;
  text-align: center;
}

#showcase h1{
  color: #fff;
  font-size: 50px;
  line-height: 1.2;
}

#showcase p{
  color: #fff;
  font-size: 20px;
}

#showcase .button1{
  border-radius: 10px;
  border: #fff 1px solid;
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  padding: 10px 20px; 
  text-decoration: none;
}

#showcase .button1:hover{
  background: #926239;
  color: #fff;
}

/** ========== NEW HEADER END ========== **/
h1,
h2,
h3,
ul,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/** ========== CLASS CSS ========== **/
.section {
  padding: 4rem 0 2rem;
}

.section-title,
.section-title-center {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-3);
}

/** ========== LAYOUT ========== **/
.l-main {
  overflow: hidden;
}

.bd-container {
  max-width: 968px;
  width: calc(100% - 3rem);
  margin-left: var(--mb-3);
  margin-right: var(--mb-3);
  
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

/** ========== NAV ========== **/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    padding: 2.5rem 0 0;
    text-align: center;
    background-color: var(--body-color);
    transition: 0.4s;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    z-index: var(--z-fixed);
  }
}

.nav__item {
  margin-bottom: var(--mb-3);
}

.nav__link,
.nav__logo,
.nav__toggle {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__link {
  transition: 0.3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: calc(var(--header-height) + 1rem);
}

/* Active menu link */
.active-link {
  position: relative;
}

.active-link::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  border-radius: 50%;
}

.wapp-ico {
  border-radius: 5px;
  background-color: #2adabc !important;
  color: #fff !important;
  border: 1px solid #2adabc !important;
  letter-spacing: 0.1px;
  font-size: 15px;
  padding: 5px;
}

.wapp-ico:hover {
  background-color: #fff !important;
  color: #2adabc !important;
}


.wapp-ico span{
  color: #fff !important;
  letter-spacing: 0.1px;
  font-size: 15px;
  padding: 5px;
  border-radius: 5px;
}

.wapp-ico span:hover{
  color: #2adabc !important;
  background-color: #fff !important;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  background: rgba(35, 205, 175, 0.5);
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  visibility: hidden;
}

.scrolltop:hover {
  background-color: var(--first-color);
}

.scrolltop__icon {
  font-size: 1.5rem;
  color: var(--body-color);
}

.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/** ========== HOME ========== **/
.home__container {
  row-gap: 0.5rem;
}

.home__img {
  width: 280px;
  justify-self: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-2);
}

.home__description {
  margin-bottom: var(--mb-3);
}

/** ========== BUTTONS ========== **/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: 0.3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button-link {
  background: none;
  padding: 0;
  color: var(--first-color);
}

.button-link:hover {
  background-color: transparent;
  color: var(--first-color-alt);
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/** ========== SHARE ========== **/
.share__data {
  text-align: center;
}

.share__description {
  margin-bottom: var(--mb-2);
}

.share__img {
  width: 280px;
  justify-self: center;
}

/**========== SERVICE ========== **/
.service__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service__data {
  text-align: center;
  padding: 1rem 1rem 2rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  border-radius: 1rem;
}

.service__data:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}

.service__img {
  width: 180px;
}

.service__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

/** ========== PARTNER ========== **/
.partner__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.partner__data {
  text-align: center;
  padding: 1rem 1rem 2rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  border-radius: 1rem;
}

.partner__data:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}

.partner__img {
  width: 180px;
}

.partner__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}


/** ========== PROCURE ========== **/
.procure__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.procure__data {
  text-align: center;
  padding: 1rem 1rem 2rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  border-radius: 1rem;
}

.procure__data:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}

.procure__img {
  width: 180px;
}

.procure__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}


/** ========== ACCESSORIES ========== **/
.accessory__container {
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 2rem;
}

.accessory__content {
  position: relative;
  display: grid;
  padding: 0.25rem 0.75rem 0.75rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  border-radius: 1rem;
}

.accessory__content:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}

.accessory__img {
  width: 110px;
  justify-self: center;
  margin-bottom: 0.25rem;
}

.accessory__title,
.accessory__category {
  text-align: center;
}

.accessory__title {
  font-size: var(--normal-font-size);
}

.accessory__category {
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color-light);
}

.accessory__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.accessory__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  font-size: 1.25rem;
  padding: 0.5rem 0.625rem;
  border-radius: 1rem 0 1rem 0;
}

/** ========== CONTACT US ========== **/
.send {
  background-color: var(--first-color-send);
}

.send__title,
.send__description {
  color: #ffffff;
}

.send__description {
  text-align: center;
  margin-bottom: var(--mb-4);
}

.send__direction {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.send__input {
  width: 100%;
  outline: none;
  border: none;
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
}

.send__input::placeholder {
  font-family: var(--body-font);
}

.send__img {
  width: 280px;
  justify-self: center;
}

#status {
  margin-top: 1rem;
  justify-content: space-between;
  padding: 0.5rem;
  border-radius: 0.5rem;
  text-align: center;  
}

#status.success {
  background-color: rgb(211, 250, 153);
  animation: status 4s ease forwards;
}

#status.error {
  background-color: rgb(250, 129, 92);
  color: #fff;
  animation: status 4s ease forwards;
}

@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }

  90% {
    opacity: 1;
    pointer-events: all;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

/** ========== CONTACT US BUTTON ========== **/
section
  .send__container
  .send__content
  form
  .send__button
  input[type="submit"] {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 700;
  position: relative;
  cursor: pointer;
  background: #ffffff;
  color: #2adabc;
  display: flex;
  letter-spacing: 0.5px;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  text-align: center;
}

section
  .send__container
  .send__content
  form
  .send__button
  input[type="submit"]:hover {
  background-color: var(--first-color-alt);
  color: #fff;
}

/** ========== GOOGLE MAP ========== **/
#location {
  padding: 5rem 1rem 0 0;
}

.google-map {
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 300px;
  background-color: #eee;
  transition: 5000ms;
  cursor: grab;
}

.google-map .map-frame {
  width: 100%;
  height: 50rem;
  background-color: #f8f9fa;
}

.google-map iframe {
  position: relative;
  width: 100%;
  height: 50rem;
  pointer-events: visibleStroke;
}

/* ------------------ */
/** Interactive Effect **/
/* ------------------ */

.google-map:hover {
  width: 100%;
  height: 50rem;
  border-radius: 0;
}


/* .google-map {
  text-align: center;
}

iframe {
  width: 980px;
  height: 700px;
  border: none;
  border-radius: 1.5rem;
} */

/** ========== CLIENTS LOGO SLIDER ========== **/
.client__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.client__data {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  border-radius: 1rem;
}

.client__data:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}

.client__img {
  width: 180px;
}

.client__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

/** ========== FOOTER ========== **/
hr {
  height: 30px; 
  border-style: solid; 
  border-color: #2adabc; 
  border-width: 1px 0 0 0; 
  border-radius: 20px; 
}

hr::before {
  display: block; 
  content: ""; 
  height: 30px; 
  margin-top: -31px; 
  border-style: solid; 
  border-color: #2adabc; 
  border-width: 0 0 1px 0; 
  border-radius: 20px; 
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__logo {
  color: var(--title-color);
}

.footer__title {
  margin-bottom: var(--mb-2);
}

.footer__title a:hover {
  color: var(--first-color);
}

.footer__logo,
.footer__title {
  font-size: var(--h3-font-size);
}

.footer__link {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--first-color);
}

/** ========== FOOTER SOCIAL ========== **/
.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-3);
}

.footer__social:hover {
  color: var(--first-color);
}

/** ========== FOOTER CONTACT ========== **/
.footer__content .info {
  position: relative;
}

.footer__content .info li {
  display: flex;
}

.footer__content .info li span:nth-child(1) {
  color: var(--first-color);
  font-size: var(--h3-font-size);
  margin-right: var(--mb-2);
}

.footer__content .info li span {
  color: var(--text-color);
}

.footer__content .info li a {
  color: var(--text-color);
  text-decoration: none;
}

.footer__content .info li a:hover {
  color: var(--first-color);
}

/** ========== FOOTER COPYRIGHT ========== **/
.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 4rem;
}

.footer__copy a {
  text-decoration: none;
  color: var(--text-color);
}

.footer__copy a:hover {
  color: var(--first-color);
  font-weight: 500;
}

/** ========== MEDIA QUERIES ========== **/
/* For full-screen images on small screens */
@media screen and (max-width: 359px) {
  .home__img,
  .share__img,
  .send__img {
    width: 100%;
  }
}

@media screen and (min-width: 576px) {
  .home__container,
  .share__container,
  .send__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__container {
    padding: 5rem 0 0;
  }

  .home__img {
    order: 1;
  }

  .section-title-center,
  .share__data,
  .send__description {
    text-align: initial;
  }

  .home__img,
  .share__img,
  .send__img {
    width: 100%;
  }

  .share__img {
    order: -1;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 7rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__list {
    display: flex;
    align-items: center;
  }

  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }

  .nav__toggle {
    display: none;
  }

  .change-theme {
    position: initial;
    margin-left: var(--mb-4);
  }

  .home__container {
    padding: 7rem 2rem 0;
  }

  .share__container {
    padding: 0 2rem;
  }

  .accessory__container {
    grid-template-columns: repeat(3, 224px);
    justify-content: center;
  }

  .accessory__content {
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .accessory__img {
    width: 120px;
    margin-bottom: var(--mb-1);
  }

  .accessory__title,
  .accessory__category {
    text-align: initial;
  }

  .accessory__button {
    padding: 0.75rem;
  }

  .send {
    background: none;
  }

  .send__container {
    background-color: var(--first-color-send);
    padding: 2rem;
    border-radius: 1.5rem;
  }
}

@media screen and (min-width: 968px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img,
  .share__img,
  .send__img {
    width: 469px;
  }

  .home__container,
  .share__container,
  .send__container {
    column-gap: 5rem;
  }
}

/** Welcome Section for Electrical Equipment **/
.welcome-header{
  color: var(--container-color);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

#welcome{
  align-items: center;
  background-image: url('../img/electrical.png');
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 50vh;
  justify-content: center;
  text-align: center;
}

#welcome h1{
  color: var(--container-color);
  margin-top: 350px;
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
}

#welcome p{
  color: #fff;
  font-size: 20px;
}

#welcome .button1{
  border-radius: 10px;
  border: #fff 1px solid;
  color: var(--container-color);
  font-size: 18px;
  margin: 50px;
  margin-top: 5rem;
  padding: 10px 20px; 
  text-decoration: none;
}

#welcome .button1:hover{
  background: #fff;
  color: rgb(32, 32, 32);
}


/** Welcome Section for Maintenance Consumables & Supplies **/
.welcome-header-maint{
  color: var(--container-color);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

#welcome-maint{
  align-items: center;
  background-image: url('../img/coming-soon.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 1000px 500px;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 50vh;
  justify-content: center;
  text-align: center;
}

#welcome-maint h1{
  color: var(--container-color);
  margin-top: 350px;
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
}

#welcome-maint p{
  color: var(--container-color);
  font-size: 20px;
}

#welcome-maint .button1{
  border-radius: 10px;
  border: #fff 1px solid;
  color: var(--container-color);
  font-size: 18px;
  margin: 50px;
  margin-top: 5rem;
  padding: 10px 20px; 
  text-decoration: none;
}

#welcome-maint .button1:hover{
  background: #fff;
  color: rgb(32, 32, 32);
}


/** Welcome Section for Fire Protection Equipment **/
.welcome-header-fire{
  color: var(--container-color);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

#welcome-fire{
  align-items: center;
  background-image: url('../img/bg/bg4-1.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 50vh;
  justify-content: center;
  text-align: center;
}

#welcome-fire h1{
  color: #fff;
  margin-top: 350px;
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
}

#welcome-fire p{
  color: var(--container-color);
  font-size: 20px;
}

#welcome-fire .button1{
  border-radius: 10px;
  border: #fff 1px solid;
  color: var(--container-color);
  font-size: 18px;
  margin: 50px;
  margin-top: 5rem;
  padding: 10px 20px; 
  text-decoration: none;
}

#welcome-fire .button1:hover{
  background: #fff;
  color: rgb(32, 32, 32);
}



/** Welcome Section for Flowlines & Valves Supply **/
.welcome-header-flowines{
  color: var(--container-color);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

#welcome-flowines{
  align-items: center;
  background-image: url('../img/bg/flowlines.webp');
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 50vh;
  justify-content: center;
  text-align: center;
}

#welcome-flowines h1{
  color: #fff;
  margin-top: 350px;
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
}

#welcome-flowines p{
  color: var(--container-color);
  font-size: 20px;
}

#welcome-flowines .button1{
  border-radius: 10px;
  border: #fff 1px solid;
  color: var(--container-color);
  font-size: 18px;
  margin: 50px;
  margin-top: 5rem;
  padding: 10px 20px; 
  text-decoration: none;
}

#welcome-flowines .button1:hover{
  background: #fff;
  color: rgb(32, 32, 32);
}


/** Welcome Section for IT Equipment **/
.welcome-header-it{
  color: var(--container-color);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

#welcome-it{
  align-items: center;
  background-image: url('../img/it.webp');
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 50vh;
  justify-content: center;
  text-align: center;
}

#welcome-it h1{
  color: var(--container-color);
  margin-top: 350px;
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
}

#welcome-it p{
  color: var(--container-color);
  font-size: 20px;
}

#welcome-it .button1{
  border-radius: 10px;
  border: #fff 1px solid;
  color: var(--container-color);
  font-size: 18px;
  margin: 50px;
  margin-top: 5rem;
  padding: 10px 20px; 
  text-decoration: none;
}

#welcome-it .button1:hover{
  background: #fff;
  color: rgb(32, 32, 32);
}

/** Welcome Section for Office Equipment Supply **/
.welcome-header{
  color: var(--container-color);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

#welcome-office{
  align-items: center;
  background-image: url('../img/office.webp');
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 50vh;
  justify-content: center;
  text-align: center;
}

#welcome-office h1{
  color: #fff;
  margin-top: 350px;
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
}

#welcome-office p{
  color: #fff;
  font-size: 20px;
}

#welcome-office .button1{
  border-radius: 10px;
  border: #fff 1px solid;
  color: var(--container-color);
  font-size: 18px;
  margin: 50px;
  margin-top: 5rem;
  padding: 10px 20px; 
  text-decoration: none;
}

#welcome-office .button1:hover{
  background: #fff;
  color: rgb(32, 32, 32);
}



/**========== Services Image slider ==========**/
.mySlides {
  display: none;
}

/* Slideshow container */
.slideshow-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.slideshow-container .mySlides img{
  width: 100vw; 
  height: 50vh;
}

.slideshow-container .mySlides .text h3 {
  color: #fff;
  font-weight: var(--font-semi-bold);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 5rem;
  width: 100%;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.active {
  background-color: #717171;
}

/**========== THE DOTS/BULLETS/INDICATORS ==========**/
.center {
  text-align: center;
  padding-top: 50px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #2adabc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #15ac93;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


/* Service Buttons */

#buttonss {
  width: 270px;
  height: 55px;
  margin-right: 15px;
}

















.list-bordered {
  list-style-type: none;
}

.list-bordered li {
  font-size: 16px;
  line-height: 1.4;
  color: #262627;
  padding: 15px 0 15px 30px;
  padding-top: 15px;
  border-bottom: 2px solid #f4f5f8;
  padding-left: 30px;
  position: relative;
}

.list-bordered li:first-child {
  padding-top: 0;
}

.list-bordered li i.fa-solid{
  color: #FFCC1C;
  font-size: 24px;
  font-weight: bold;
}

.list-bordered li .fa-solid {
  margin-right: 10px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-solid fa-angles-right::before {
  content: "\f192";
}

.list-bordered li a {
  color: var(--text-color);
  text-decoration: none;
}

.list-bordered li a:hover {
  color: var(--first-color-alt);
  text-decoration: none;
}









