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

/* ------------ VARIABLES ------------ */
.globe-plugin-container {
  position: relative;
  width: 100%;
}
.globe-plugin-container .globe-container {
  width: 100%;
  max-width: 800px; /* Or whatever maximum width you want */
  aspect-ratio: 1; /* Keep it square for the globe */
  margin: auto;
  position: relative;
  /* Minimum height for the globe container, adjust as needed */
  min-height: 400px; /* Example: ensure it's visible even on small screens */
}
/* No #cobe specific styles needed anymore for the globe rendering */
/* The globe.gl canvas will automatically fit inside .globe-container */


/* ------------ BASE ------------ */
.globe-plugin-container *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* You might want to remove 'body' styling from a plugin's CSS to avoid conflicts */
/* .globe-plugin-container body{
  font-family: var(--font);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--bg-color);
} */

/* ----------- SLIDER ------------ */
.globe-plugin-container .swiper{
  width: 100%;
  position: absolute;
  pointer-events: none;
  bottom: 20%;
}

.globe-plugin-container .swiper-wrapper{
  width: 100%;
  height: auto;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
  align-items: center;
}

.globe-plugin-container .card{
  width: auto;
  height: auto;
  /* background-color: #fff; */
  background-image: linear-gradient(rgba(7, 7, 7, 0.39), rgba(170, 20, 20, 0));
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 2em;
  box-shadow: 0 0 2em rgba(0, 0, 0, .2);
  padding: 1vw 3vw;
  display: flex;
  align-items: center;
  flex-direction: row;
  border: 1px solid rgba(250, 250, 250, 0.1);
  margin: 0 2em;
  justify-content: center;
align-items: center !important;
gap: 5%;
background-color: transparent;
color: #fff;
margin-left: 5%;
margin-right: 5%;
white-space: nowrap;
pointer-events: all;
transform: scale(1.3) !important;
}
.globe-plugin-container .card img {
    border-radius: 50%;
border: 2px solid color(srgb 0.9983 0.7219 0.2014);
height: 4vw;
}

.globe-plugin-container .swiper-slide:not(.swiper-slide-active){
  /* filter: blur(2px); */
  transform: scale(0.7) !important;
}

.globe-plugin-container .card__title{
  font-size: 2.6vw;
  font-family: Roboto, sans-serif;
  font-weight: 900;
  position: relative;
}

.globe-plugin-container .card__name{
  color: var(--color);
}

.globe-plugin-container .card__text{
  text-align: center;
  font-size: 1.1rem;
  margin: 1em 0;
}

.globe-plugin-container .card__btn{
  background-color: var(--color);
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: .5em;
  border-radius: .5em;
  margin-top: .5em;
  cursor: pointer;
}