  @import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --color--white: white;
    --font-family-grotesk: "Schibsted Grotesk", sans-serif;;
    --color--black: black;
    --_typography---paragraph-font-size--small-paragraph: 14px;
    --_typography---line-height--large: 140%;
    --_typography---font-weight--normal: 400;
    --color--gray-900: #272727;
    --_typography---heading-font-size--h1: 64px;
    --_typography---line-height--small: 110%;
    --_typography---heading-font-size--h2: 48px;
    --_typography---heading-font-size--h3: 40px;
    --_typography---heading-font-size--h4: 36px;
    --_typography---font-weight--medium: 500;
    --_typography---heading-font-size--h5: 32px;
    --_typography---line-height--medium: 130%;
    --_typography---heading-font-size--h6: 24px;
    --color--dark-blue-800: #23232b;
    --color--gray-200: #27272733;
    --_spacing---border-radius--radius-xxl: 100px;
    --_typography---paragraph-font-size--paragraph: 16px;
    --color--green-900: #00ab41;
    --color--gray-800: #272727cc;
    --color--white-800: #fffc;
    --color--gray-250: #27272740;
    --color--white-100: #ffffff1a;
    --_typography---link-font-size--text-link: 16px;
    --color--green-600: #26ff79;
    --color--elephant-950: #002738;
    --_spacing---padding-margin--space-md: 24px;
    --color--white-700: #ffffffb3;
    --color--sky-blue-700: #0094ca;
    --color--green-800: #00d250;
    --_spacing---padding-margin--space-xxl: 80px;
    --_spacing---border-radius--radius-sm: 8px;
    --color--black-200: #e3e3e3;
    --color--gray-500: #27272780;
    --color--gray-700: #272727b3;
    --color--white-400: #fff6;
    --color--gray-150: #27272726;
    --color--sky-blue-800: #0c6ad5;
    --color--black-50: #f9f9f9;
    --color--green-300: #f4f7f3;
    --_spacing---padding-margin--space-xl: 60px;
    --_typography---paragraph-font-size--large-text: 20px;
    --_spacing---border-radius--radius-md: 12px;
    --_typography---paragraph-font-size--large-paragraph: 18px;
    --color--white-50: #ffffff0d;
    --color--white-250: #ffffff40;
    --color--dark-blue-950: #14161b;
    --color--gray-400: #27272766;
    --color--white-200: #fff3;
    --color--eminence-300: #f6f3f7;
    --_spacing---border-radius--radius-xl: 16px;
    --color--green-700: #58ca00;
    --color--cyan: #00caca;
    --color--gray-100: #2727271a;
    --_spacing---padding-margin--space-sm: 18px;
    --color--sky-blue-400: #e2f4fa;
    --color--green-400: #e2faea;
    --color--fair-pink-100: #f8e9e7;
    --color--gray-950: #101010;
    --color--sky-blue-100: #0cb7d51a;
    --color--pomegranate-100: #ff492c1a;
    --color--eminence-200: #691f7433;
    --color--cyan-100: #15c39a1a;
    --color--black-100: #efefef;
    --_typography---link-font-size--button: 16px;
    --color--green-500: #d7efdf;
    --color--green-200: #00ab4133;
    --color--green-100: #00ab411a;
    --color--dark-blue-900: #000a24;
    --color--dark-blue-600: #06194c;
    --color--sky-blue-900: #1f5874;
    --color--sky-blue-300: #dce9ee;
    --color--sky-blue-200: #1f627433;
    --color--eminence-900: #691f74;
    --color--eminence-500: #e2dcee;
    --color--eminence-400: #f5efff;
    --color--eminence-100: #691f741a;
    --color--sunset-orange: #eb6047;
    --color--sunset-orange-200: #eb604733;
    --color--pomegranate: #ff492c;
    --color--pomegranate-700: #ff492cb3;
    --color--pomegranate-200: #ff492c33;
    --color--pomegranate-40: #ff492c0a;
    --color--fair-pink-200: #f8e6e3;
    --_typography---font-weight--light: 300;
    --_typography---font-weight--semi-bold: 600;
    --_typography---font-weight--bold: 700;
    --color--dark-blue-700: #23272e;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-grotesk);
  font-size: var(--_typography---paragraph-font-size--small-paragraph);
  background-color: var(--color--white);
  color: var(--color--black);
}

h1, h2, h3, h4 {
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 3.2rem;

}

.grid {
  display: grid;
}

.section {
  padding-block: 2rem 1rem;
  margin-top: 2rem;
}


.main {
  overflow: hidden; /* For animation ScrollReveal */
}
.button-green {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: var(--_spacing---border-radius--radius-xxl);
    background-color: var(--color--green-600);
    color: var(--color--elephant-950);
    font-size: var(--_typography---link-font-size--button);
    line-height: var(--_typography---line-height--large);
    font-weight: var(--_typography---font-weight--medium);
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}

.button-black {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: var(--_spacing---border-radius--radius-xxl);
    background-color: var(--color--gray-900);
    color: var(--color--white-800);
    font-size: var(--_typography---link-font-size--button);
    line-height: var(--_typography---line-height--large);
    font-weight: var(--_typography---font-weight--medium);
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}



.button i {
    font-size: 25px;
}

/* sections */
.apilox__teams{
  padding-top: 7rem;
  background-color: var(--color--black-50);
  padding-bottom: 3rem;
}
.teams__container{
  margin-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.2rem;
}
.teams__container h1{
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  margin-inline: 1.5rem;
}
.teams__container h2{
  font-weight: 400;
  font-size: .9rem;
  text-align: center;
  color: #272727cc;

}
.teams__container .button-green{
  font-size: .8rem;
  font-weight: 500;
}

.career__grid{
  grid-template-columns: repeat(1, 1fr);
  margin-inline: 1.5rem;
  gap: 2rem;
}
.team__team{
  max-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom-left-radius: 4%;
  border-bottom-right-radius: 4%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.image__XTRA{
  flex: 1;
  max-height: 200px;
  width: 100%;
}
.team__team img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 5%;
   border-top-right-radius: 5%;
}
.team__data{
  padding: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  border-bottom-left-radius: 8%;
  border-bottom-right-radius: 8%;
}
.team__data h2{
  font-size: 1.2rem;
  font-weight: 500;
}
.team__data p{
  font-size: .9rem;
}
.team__data .button-green{
  font-size: .9rem;
  font-weight: 500;
}




/* ----------------------------------------------------
   BASE — no media query needed
   ---------------------------------------------------- */

/* Very Small Phones — 320px */
@media (min-width: 320px) {
  
}

/* Small Phones — 375px */
@media (min-width: 375px) {

}

/* Medium Phones — 414px (iPhone Plus) */
@media (min-width: 414px) {

  .team__data p {
    font-size: 1rem;

}

.team__data h2 {
    font-size: 1.2rem;
    font-weight: 500;
}
.team__data .button-green {
    font-size: 1rem;
}
}
/* Large Phones — 480px */
@media (min-width: 480px) {
  .career__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: .5rem;
    gap: 1rem;
}

.teams__container h1 {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
}
}

/* Tablets Portrait — 600px (Android) */
@media (min-width: 600px) {

  .teams__container h2 {
    font-size: .8rem;
    max-width: 80%;
}

}

/* Large Phones / Small Tablets — 640px */
@media (min-width: 640px) {

}

/* Tablets Portrait — 720px */
@media (min-width: 720px) {
  .teams__container h1 {
        font-size: 2rem;
    }
}

/* Tablets Landscape — 768px */
@media (min-width: 768px) {
  .career__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Tablets — 820px (iPad Air) */
@media (min-width: 820px) {

}

/* iPad Pro 11 — 834px */
@media (min-width: 834px) {

}

/* iPad Pro 12.9 Portrait — 900px */
@media (min-width: 900px) {

}

/* Small Laptops — 1024px */
@media (min-width: 1024px) {
    .career__grid {
      grid-template-columns: repeat(3, 1fr);
      margin-inline: 2rem;
  }
      .teams__container h1 {
      font-size: 2.6rem;
      margin-top: 3rem;
  }

  .teams__container h2 {
      font-size: 1rem;
      max-width: 80%;
  }
}

/* Medium Laptops — 1152px */
@media (min-width: 1152px) {
  .career__grid{
    margin-inline: 4rem;
  }
      .teams__container h1 {
        font-size: 4rem;
    }
}

/* Large Laptops / Small Desktops — 1280px */
@media (min-width: 1280px) {
    .career__grid {
      grid-template-columns: repeat(4, 1fr);
      margin-inline: 2rem;
  }
}

/* Full HD width — 1366px */
@media (min-width: 1366px) {
  section{
    padding-inline: 5rem;
  }
 
}

/* Large Desktop — 1440px */
@media (min-width: 1440px) {
  section{
    padding-inline: 7rem;
  }
 
}

/* WQHD — 1600px */
@media (min-width: 1600px) {
   section{
    padding-inline: 10rem;
  }
}

/* Ultra-Wide — 1920px (Full HD) */
@media (min-width: 1920px) {

}

/* Quad HD — 2560px */
@media (min-width: 2560px) {
section{
    padding-inline: 27rem;
  }
  .apilox__teams {
    padding-top: 20rem;
    padding-bottom: 15rem;
}
.teams__container h1 {
        font-size: 8rem;
    }

  .teams__container h2 {
        font-size: 2rem;
    }

    .teams__container .button-green {
    font-size: 1.2rem;
}
.career__grid {
        grid-template-columns: repeat(6, 1fr);
        margin-inline: 2rem;
    }

    .our__team-heading h1 {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
}

/* 4K — 3840px */
@media (min-width: 3840px) {
    section{
    padding-inline: 60rem;
  }
}























