* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  --accentColor: #030303;
  --secondAccent: #4845e7;
  --thirdAccent: #ae202e;
  --color: #fff;
  --almostWhite: #f7f6f6;
  --mainBackground: #f7f6f6;
  --sectionColor02: #161616;
  --sectionColor03: #d7c6e7;
  --fontA: "Montserrat", sans-serif;
  --fontB: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: var(--fontA);
  overflow-x: hidden;
}
/* 🪐GLOBAL CLASSES  STARTS🪐*/
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(77, 75, 75, 0.308);
  cursor: grab;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--thirdAccent);
  cursor: grab;
}

::-webkit-scrollbar-track {
  background-color: var(--sectionColor02);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.--height-img {
  height: 420px;
  border-radius: 5px;
  object-fit: cover;
  mask-image: linear-gradient(#2d3238 85%, transparent);
}

/* 🪐 GLOBAL CLASSES ENDS 🪐 */

/*---------BUTTONS STYLING--------*/

button {
  display: inline-block;
  width: fit-content !important;
  height: 2.6em;
  line-height: 2.5em;
  border: 1px solid var(--accentColor);
  background-color: var(--accentColor);
  overflow: hidden;
  border-radius: 25px;
  font-family: var(--fontA);
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--color);
  transition: all ease 0.4s;
  cursor: pointer;
  padding: 0px 25px 0px 25px;
}

button:hover {
  background-color: var(--color);
  border-color: var(--accentColor);
  color: var(--accentColor);
}

#numberCallTablet {
  color: var(--almostWhite) !important;
}

/* button a {
  display: inline-block;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  transition: all ease 0.6s;
  cursor: pointer;
  text-decoration: none;
  color: var(--color);
}

button a:hover {
  color: var(--accentColor);
} */

.btnFooter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  border: 1px solid var(--accentColor);
  background-color: var(--accentColor);
  overflow: hidden;
  border-radius: 25px;
  font-family: var(--fontA);
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--color);
  transition: all ease 0.6s;
  cursor: pointer;
  text-decoration: none;
}

.btnFooter:hover {
  background-color: var(--color);
  border-color: var(--accentColor);
  color: var(--accentColor);
}

/*---------BUTTONS STYLING ENDS------*/

/* 🟣NAV STARTS🟣 */

.desktopnav {
  position: fixed;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  /* box-shadow: rgba(50, 50, 93, 0.036) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.053) 0px 8px 16px -8px; */
  z-index: 999;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.solidNav {
  transition: ease-in-out;
  transition-duration: 0.4s;
  background-color: #15151500;
}

.active-nav-ds {
  background-color: #1a1717e5;
  backdrop-filter: blur(20px);
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}

.nonav {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
}
.desktopnav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: var(--fontA);
  font-size: 16px;
  font-weight: 700;
  transition: ease-in-out;
}

.desktopnav a:hover {
  color: var(--thirdAccent);
  transition-duration: 0.3s;
}
.desktopnav a:not(:hover) {
  transition-duration: 0.3s;
  transform: translateY(1.5px);
}

.logo {
  width: 130px;
  padding: 1px 15px;
  position: absolute;
  left: 0;
  top: 10px;
}

.logo img {
  width: 80%;
  transition: ease 0.4s;
}

/* 🟣NAV ENDS🟣 */

/* 🟠HEADER STARTS🟠 */

header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mouse-button-container {
  z-index: 88;
  bottom: 0;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/* From Uiverse.io by mrhyddenn */
.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

.section2 {
  --opacidad-negro: 0.7;
  background-image: linear-gradient(
      rgba(0, 0, 0, var(--opacidad-negro)),
      rgba(0, 0, 0, var(--opacidad-negro))
    ),
    url("./images/Project11.2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.home-bg {
  --opacidad-negro: 0.7;
  background-image: linear-gradient(
      rgba(0, 0, 0, var(--opacidad-negro)),
      rgba(0, 0, 0, var(--opacidad-negro))
    ),
    url("./images/Project-7.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.articleSection2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

h1 {
  color: white;
  text-align: center;
  font-size: 7.2rem !important;
  margin-bottom: -10px;
  font-family: var(--fontA);
  background: linear-gradient(to top left, #e4e0e0 40%, rgb(255, 252, 252) 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 5;
}

.section2 h2 {
  color: var(--almostWhite);
  font-size: 4.2rem;
  text-align: center;
}

.section2 h3 {
  color: var(--almostWhite);
  color: rgb(199, 199, 199);
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}

/* 🟠HEADER ENDS🟠 */

/* 🟡 MAIN STARTS🟡 */
main {
  min-height: 100vh;
  background-color: var(--mainBackground);
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  font-family: var(--fontA);
}

.sectionTitle {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
}

/*----------IMAGE & TEXT----------*/

.imgText {
  display: flex;
  align-items: center;
  gap: 3em;
  width: 1140px;
  padding: 60px 15px;
}

.text {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.text p {
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
}
.text li {
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
}

.text button {
  margin-top: 20px;
  width: 150px;
}

.img {
  object-fit: cover;
  width: 40%;
  height: 580px;
  border-radius: 8px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#imgText2,
#imgText4,
#imgText6 {
  flex-direction: row-reverse;
}

.justText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
  width: 1140px;
  margin-top: 80px;
}

.allText {
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: center;
}

.lists {
  text-align: left;
}

/*----------IMAGE & TEXT ENDS----------*/

/*----------SERVICES---------*/

.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  width: 1140px;
  height: 50%;
  padding: 80px 15px;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  width: 100%;
  height: 80%;
}

.singleService {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  background-color: rgba(0, 0, 0, 0.007);
  border-radius: 5px;
  transition: all 0.475s;
  box-shadow: 1px 5px 10px -2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 5px 10px -2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 5px 10px -2px rgba(0, 0, 0, 0.1);
}

.singleService:hover {
  cursor: pointer;
  transform: scale(1.01);
}

.singleService img {
  width: 100%;
  object-fit: cover !important;
  height: 190px;
  padding-bottom: 10px;
  border-radius: 5px 5px 0 0;
}

.singleService h4 {
  margin-bottom: 10px;
}

.singleService a {
  text-decoration: none;
  color: rgb(228, 222, 222);
  color: var(--accentColor);
  text-align: center;
}

/*----------END OF SERVICES---------*/

/*-----------LOCATIONS----------*/

.locationList {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 50px;
  width: 100%;
  height: 50vh;
  border-radius: 25px;
  padding: 80px 15px;
  margin-bottom: 65px;
  font-weight: 200;
  color: black;
  box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.037);
  -webkit-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.076);
  -moz-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.104);
  width: 1140px;
}

.locations {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  height: 70%;
}

/*-----------END OF LOCATIONS----------*/

/*----------FORM SECTION---------*/

.formSection {
  box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.037);
  -webkit-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.076);
  -moz-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.104);
  width: 1140px;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color);
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 100px;
  padding: 50px 0;
  gap: 30px;
  border: 1px solid rgba(218, 211, 211, 0.446);
}

.contactText {
  width: 70%;
  text-align: center;
}

.separator {
  height: 80px;
}

.buttonLike {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  background-color: var(--accentColor);
  transition: all ease 0.6s;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.buttonLike:hover {
  border: 2px solid;
  background-color: var(--color);
  border-color: var(--accentColor);
}

.buttonLike a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 75px;
  transition: all ease 0.6s;
  text-decoration: none;
  color: var(--color);
  font-size: 20px;
  font-weight: 700;
}

.buttonLike a:hover {
  color: var(--accentColor);
}

#contactTitle {
  color: var(--accentColor);
}

.formSection1 {
  box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.037);
  -webkit-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.076);
  -moz-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.104);
  width: 1140px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color);
  border-radius: 20px;
  margin-top: 80px;
  padding: 50px 0;
  gap: 30px;
}

/*----------END OF FORM SECTION---------*/

/* 🟡MAIN ENDS🟡*/

#checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

/* /------------MAIN FOOTER SECTION STARTS-----------------/ */

.footerSec1 {
  background-color: var(--mainBackground);
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 5em;
  box-shadow: -2px -4px 5px -4px rgba(0, 0, 0, 0.53);
  -webkit-box-shadow: -2px -4px 5px -4px rgba(0, 0, 0, 0.53);
  -moz-box-shadow: -2px -4px 5px -4px rgba(0, 0, 0, 0.53);
}

.logoTextIcons {
  height: 360px;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.logoTextIcons a {
  align-self: start;
}

.logoTextIcons img {
  height: 180px;
  width: 180px;
  object-fit: contain;
  align-self: start;
}

.logoTextIcons p {
  margin-left: 10px;
}

.socials {
  display: flex;
  gap: 1.5em;
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding-left: 10px;
  margin-top: 10px;
}

.socials i {
  color: var(--accentColor);
}

.socials i:hover {
  color: var(--secondAccent);
  cursor: pointer;
}

.clientLinks {
  height: 360px;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-top: 2em;
  gap: 10px;
  font-size: 0.9rem;
}

.clientLinks a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.mapAndButton {
  height: 360px;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-size: 0.9rem;
}

.mapAndButton button {
  width: 100%;
}

.gmap {
  border: 0;
  width: 100%;
  height: 70%;
}

/* /------------BLACK BAR STARTS-----------------/ */
.footerSec2 {
  background-color: rgb(21, 21, 21);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  padding: 10px;
}

.logoDiv {
  display: flex;
  width: 300px;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.footerSec2 img {
  height: 40px;
  width: 150px;
  object-fit: contain;
}

/* /------------BLACK BAR ENDS-----------------/ */

.mobileNav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 330px;
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 99;
  background-color: var(--almostWhite);
  backdrop-filter: blur(4.1px);
  -webkit-backdrop-filter: blur(4.1px);
  gap: 1px;
  transition: 0.6s;
  border-right: 1px solid black;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.scrollMobile {
  overflow-y: scroll;
  height: 60vh;
  scroll-behavior: smooth;
}

.mobileNavisActive {
  left: 0;
}

.mobileNav a {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  text-align: center;
  padding: 12 16px;
  background-color: #242323;
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  padding: 10px;
  font-family: var(--fontA);
  font-weight: 700;
  transition: ease-in-out;
  border-radius: 5px !important;
  border: 1px solid rgb(27, 27, 27);
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
}

.navMobileActive {
  color: rgb(251, 250, 252) !important;
  background-color: var(--accentColor) !important;
}
.mobileNav a:hover {
  color: var(--thirdAccent);
  background-color: white;
  transition-duration: 0.3s;
}
.mobileNav a:not(:hover) {
  transition-duration: 0.3s;
}

.hamburger {
  cursor: pointer;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  /*-------------COLOR DEL HAMBURGUESA-----------------*/
  fill: none;
  stroke: #979797;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.overlayIsActive {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  transition: opacity ease-in-out 0.8s;
  z-index: 90;
}

.overlayFadeOut {
  opacity: 0; /* Hacemos que la opacidad sea 0 para que desaparezca gradualmente */
  transition: opacity ease-in-out 0.8s; /* Agregamos la misma duración de transición */
  visibility: hidden;
}

p {
  font-family: var(--fontB);
}

.colorProvider01 {
  background-color: var(--sectionColor03);
  width: 100%;
  display: flex;
  justify-content: center;
}

.colorProvider02 {
  background-color: var(--sectionColor02);
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
}

.colorProvider03 {
  background-color: var(--almostWhite);
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 15px;
  gap: 30px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 50px),
    calc(50% + 50px) calc(100% - 50px),
    50% 100%,
    calc(50% - 50px) calc(100% - 50px),
    0 calc(100% - 50px)
  );
}

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

.sectionServicesContainer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.servicesTitle {
  color: var(--accentColor);
}

.service-item {
  width: 215px;
  height: 200px;
  background-color: rgba(255, 253, 253, 0);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(218, 211, 211, 0.446);
  padding: 10px 20px;
  box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.037);
  -webkit-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.076);
  -moz-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.104);
}

.service-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--thirdAccent);
}

.service-item h4 {
  color: var(--accentColor);
  text-align: center;
  font-size: 0.75rem;
  height: 40px;
}

/*------------SWIPER--------------*/

.swiper {
  width: 1124px;
  height: 270px;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
  margin-bottom: 80px;
  border-radius: 10px;
  z-index: 0;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  border-radius: 10px;
  background-color: var(--color);
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(218, 211, 211, 0.446);
  padding: 20px 10px;
  justify-content: center;
  align-items: center;
  box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.037);
  -webkit-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.076);
  -moz-box-shadow: -1px 10px 22px -5px rgba(61, 51, 51, 0.104);
  cursor: grab;
}

.profile {
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.starsAndName {
  display: flex;
  gap: 5px;
  flex-direction: column-reverse;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.commentContainer {
  width: 100%;
  height: 45%;
  padding: 5px 18px;
  display: flex;
  text-align: center;
  justify-content: center;
}

.swiper-slide p {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  font-family: var(--fontB) !important;
}

.swiper-pagination-bullet {
  background-color: var(--accentColor);
  bottom: 10px;
}

.swiper-slide img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  border-radius: 360px;
}

.starsAndName img {
  border-radius: 0;
  width: 20px;
  height: 20px;
}

.starsAndName h3 {
  font-size: 18px;
}

.stars {
  display: flex;
  gap: 2px;
}
/*------------SWIPER-ENDS-------------*/

/*-------------MAIN CONTACT-------------*/

#contactMain {
  justify-content: start;
}

/*------------MAIN CONTACT ENDS-------------*/

/* Style for the floating button */
.floating-button {
  position: fixed;
  bottom: 20px; /* Adjust as needed for the bottom-left corner */
  left: 20px; /* Adjust as needed for the bottom-left corner */
  width: 100px;
  height: 100px;
  background-color: #110f8c;
  color: white;
  border-radius: 50%; /* This will make it round */
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  gap: 2px;
  padding-bottom: 5px;
}

/* Style for the letter 'R' */
.floating-button .letter {
  font-size: 24px; /* Big R */
  font-weight: bold;
}

/* Style for the word 'reviews' */
.floating-button .word {
  font-size: 12px; /* Smaller text for 'reviews' */
}

/* Adjusting the text alignment and spacing */
.floating-button .button-text {
  text-align: center;
}

/* Ensure the text stays inside the circle */
.floating-button .button-text > div {
  overflow: hidden;
  white-space: nowrap;
}

.starsContainer {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.starsContainer img {
  width: 10%;
}

.floating-button img {
  width: 30%;
}

/* ☢️-------------------------------------------------MEDIAQUERIES STARTS------------------------- ☢️*/

/* ---------MEDIAQUERIESHEADER---------- */

@media (width <= 1366px) {
  h1 {
    font-size: 7.1rem !important;
  }
}

@media (width <= 1200px) {
  h1 {
    font-size: 6.5rem !important;
  }

  .footerSec2 {
    font-size: 11px;
  }

  .formSection1 {
    width: 800px;
  }

  .coupons {
    width: 100%;
    padding: 0;
  }

  .couponsContainer {
    flex-wrap: wrap;
  }
  .singleCoupon {
    width: 20%;
  }

  .serviceContainer {
    flex-direction: column;
    width: 100%;
  }

  .service-item {
    width: 350px;
    max-width: 760px;
    height: 200px;
    background-color: rgb(255, 255, 255);
  }

  .service-item h4 {
    font-size: 0.8rem;
  }

  .service-item svg {
    width: 60px;
  }

  .sectionServicesContainer {
    flex-direction: row;
  }
}

@media (width <= 767px) {
  nav {
    gap: 1.8vh;
  }

  .logoTextIcons {
    width: 30%;
  }

  .mapAndButton {
    width: 30%;
  }

  .clientLinks {
    width: 30%;
  }
  .btnFooter {
    width: 100%;
  }

  .sectionServicesContainer {
    flex-direction: column;
  }

  .colorProvider03 {
    padding-top: 20px;
  }

  .articleSection2 {
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
    flex-direction: column;
  }

  button {
    font-size: 14px;
  }

  nav a {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 3.2rem !important;
    width: 90%;
    line-height: 1em;
  }

  .section2 h2 {
    font-size: 3rem !important;
  }

  .section2 h3 {
    font-size: 1rem;
  }

  .formSection1 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (height < 569px) {
  h1 {
    padding-top: 50px;
    font-size: 1.5rem !important;
    line-height: 1em;
  }
  .mobileNav {
    padding-top: 30%;
  }
}

@media (height < 430px) {
  .section2 {
    padding-bottom: 20px;
  }

  .formSection1 {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ---------MEDIAQUERIESHEADER ENDS---------- */

/* ---------1200---------- */

@media (width <= 1200px) {
  header {
    min-height: 100vh;
  }

  .section2 {
    padding-top: 50px;
    min-height: 100vh;
    background-position: top;
  }

  .sectionTitle {
    font-size: 1.5rem;
  }
  .swiper {
    width: 775px;
    height: 250px;
  }

  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .imgText {
    width: 800px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .img {
    height: 600px;
    width: 40%;
  }

  .services {
    width: 800px;
  }

  .footerSec1 {
    gap: 2em;
  }
  .locationContainer {
    width: 800px;
  }
  .justText {
    width: 800px;
  }
}

/* ---------820---------- */

@media (width < 820px) {
  header {
    min-height: 100vh;
  }
  .section2 {
    padding-top: 50px;
    min-height: 100vh;
    display: flex;
    background-position: top;
  }
  .buttonAligner {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .imgText {
    width: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
    flex-direction: column-reverse;
  }
  .swiper {
    width: 580px;
    height: 265px;
  }

  .img {
    width: 100%;
    height: 450px;
  }
  .text {
    width: 100%;
  }
  #imgText2,
  #imgText4,
  #imgText6 {
    flex-direction: column-reverse;
  }

  .services {
    width: 600px;
  }

  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locationContainer {
    width: 600px;
  }

  .formSection {
    flex-direction: column;
  }

  .justText {
    width: 600px;
  }

  .coupons h2 {
    font-size: 2em;
  }

  .couponsContainer {
    width: 75%;
    flex-wrap: wrap;
  }
  .singleCoupon {
    width: 40%;
  }
}
/* ---------620---------- */

@media (width < 620px) {
  header {
    min-height: 100vh;
  }
  .section2 {
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    gap: 8px;
  }
  .swiper {
    width: 86%;
    height: 360px;
  }
  .swiper-slide {
    margin-bottom: auto;
    padding-bottom: 80px;
  }
  .imgText {
    width: 90%;
    flex-direction: column-reverse;
  }
  .img {
    width: 100%;
    height: 325px;
  }
  .text {
    width: 100%;
  }

  .services {
    width: 100%;
  }

  .servicesGrid {
    width: 90%;
    grid-template-columns: 1fr;
  }
  .locationContainer {
    width: 150px;
    flex-direction: column;
    gap: 20px;
  }

  .justText {
    width: 90%;
  }

  .footerSec1 {
    flex-direction: column;
    gap: 5px;
    height: fit-content;
    padding: 35px 0;
  }
  .socials {
    width: 100%;
    justify-content: center;
  }

  .mapAndButton,
  .clientLinks,
  .logoTextIcons {
    width: 80%;
  }

  .logoTextIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .logoTextIcons a {
    align-self: center;
  }
  .logoTextIcons img {
    width: 100%;
  }

  .mapAndButton {
    order: 2;
    margin-top: 25px;
  }

  .clientLinks {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: fit-content;
  }

  .footerSec2 {
    flex-direction: column;
    padding-top: 5px;
    justify-content: center;
    align-items: center;
  }
  .logoDiv a img {
    width: 100px;
  }
  .formSection1 {
    width: 90% !important;
    padding-left: 0px;
    padding-right: 0px;
  }

  .a-style,
  .span-style {
    text-align: center !important;
  }

  .container-download-button {
    flex-direction: column !important;
  }
}

/* //------------------WEIRD-----------// */

@media (width <= 600px) {
  .footerSec1 {
    flex-direction: column;
    gap: 10px;
    height: fit-content;
    padding: 35px 0;
  }
  .socials {
    width: 100%;
    justify-content: center;
  }

  .section2 h2 {
    font-size: 2.1rem !important;
    margin-top: 10px;
  }

  .section2 h3 {
    font-size: 0.68rem !important;
  }

  .couponsContainer {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .singleCoupon {
    width: 60%;
  }
  .a-style,
  .span-style {
    text-align: center !important;
  }
}

@media (width >= 1025px) {
  #hmbgDisplay {
    display: none;
  }
  #mobilenv {
    display: none;
  }
  .overlayIsActive {
    display: none;
  }
}

@media (width < 1025px) {
  .desktopnav a {
    display: none;
  }
  .dropdown-container {
    display: none;
  }
  .desktopnav {
    justify-content: flex-start;
    padding-left: 20px;
  }
  .logo {
    width: 130px;
    padding: -10px 0px;
    position: absolute;
    left: unset;
    top: 10px;
    right: -10px !important;
  }
}

@media (width < 1200px) {
  .locationList {
    width: 800px;
  }
  .formSection {
    width: 800px;
  }
}

@media (width < 820px) {
  .locationList {
    width: 600px;
  }
  .formSection {
    width: 600px;
  }
  form input[type="submit"] {
    width: 100%;
  }
  .formSection1 {
    width: 600px;
  }

  .a-style,
  .span-style {
    text-align: center !important;
    font-size: 1rem !important;
  }
}

@media (width < 600px) {
  .locationList {
    width: 85%;
    flex-wrap: nowrap;
    height: fit-content;
  }

  .formSection {
    width: 85%;
    height: fit-content;
  }

  .formSection1 {
    width: 100%;
  }

  .seraWidget {
    width: 90%;
  }

  form {
    width: 90%;
  }

  .buttonLike {
    width: 80%;
  }
  .a-style,
  .span-style {
    text-align: center !important;
    font-size: 1.2rem !important;
  }
}

#accenntBg {
  background-color: var(--thirdAccent);
}

#accenntBg:hover {
  background-color: var(--color);
  color: var(--thirdAccent);
}

.dropdown-container {
  position: relative;
  color: #ffffff;
  font-family: var(--fontA);
  font-weight: 700;
  cursor: pointer;
}

.dropdown-container ul {
  position: absolute;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  list-style-type: none;
  left: -14px;
  margin-top: 10px;
  padding: 0px;
  background-color: var(--sectionColor02);
  border-radius: 10px;
}

.dropdown-container:hover ul,
.dropdown-container ul.show {
  position: absolute;
  max-height: 190px;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dropdown-container ul li {
  width: 165px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 600;
  font-size: 14px;
}

/* Estilo para el span y el img cuando se hace hover en el div padre */
.dropdown-container:hover span,
.dropdown-container:hover img {
  /* Coloca aquí el color azul deseado */
  transition-duration: 0.6s;

  color: var(--secondAccent);
  fill: blue; /* Solo si el SVG es un icono con relleno */
}
.dropdown-container span:not(:hover) {
  transition-duration: 0.5s;
}

.hoverable-svg {
  position: absolute;
}

.dropdown-container {
  margin-right: 14px;
}
/* Default styles for the SVG and text */
.dropdown-container .hoverable-svg path {
  fill: #ffffff; /* Color of the SVG */
}

/* Hover styles for the container, affecting both text and SVG */
.dropdown-container:hover .hoverable-svg path {
  fill: var(--thirdAccent); /* Color of the SVG when hovering */
}

.dropdown-container:hover .hover-text {
  color: var(--thirdAccent); /* Color of the text when hovering */
}

.hoverable-svg path:not(:hover) {
  transition-duration: 0.5s;
}

.hamburger {
  position: absolute;
}

/* SVG ARROW IN MENU */
.menuSvg {
  position: relative;
  margin-top: 5px;
  left: 0;
  width: 100%;
}

.menuSvg path {
  fill: #000;
}

.svgLink {
  display: unset !important;
  width: unset !important;
  max-width: unset !important;
  margin: unset !important;
  text-align: unset !important;
  padding: unset !important;
  background-color: unset !important;
  color: unset !important;
  font-size: unset !important;
  text-decoration: unset !important;
  font-weight: unset !important;
  border-radius: unset !important;
  padding: unset !important;
  font-family: unset !important;
  font-weight: unset !important;
  transition: unset !important;
  border-radius: unset !important;
  border: unset !important;
}

/* SVG ARROW IN MENU */

.menuSvg {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.active-nav-desktop {
  color: var(--almostWhite) !important;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding-bottom: 5px;
}

.headerButton {
  width: unset;
  width: 180px !important;
  background-color: var(--thirdAccent);
  border: none;
}

.headerButton2 {
  background-color: transparent;
  backdrop-filter: blur(5px);
  border: 1px solid var(--almostWhite);
}

.headerButton2:hover {
  background-color: transparent;
  color: var(--almostWhite);
  border: 1px solid var(--thirdAccent);
}

/* //---------------Ultra Small devices dont delete--------------------// */
@media (width < 330px) {
  .section2 {
    padding-top: 0px;
  }
  .section2 h1 {
    font-size: 1.5rem !important;
  }
  .articleSection2 {
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .headerButton {
    font-size: 11px;
  }

  .swiper {
    width: 86%;
    height: 400px;
  }
  .swiper-slide {
    margin-bottom: auto;
    padding-bottom: 80px;
  }
}

#floatingButton {
  background-color: var(--thirdAccent);
  position: fixed;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  right: 3%;
  margin-right: 10px;
  border-radius: 40px;
  bottom: 4%;
  text-decoration: none;
  color: var(--color);
  font-weight: 700;
  font-size: 1.1rem;
  padding-left: 20px;
  padding-right: 20px;
  gap: 5px;
  width: fit-content;
  transition: opacity 0.4s ease;
}

#floatingButton svg {
  margin-top: 3px;
  height: 20px;
  fill: var(--color);
}

#floatingButton:hover {
  transition: ease-in-out 0.4s;
  background-color: var(--accentColor);
}

.noFloating {
  z-index: -10 !important;
}

/*
//CONTACT-US STYLES// */
.mainContactUs {
  padding-top: 80px;
}

.headerContactUs {
  display: none;
}

#navNumberCall {
  color: var(--almostWhite);
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  right: 3%;
  top: 28%;
}

@media (width<=1250px) {
  #navNumberCall {
    font-size: 1.3rem;
    top: 35%;
  }
  #serviceWeProvideTitle {
    font-size: 2rem !important;
  }
}

@media (width<=800px) {
  #serviceWeProvideTitle {
    font-size: 1.7rem !important;
    font-weight: 900;
  }
}

@media (width<=600px) {
  .services {
    padding: 50px;
  }

  #serviceWeProvideTitle {
    font-size: 1.5rem !important;
    font-weight: 900;
  }
  #removePadding1 {
    padding-top: 22px !important;
    padding-bottom: 0px !important;
  }
  #removePadding2 {
    margin-top: -10px !important;
  }
}

@media (width<=340px) {
  #serviceWeProvideTitle {
    font-size: 1.2rem !important;
    font-weight: 900;
  }
  #removePadding1 {
    padding-top: 15px !important;
  }
  #removePadding2 {
    margin-top: -15px !important;
  }
  .a-style,
  .span-style {
    text-align: center !important;
  }
}

@media (width<=450px) {
  #floatingButton {
    background-color: var(--thirdAccent);
    position: fixed;
    height: 50px;
    width: 90%;
    left: 50%;
    bottom: -0.7%;
    transform: translate(-50%, -50%);
    z-index: 999;
    border-radius: 40px;
    text-decoration: none;
    color: var(--color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: opacity 0.4s ease;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
  }

  .a-style,
  .span-style {
    text-align: center !important;
  }
}

#numberCallTablet {
  display: none;
}

@media (width<=1025px) {
  #numberCallTablet {
    color: var(--accentColor);
    font-size: 1.7rem;
    font-weight: 800;
    display: contents;
  }
}

@media (width<=515px) {
  #numberCallTablet {
    display: none;
  }

  .a-style,
  .span-style {
    text-align: center !important;
  }
}

.hide {
  display: none !important;
  transition: 1.5s;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
}

#serviceWeProvideTitle {
  color: var(--accentColor);
  font-size: 2.6rem;
  font-weight: 700;
}

@media (height<=800px) {
  .section2 {
    padding-top: 75px;
  }
}

/*FLOATING BUTTON QUERIES*/

@media (max-width: 1024px) {
  .floating-button {
    width: 80px; /* Smaller size for tablet */
    height: 80px;
    bottom: 30px;
    left: 15px;
  }

  .floating-button .letter {
    font-size: 20px; /* Slightly smaller font size for 'R' */
  }

  .floating-button .word {
    font-size: 10px; /* Slightly smaller font size for 'reviews' */
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .floating-button {
    width: 60px; /* Smaller size for mobile */
    height: 60px;
    left: 10px;
  }

  .floating-button .letter {
    font-size: 16px; /* Even smaller font size for 'R' */
  }

  .floating-button .word {
    font-size: 8px; /* Even smaller font size for 'reviews' */
  }
}

@media screen and (width<=1200px) {
  .desktopnav {
    gap: 1em;
  }

  .mobileNav {
    gap: 1.5em;
  }
}

@media screen and (width<=1025px) {
  #navNumberCall {
    display: none;
  }

  .desktopnav {
    gap: 2em;
  }
}

@media screen and (width<=450px) {
  .floating-button {
    bottom: 85px;
  }
}

@media screen and (width<=1250px) {
  .coupons h2 {
    font-size: 2.2em;
  }
  .coupons {
    margin: 20px 0 0;
  }
}

@media screen and (width<=800px) {
  .coupons h2 {
    font-size: 1.7em;
  }
}

@media screen and (width<=600px) {
  .singleCoupon {
    width: 75%;
  }
}

/* PROJECTS */

.masonry {
  columns: 300px;
}

.masonry img {
  width: 100%;
  margin-bottom: 0.5em;
  cursor: pointer;
}

.modal-gallery {
  width: 100%;
  height: 100dvh;
  background-color: rgba(29, 24, 24, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  cursor: pointer;
}

.modal-gallery__container {
  width: 650px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-gallery__container img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  object-fit: contain;
}

.modal-gallery__container p {
  width: 100%;
  color: var(--almostWhite);
}

.plus-div {
  position: absolute;
  width: 100%;
  height: 95%;
  background-color: rgba(10, 6, 6, 0.295);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.masonry-item svg {
  width: 30px;
  position: absolute;
  fill: var(--almostWhite);
}

.masonry-item {
  position: relative;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(60%);
  -webkit-filter: grayscale(100%) brightness(60%);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.masonry-item:hover {
  columns: 300px;
  filter: grayscale(0%) brightness(100%);
  -webkit-filter: grayscale(0%) brightness(100%);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.masonry-item:hover .plus-div {
  opacity: 1;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.project-list {
  width: 100%;
  padding: 25px;
}

.project-list li {
  font-family: var(--fontA);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.team-bckg {
  background-image: linear-gradient(
      rgba(0, 0, 0, var(--opacidad-negro)),
      rgba(0, 0, 0, var(--opacidad-negro))
    ),
    url("./images/Picture-232.jpg");
}

/* Our Team */

.space-top {
  height: 20px;
}

.container-profiles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.separator {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #a42c2c71;
  margin-bottom: 25px;
  padding-top: 15px;
}

.container-profiles h2 {
  font-size: 2.5rem;
}

.container-profiles h3 {
  font-size: 1.9rem !important;
  margin-top: 10px;
}

.container-profiles h4 {
  font-size: 1.5rem;
  margin-top: 19px;
  margin-bottom: 5px;
}

.container-profiles p {
  font-size: 1.1rem;
  line-height: 34px;
}

ul li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 35px;
}

/* CONTACT US */

.contact-bckg {
  background-image: linear-gradient(
      rgba(0, 0, 0, var(--opacidad-negro)),
      rgba(0, 0, 0, var(--opacidad-negro))
    ),
    url("./images/contact-us.jpeg");
}

.container-contact-us {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  color: white;
  padding-top: 80px;
}

.contact-title {
  font-size: 4rem !important;
  padding-bottom: 20px;
  color: white !important;
}

.span-style {
  font-weight: 600;
  color: white;
  font-size: 1.3rem;
  text-align: center;
}

.a-style {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.5s ease;
  font-size: 1.3rem;
  text-align: center;
}

.a-style:hover {
  color: #ae202e;
  transition: 0.5s ease;
}

.container-download-button {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.download-button {
  background-color: var(--thirdAccent);
  border: 1px solid var(--thirdAccent);
}

.download-button:hover {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
