@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat/static/Montserrat-Regular.ttf")
    format("truetype");
}

@font-face {
  font-family: "Ubuntu Sans";
  src: url("./fonts/Ubuntu_Sans/static/UbuntuSans-Regular.ttf")
    format("truetype");
}

@font-face {
  font-family: "Questrial";
  src: url("./fonts/Questrial-Regular.ttf") format("truetype");
}

:root {
  --background-color: black;
  --font-family-1: "Questrial", sans-serif;
  --font-family-2: "Montserrat", sans-serif;
  --font-family-3: "Ubuntu Sans", sans-serif;

  /* hero heading color is the same as the other headings */
  --hero-font-size: 6rem;
  --hero-font-weight: 100;
  --hero-line-height: 90px;
  --hero-letter-spaceing: -7px;

  /* the color and the font-family are the same as other paragraphs */
  --hero-para-font-size: 1.3rem;
  --hero-para-font-weight: 400;
  --hero-para-line-height: 25px;

  --heading-color: rgba(129, 129, 129, 0.89);
  --heading-font-size: 4.5rem;
  --heading-font-weight: 100;
  --heading-letter-spacing: -3px;
  --heading-line-height: 70px;

  --para-font-color: #7c7c7c;
  --para-font-size: 1.2rem;
  --para-letter-spacing: 0.3px;
  --para-line-height: 20px;
  --para-font-weight: 200;
}
.site-footer {
  /* background: repeating-radial-gradient(#000 0 0.0001%, #0c0c0c 0 0.0002%) 60%
      60%/3000px 3000px,
    repeating-conic-gradient(#000 0 0.0001%, #070707 0 0.0002%) 40% 40%/3000px
      3000px;
  background-blend-mode: difference; */
  background-color: #230d4e;
  width: 100%;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.site-footer__container {
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}

.site-footer__top-border {
  background: repeating-radial-gradient(#000 0 0.0001%, #464646 0 0.0002%) 60%
      60%/3000px 3000px,
    repeating-conic-gradient(#000 0 0.0001%, #949494 0 0.0002%) 40% 40%/3000px
      3000px;
  background-blend-mode: difference;
  width: 100%;
  height: 150px;
  margin-top: 5%;
}

.site-footer__top-border {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer__top-border img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.67;
  filter: sepia(80%) grayscale(100%);
  transition: all 0.3s ease;
}

.site-footer__top-border img:hover {
  opacity: 1;
  z-index: 5;
  transition: all 0.3s ease;
  filter: sepia(0%) hue-rotate(0deg);
  border-radius: 5px;
  width: 200%;
  height: 200%;
}

.site-footer__main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(129, 129, 129);
  /* border: 1px solid orange; */
  width: 100%;
  height: 300px;
  margin-top: 10px;
}

.site-footer__main-content .site-footer__heading {
  width: 600px;
  height: 180px;
  position: relative;
  top: -10px;
}

.site-footer__main-content .site-footer__heading h2 {
  font-family: var(--font-family-3);
  font-weight: 100;
  font-size: clamp(2rem, 4vw, 5rem);
  color: rgb(158, 158, 158);
  letter-spacing: -2px;
  line-height: 60px;
}

.links-to-pages {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.site-footer__expertise {
  height: 180px;
  width: 300px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  position: relative;
  top: -17px;
}

.site-footer__expertise h3 {
  color: #b7b7b7;
  font-family: var(--font-family-3);
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  font-weight: 300;
  padding-left: 30px;
  width: 100%;
}

.site-footer__expertise h3::after {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background-color: #9b9b9b;
  position: absolute;
  left: 30px;
  bottom: -2px;
}

.site-footer__expertise-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-3);
  color: #757575;
}

.site-footer__expertise-row div {
  border: 2px solid #444343;
  padding: 3px 20px;
  border-radius: 100px;
  transition: border 0.3s ease;
}

.site-footer__expertise-row div:hover {
  border: 2px solid #f88c18;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  gap: 100px;
}

.site-footer__explore ul,
.site-footer__social ul {
  list-style: none;
}

.site-footer__explore ul li a,
.site-footer__social div ul li a {
  text-decoration: none;
  font-family: var(--font-family-3);
  color: #757575;
  letter-spacing: -1.05px;
}

.site-footer__explore h3,
.site-footer__social h3 {
  color: #b7b7b7;
  font-size: 1.5rem;
  font-family: var(--font-family-3);
  font-weight: 300;
  position: relative;
  display: inline-block;
}

.site-footer__explore h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #9b9b9b;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.site-footer__social h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #9b9b9b;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.site-footer__social div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.site-footer__explore {
  position: relative;
  display: inline-block;
  top: -25px;
}

.site-footer__social {
  position: relative;
  display: flex;
  top: -10px;
}

.site-footer__explore ul {
  margin-top: 20px;
}

.site-footer__explore::before {
  content: "";
  display: block;
  width: 0.5px;
  height: 60%;
  background-color: #302e2e;
  position: absolute;
  top: 60px;
  left: -25px;
  bottom: -15px;
  opacity: 1;
}

.site-footer__explore::after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: #302e2e;
  position: absolute;
  left: 0;
  bottom: -25px;
  opacity: 1;
}

.site-footer__social div {
  position: relative;
}

.site-footer__social div::before {
  content: "";
  display: block;
  width: 0.5px;
  height: 70%;
  background-color: #302e2e;
  position: absolute;
  top: 10px;
  left: -25px;
  bottom: -15px;
  opacity: 1;
}

.site-footer__social div .site-footer__social-platforms {
  position: relative;
  display: block;
}

.site-footer__social div .site-footer__social-platforms::before {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: #302e2e;
  position: absolute;
  left: 0;
  bottom: -15px;
  opacity: 1;
}

.site-footer__social div .site-footer__legal-links {
  position: relative;
  display: block;
}

.site-footer__social div .site-footer__legal-links::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #302e2e;
  position: absolute;
  left: 0;
  bottom: -15px;
  opacity: 1;
}

.site-footer__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 6;
}

.site-footer__locations {
  display: flex;
  justify-content: space-between;
}

.site-footer__bottom .site-footer__location-card {
  width: 350px;
  height: 200px;
  border: 2px solid #444343;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  color: white;
  z-index: 2;
}

.site-footer__location-card div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer__location-content {
  margin-left: 20px;
}

.site-footer__location-card div div span {
  font-family: var(--font-family-3);
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 20px;
  color: #b7b7b7;
  position: relative;
  display: inline-flex;
  width: max-content;
}

.site-footer__location-card div div span::after {
  content: " ";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #f88c18, #f85e21);
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.site-footer__location-card div p {
  font-family: var(--font-family-1);
  font-size: 1rem;
  color: #807e7e;
  line-height: 15px;
}

.site-footer__location-card .site-footer__location-flag img {
  position: relative;
  left: -20px;
  top: 20px;
  width: 130px;
  mix-blend-mode: screen;
  opacity: 0.2;
}

.site-footer__cta {
  width: 350px;
  height: 200px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  gap: 35px;
}

/* .site-footer__cta .site-footer__cta-whatsapp a {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  background-color: #f88c18;
  line-height: 10px;
  border-radius: 100px;
  transition: box-shadow 0.3s ease;
}

.site-footer__cta .site-footer__cta-whatsapp a:hover {
  box-shadow: 0px 5px 10px rgba(200, 80, 0, 0.6);
} */
.site-footer__cta-text {
  line-height: 0.7;
}

.site-footer__cta-primary {
  font-family: var(--font-family-3);
  padding-left: 2px;
  text-align: center;
  font-size: 1.2rem;
}

.site-footer__cta-secondary {
  font-family: var(--font-family-3);
  padding-left: 3px;
  text-align: center;
  font-size: 0.7rem;
  font-style: italic;
}

.site-footer__whatsapp-icon img {
  position: relative;
  left: -5px;
  width: 40px;
  height: 40px;
}

.site-footer__cta .site-footer__cta-project {
  width: 200px;
  text-decoration: none;
  font-family: var(--font-family-3);
  font-size: 1.2rem;
  color: #000;
  border-radius: 100px;
  border: none;
  background-color: white;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.site-footer__cta .site-footer__cta-project:hover {
  box-shadow: 0px 5px 10px rgba(255, 255, 255, 0.514);
}

.site-footer__copyright p {
  color: #737373;
  font-family: var(--font-family-1);
  font-size: 0.9rem;
  margin-top: 10px;
}

.site-footer__copyright {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.site-footer__scroll-top {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 2px solid #737373;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  bottom: 0;
  right: -150px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.site-footer__scroll-top:hover {
  transform: scale(1.1);
  background: #f88c18;
  border: 1px solid #f88c18;
}

.site-footer__scroll-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.site-footer__scroll-top .site-footer__scroll-arrow {
  position: absolute;
  padding-left: 8px;
  padding-top: 8px;
  transition: transform 0.3s ease-in-out;
}

.site-footer__scroll-top .site-footer__scroll-arrow--first {
  transform: translateY(0);
}

.site-footer__scroll-top .site-footer__scroll-arrow--second {
  transform: translateY(150%);
}

.site-footer__scroll-top:hover .site-footer__scroll-arrow--first {
  transform: translateY(-150%);
}

.site-footer__scroll-top:hover .site-footer__scroll-arrow--second {
  transform: translateY(0);
}

.site-footer__links ul li a {
  position: relative;
  display: inline;
}

.site-footer__links ul li:hover a::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #757575;
}

#footer-fluid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
}

#footer-button-scroll {
  cursor: pointer;
}
.foooter-contact-modern-btn {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 200px;
  border: 4px solid;
  border-color: transparent;
  background-color: #f88c18;
  border-radius: 100px;
  color: #2c2c2c;
  box-shadow: 0 0 0 2px #f59709f5;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.foooter-contact-modern-btn svg {
  position: absolute;
  width: 24px;
  fill: #3f3f3f;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.foooter-contact-modern-btn .modern-arr-1 {
  right: 16px;
}

.foooter-contact-modern-btn .modern-arr-2 {
  left: -25%;
}

.foooter-contact-modern-btn .modern-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.foooter-contact-modern-btn .modern-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1rem;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.foooter-contact-modern-btn:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #1e1e1e;
}

.foooter-contact-modern-btn:hover .modern-arr-1 {
  right: -20%;
}

.foooter-contact-modern-btn:hover .modern-arr-2 {
  left: 12px;
}

.foooter-contact-modern-btn:hover .modern-text {
  transform: translateX(12px);
}

.foooter-contact-modern-btn:hover svg {
  fill: #424242;
}

.foooter-contact-modern-btn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #f88c18;
}

.foooter-contact-modern-btn:hover .modern-circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* ---------------------------------------------------------- */
.footer-modern-btn {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 200px;
  padding: 13px 20px;
  border: 4px solid;
  border-color: transparent;
  background-color: white;
  border-radius: 100px;
  color: #2c2c2c;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-modern-btn svg {
  position: absolute;
  width: 24px;
  fill: #797979;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-modern-btn .modern-arr-1 {
  right: 16px;
}

.footer-modern-btn .modern-arr-2 {
  left: -25%;
}

.footer-modern-btn .modern-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-modern-btn .modern-text {
  position: relative;
  font-size: 1rem;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-modern-btn:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #1e1e1e;
}

.footer-modern-btn:hover .modern-arr-1 {
  right: -25%;
}

.footer-modern-btn:hover .modern-arr-2 {
  left: 16px;
}

.footer-modern-btn:hover .modern-text {
  transform: translateX(12px);
}

.footer-modern-btn:hover svg {
  fill: #424242;
}

.footer-modern-btn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #ffffff;
}

.footer-modern-btn:hover .modern-circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}


@media screen and (max-width: 1450px) {
  .site-footer__container {
    width: 90%;
  }
  .site-footer__main-content .site-footer__heading {
    width: 50%;
  }

  .site-footer {
    height: 100% !important;
  }

  .site-footer__main-content {
    margin-top: 100px;
  }

  .site-footer__links {
    gap: 50px;
  }

  .site-footer__heading {
    line-height: 0.8;
  }

  .site-footer__locations {
    margin-top: 40px;
    gap: 10px;
  }

  .site-footer__location-card {
    width: 350px !important;
  }

  .site-footer__copyright button {
    right: -4%;
    bottom: 15px;
  }

}

@media (min-width: 1201px) and (max-width: 1370px) {
  .site-footer__main-content .site-footer__heading {
    width: 40%;
    height: 100% !important;
  }

  .site-footer__main-content .site-footer__heading h2 {
    line-height: 0.8;
    width: 100%;
  }

  .site-footer__main-content {
    height: auto;
  }

  .links-to-pages {
    width: 60%;
  }

  .site-footer__bottom {
    height: auto;
  }

  .site-footer__locations {
    width: 100% !important;
    flex-wrap: wrap;
  }

  .site-footer__scroll-top {
    right: 0;
    bottom: 15px;
  }

  .site-footer__location-card {
    width: 350px !important;
  }

  .site-footer__cta {
    width: 350px;
  }

}

@media screen and (max-width: 1200px) {
  .site-footer__container {
    width: 90%;
    padding-bottom: 50px;
  }

  .site-footer__bottom {
    height: 100%;
  }

  .site-footer__main-content {
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .links-to-pages {
    width: 100%;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
  }

  .site-footer__main-content {
    height: auto;
  }

  .site-footer__main-content .site-footer__heading {
    margin-top: 0;
    text-align: center;
    height: 100% !important;
    margin: 50px 0;
  }

  .site-footer__main-content .site-footer__heading h2{
    line-height: 0.8;
    width: 100%;
  }

  .site-footer__locations {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .site-footer__location-card {
    width: 350px !important;
  }

  .site-footer__cta {
    justify-content: center;
    align-items: center;
  }

  .site-footer__copyright p {
    margin-left: 175px;
  }

  .site-footer__scroll-top {
    right: 7% !important;
    bottom: 0px;
  }
}

@media screen and (max-width: 1024px) {

  .site-footer__container {
    width: 95%;
    height: auto;
  }

  .site-footer__main-content {
    margin-top: 50px;
    gap: 40px;
  }

  .site-footer__main-content .site-footer__heading {
    text-align: center;
    /* margin-top: 0; */
    height: 100% !important;
  }

  .site-footer__expertise h3 {
    justify-content: center;
    width: 200px;
  }

  .site-footer__expertise h3::after {
    width: 70%;
  }
  .site-footer__expertise {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .site-footer__expertise-row {
    justify-content: flex-start;
    gap: 20px;
  }

  .site-footer__links {
    width: 100%;
    gap: 60px;
  }

  .site-footer__cta {
    justify-content: center;
    align-items: center;
  }

  .site-footer__copyright p {
    bottom: 50px;
    margin-top: 20px;
    margin-left: 70px;
  }

  .site-footer__scroll-top {
    right: 30px;
    bottom: 10px;
  }

  .site-footer__locations {
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .site-footer__location-card {
    width: 350px !important;
  }

  .site-footer__cta {
    justify-content: center;
    align-items: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .site-footer {
    height: 100%;
    padding: 40px 0;
  }
  .site-footer__main-content .site-footer__heading {
    width: 60%;
    text-align: center;
  }
  .site-footer__main-content .site-footer__heading h2{
    line-height: 0.8;
    width: 100%;
  }

  .site-footer__container {
    width: 95%;
    height: auto;
  }

  .site-footer__top-border {
    height: 100px;
    margin-top: 0;
  }

  .links-to-pages {
    width: 100%;
    height: auto;
    gap: 50px;
  }

  .site-footer__locations {
    margin-top: 0;
    justify-content: center;
  }

  .site-footer__location-card {
    width: 310px !important;
  }

  .site-footer__explore,
  .site-footer__social {
    top: 0;
  }

  .site-footer__explore::before,
  .site-footer__social div::before {
    display: none;
  }

  .site-footer__explore::after,
  .site-footer__social div .site-footer__social-platforms::before,
  .site-footer__social div .site-footer__legal-links::before {
    width: 100%;
  }

  .site-footer__cta {
    width: 300px;
  }

  .site-footer__cta {
    justify-content: center;
    align-items: flex-end;
  }

  .site-footer__copyright {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .site-footer__scroll-top {
    right: 30px;
    bottom: 30px;
  }

  .site-footer__copyright p {
    bottom: 30px;
    margin-left: 50px;
  }

  .site-footer__expertise-row div {
    padding: 3px 15px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    background-color: #230d4e;
  }
  .site-footer__top-border {
    display: none;
  }
}

@media (max-width: 550px) {
  .links-to-pages {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .site-footer__main-content .site-footer__heading h2 {
    font-size: 2rem !important;
    line-height: 35px !important;
    letter-spacing: -1px;
  }

  .site-footer__expertise h3,
  .site-footer__explore h3,
  .site-footer__social h3 {
    font-size: 1.2rem;
  }

  .site-footer__expertise-row {
    flex-wrap: wrap;
  }

  .site-footer__location-card div div span {
    font-size: 1.5rem;
  }

  .site-footer__location-card .site-footer__location-flag img {
    width: 100px;
  }
}

