/* BANNER */
.banner-home {
  height: 100vh;
  width: 100%;
  background-size: cover;
  position: relative;
}

.banner-home .infos {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.banner-home .infos .info {
  width: 65%;
}
.banner-home .infos .info h4 {
  width: 60%;
}

.banner-home h2 {
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(40px, 4.3vw, 48px);
}

.banner-home h4 {
  color: #f5f5f5;
  font-weight: 300;
}
.banner-home .glide__arrows img {
  width: 30px;
}

.banner-home .glide__arrow--left {
  left: 2%;
}
.banner-home .glide__arrow--right {
  right: 2%;
}

@media (max-width: 1024px) {
  .banner-home {
    background-size: cover;
  }

  .banner-home h4 {
    font-size: 16px;
  }
  .banner-home .infos .info {
    width: 80%;
  }
  .banner-home .infos .info h4 {
    width: 60%;
  }
}

@media (max-width: 756px) {
  .banner-home .infos .info {
    width: 100%;
  }
  .banner-home .infos .info h4 {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .banner-home h2 {
    font-size: 24px;
  }
  .banner-home h4 {
    font-size: 15px;
  }
}
/* BANNER */

/* BANNER MID */
.banner-mid {
  padding-block: 8vh;
}
.banner-mid h2 {
  text-transform: uppercase;
  font-family: "Saira Condensed";
  font-weight: 700;
  font-size: calc(60% + 4.5vw);
  letter-spacing: 26.4px;
  color: var(--secondary-color);
}

@media (max-width: 992px) {
  .banner-mid {
    padding-block: 5vh;
  }
}
@media (max-width: 756px) {
  .banner-mid br {
    display: none;
  }
  .banner-mid h2 {
    font-size: calc(60% + 4vw);
    letter-spacing: 13px;
  }
}
/* BANNER MID */

/* CONCEPT */
.concept {
  padding-block: 8vh;
}
.concept .info {
  padding-right: 4%;
}

.concept .info h2 {
  font-size: clamp(42px, 4.3vw, 68px);
  font-weight: 400;
}

.concept .info a:hover {
  text-decoration: underline !important;
}

@media (max-width: 992px) {
  .concept .info {
    padding-right: 0;
  }
}
/* CONCEPT */

/* OUR SERVICES */
.our-services {
  padding-block: 8vh;
}

.our-services h4 {
  color: #f5f5f5;
  font-size: 24px;
  font-weight: 400;
}

.cards-service {
  display: grid;
  grid-template-columns: 23% 23% 23% 23%;
  justify-content: space-between;
}

.card-service {
  position: relative;
  height: 448px;
  border-radius: 30px;
  overflow: hidden;
}

.card-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}

.card-service .info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 102.57%),
    transparent;
  border-radius: 0;
}
.card-service .footer-card-service {
  width: 100%;
  position: absolute;
  bottom: 10%;
  left: 0;
}
.card-service .footer-card-service p {
  font-size: 12px;
  width: 65%;
  font-weight: 700;
}
.card-service .footer-card-service .link {
  font-size: 14px;
  text-decoration: underline !important;
}

.our-services .info h3 {
  font-size: 38px;
  font-weight: 400;
}

.our-services .cards-service > .card-service:nth-of-type(1) {
  /* background-color: var(--secondary-color); */
  background-color: #94cc2c;
}
.our-services .cards-service > .card-service:nth-of-type(2) {
  background-color: #3c3cdc;
}
.our-services .cards-service > .card-service:nth-of-type(3) {
  background-color: #ac54ff;
}
.our-services .cards-service > .card-service:nth-of-type(4) {
  background-color: #fd894e;
  /* background-color: #fc2b0d; */
}

@media (max-width: 1366px) {
  .our-services .info h3 {
    font-size: 30px;
  }
  .card-service {
    height: 428px;
  }
}
@media (max-width: 1024px) {
  .our-services .info h3 {
    font-size: 25px;
  }
  .card-service {
    height: 380px;
  }
}

@media (max-width: 992px) {
  .cards-service {
    grid-template-columns: 45% 45%;
    row-gap: 60px;
  }
  .our-services .info h3 {
    font-size: 30px;
  }
}
@media (max-width: 756px) {
  .cards-service {
    grid-template-columns: 100%;
    row-gap: 60px;
  }
  .our-services .info h3 {
    font-size: 30px;
  }

  .card-service {
    height: 500px;
  }
}
/* OUR SERVICES */

/* WHY BIOETHICAL */
.why-bioethical {
  padding-block: 8vh;
}
.why-bioethical h2 {
  font-size: clamp(42px, 4.3vw, 68px);
  font-weight: 300;
}

.why-bioethical .mt-custom {
  margin-top: 3vh !important;
}

@media (max-width: 756px) {
  .why-bioethical .btn-primary,
  .why-bioethical .btn-secondary {
    max-width: max-content;
  }
}
/* WHY BIOETHICAL */

/* BANNER MID 2 */
.banner-mid-two {
  background: url(/assets/img/banner-mid-two.jpg);
  background-size: cover;
  background-position: center;
  height: 70vh;
}
.banner-mid-two .container {
  padding-inline: 10%;
}

@media (max-width: 756px) {
  .banner-mid-two h2 {
    font-size: 36px;
  }
}
/* BANNER MID 2 */

/* WHO WE ARE */
.who-we-are {
  padding-block: 8vh;
}

.who-we-are img {
  border-radius: 20px;
}

.who-we-are .info {
  position: absolute;
  border-radius: 19px;
  background-color: #333;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  width: 60%;
  padding: 51px 74px;
}
.who-we-are .info h4 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
}
.who-we-are .info h6 {
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 300;
}
.who-we-are .info h3 {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 148%;
  font-weight: 300;
}
.who-we-are .info a {
  font-size: clamp(12px, 1.5vw, 16px);
  text-decoration: underline !important;
}

@media (max-width: 756px) {
  .who-we-are img {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 300px;
    object-fit: cover;
    object-position: top;
  }
  .who-we-are .info {
    position: static;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    transform: none;
    width: 100%;
    padding: 30px 30px;
  }
  .who-we-are .info a {
    font-size: 16px;
  }
  .who-we-are .info h3 {
    font-size: 16px;
  }
}
/* WHO WE ARE */

/* JORNEY */
.journey {
  padding-block: 8vh;
}
.journey p {
  font-weight: 300;
}
/* JORNEY */
