@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");


/* Custom Global Reset */

/* Section Styles */
.andrex-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  padding: 100px;
}

.andrex-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #1c0522, transparent);
  z-index: 100;
}

.andrex-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.andrex-section img#text {
  width: 200px;
}

.andrex-section img#mountains_front {
  z-index: 10;
}

/* Text Styles */
.andrex-text {
  position: absolute;
  right: -350px;
  color: #fff;
  white-space: nowrap;
  font-size: 7.5vw;
  z-index: 9;
}

.andrex-btn {
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 40px;
  background-color: #ffffff9d;
  color: #2b1055;
  font-size: 1.5em;
  z-index: 9;
  transform: translateY(10px);
}

/* Section 2 Styles */
.andrex-sec {
  position: relative;
  background: #1c0522;
}

.andrex-sec h2 {
  font-size: 3.3em;
  font-weight: bold;
  color: rgb(72 44 80);
}

.andrex-sec h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: rgba(252, 149, 5, 0.434);
}

.andrex-sec p {
  font-size: 1em;
  color: #aaaaaa;
}

.andrex-general-text {
  color: #aaaaaa;
}

.andrex-bg-main {
  background-color: #1c0522;
}
.andrex-bg-sky {
  background-color: #173d6a;
}

.andrex-bg-secondary {
  background-color: rgb(50, 20, 57);
}

.andrex-bg-third {
  background-color: rgb(70, 14, 88);
}

.andrex-partners-text {
  font-size: 11px;
  font-weight: 600;
  color: #aaaaaa;
}

.andrex-testimonial-img {
  width: 80px; /* Adjust the size as needed */
  height: 80px; /* Ensures the image is a perfect circle */
  border-radius: 50%; /* Makes the image round */
  object-fit: cover; /* Ensures the image covers the area without stretching */
  object-position: center; /* Centers the image focus */
  display: block;
}

