/* ------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


* {
  margin: 0;
}


body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.content {
  margin-top: 2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3em;
  padding-right: 3em;
}


.navbar {
  position: sticky;
  top: 0;
  background-color: black;
  z-index: 100;
  transition: background-color 0.3s ease; /* Smooth transition effect */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.navbar li {
  float: left;
}

.navbar li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
}

.logo {
  display: inline-block;
}

.logo img {
  width: auto;
  height: 30px;
  object-fit: contain;
}

.navbar-return a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar-return a img {
  transition: transform 0.3s ease;
}

.navbar-return a:hover img {
  transform: scale(1.1);
}

.navbar-scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}



.navbar-buttons {
  display: flex;
  align-items: center;
}

.navbar-buttons .navbar-return {
  margin-right: 10px;
}

.navbar-buttons .navbar-language a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  background-color: transparent;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.navbar-buttons .navbar-language a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}



@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}



.footer {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo {
  margin-right: auto; /* Pushes the logo to the left */
}

.footer-logo img {
  width: 30px; /* Adjust the width of the logo as needed */
  height: 30px; /* Adjust the height of the logo as needed */
}

.footer-text {
  margin-left: 20px; /* Adds some spacing between the logo and text */
}

.footer-text p {
  margin: 0;
  font-size: 14px; /* Adjust the font size as needed */
}


h1 {
  font-family: "Merriweather";
  text-align: left;
  flex: none;
  word-break: break-word;
  font-size: 2em;
}


h5 {
  font-family: "Merriweather";
  text-align: left;
  flex: none;
  word-break: break-word;
  font-size: 1.5em;
}

p {
  line-height: 1.8;
}
p + p {
  margin-top: 2em;
}

a {
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
}
a.grow::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 25%;
  width: 50%;
  height: 1px;
  border-bottom: 1px solid #00CBCB;
  transition: 0.4s;
}
a.grow:hover::after {
  width: 100%;
  left: 0;
}
a.highlight::after {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 100%;
  left: -2px;
  padding: 0 2px;
  width: calc(100% + 2px);
  height: 1px;
  border-bottom: 1px solid #00CBCB;
  transition: 0.4s;
}
a.highlight:hover::after {
  top: 0;
  height: 1.5em;
  background-color: #00CBCB;
  border-color: transparent;
}
a.swipe::before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 100%;
  left: -2px;
  padding: 0 2px;
  width: calc(100% + 2px);
  height: 1px;
  border-bottom: 1px solid #00CBCB;
  transition: 0.4s;
}
a.swipe::after {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -2px;
  padding: 0 2px;
  width: 1px;
  height: 1.5em;
  transition: 0.4s;
}
a.swipe:hover::after {
  width: 100%;
  background-color: #00CBCB;
}
a.magic-btn::before {
  content: " ";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -2px;
  padding: 0 2px;
  width: calc(100% + 2px);
  height: 1px;
  border-bottom: 1px solid #00CBCB;
  transition: 0.4s;
}
a.magic-btn::after {
  content: " ";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: calc(50% - 4px);
  padding: 0 2px;
  width: 0;
  height: 0;
  border: 1px solid transparent;
  transition: 0.4s;
}
a.magic-btn:hover::before {
  border-color: transparent;
}
a.magic-btn:hover::after {
  width: 100%;
  height: 1.25em;
  left: -1em;
  bottom: -0.35em;
  padding: 0.5em 1em;
  border-color: #00CBCB;
  background-color: #00CBCB;
  border-radius: 2.5em;
}
a.magic-btn {
  display: inline-block;
  transition: 0.3s;
  transition-delay: 0s;
  transform: scale(1);
}
a.magic-btn:hover {
  color: #fff;
  transform: scale(1.4);
  transition-delay: 0.11s;
}

.p1 {  
  -webkit-text-size-adjust: none;
  font-size: 10px;
  padding: 1px 0px}

.p2 {  
  -webkit-text-size-adjust: none;
  color: #606060;
  font-size: 15px;
  padding: 1px 0px}

.lighter-text {
  font-weight: lighter;
}

.responsive {
  width: 100%;
  max-width: 800px;
  height: auto;
  align-content: center;
}

.responsive2 {
  width: 100%;
  max-width: 300px;
  height: auto;
  align-content: center;
}

.Slogo {
  width: 50%;
  max-width: 300px;
  height: auto;
}



/* Hero section */

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-section {
  padding: 1rem 0;
}

.hero-section_title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  text-align: center;
  color: var(--base-light);
  font-weight: 400;
}

.hero-section_title .quoted-text {
  color: var(--base-lighter);
}

.hero-section_cards {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.hero-section_card {
  min-height: 450px;
  border-radius: 12px;
}

.hero-section_card_content {
  padding: 1.6rem;
}

.hero-section_card_title {
  color: white;
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1.6rem;
}

.hero-section_card_description {
  color: white;
  font-size: 1rem;
  font-weight: 100;
}

.hero-section_card_description a{
  color: white;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 200;
}

.hero-section_card.card-1 {
  background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://cdn.glitch.global/03db2833-c369-4f2c-a818-7c8c0c06d242/web-12.jpg?v=1714917341889');
  background-position: left;
}
.hero-section_card.card-2 {
   background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://cdn.glitch.global/03db2833-c369-4f2c-a818-7c8c0c06d242/web-11.jpg?v=1714917345123');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section_card.card-3 {
  background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://cdn.glitch.global/03db2833-c369-4f2c-a818-7c8c0c06d242/web-05.jpg?v=1714904094087');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section_card.card-4 {
  background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://cdn.glitch.global/03db2833-c369-4f2c-a818-7c8c0c06d242/web-06.jpg?v=1714904095824');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.icon {
      display: inline-block;
      vertical-align: middle;
      width: auto;
      height: 50px;
    }

hr {
  border: none;
  border-top: 1px solid lightgray;
}



@media (max-width: 700px) {

.Slogo {
  width: 60%;
  max-width: 400px;
  height: auto;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: default;
}

.tooltip .tooltiptext {
  visibility: hidden;
  padding: 0.25em 0.5em;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 0.25em;
  white-space: nowrap;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 100%;
  transition-property: visibility;
  transition-delay: 0s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition-delay: 0.3s;
}

h1.small {
  font-family: "Merriweather";
  text-align: left;
  flex: none;
  word-break: break-word;
  font-size: 1em;
}


