* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --primary: #0d1249;
  --secondary: #091733;
  --terteary: #96b9ff;
  --fourth: #cbdcff;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: var(--fourth);
}

::-webkit-scrollbar-thumb {
  background-color: var(--terteary);
}

a,
ul,
button,
input {
  text-decoration: none;
  list-style: none;
  border: 0;
  background: transparent;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  scroll-behavior: smooth !important;
}

main {
  width: 100%;
}

main header {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: linear-gradient(to right, var(--primary) 20%, transparent);
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(assets/img/IMG_5923.jpg);
  background-position: right;
  background-size: cover;
  z-index: -2;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

header .navigation {
  width: 100%;
  height: 4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 4rem;
}

.menu--btn i {
  font-size: 2rem;
  color: var(--white);
  background-color: var(--terteary);
  border-radius: 4px;
}

.navigation .navigation--collapse {
  display: none;
}

header .navigation .navigation--collapse {
  width: 250px;
  height: 0;
  position: absolute;
  top: 3.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  background: #303030a1;
  border-radius: 6px;

  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header .navigation .navigation--collapse.open {
  height: 260px;
}

.navigation--collapse nav {
  padding: 0.5rem;
  display: flex;
}

.navigation--collapse nav ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.navigation--collapse nav ul li {
  width: 100%;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navigation--collapse nav ul li:hover {
  background-color: var(--terteary);
  border-radius: 2px;
  color: var(--primary);
}
.navigation--collapse nav ul li {
  color: var(--white);
}

.navigation--collapse .cta-box {
  padding: 1rem;
  width: 100%;
  display: flex;
}

.navigation--collapse .cta-box button {
  width: 100%;
}

.navigation nav ul li a {
  font-weight: 500;
  color: var(--white);
}

.navigation .brand a img {
  height: 3rem;
}

.navigation .cta-box button {
  color: var(--white);
  font-size: 1rem;
  padding: 0.5rem 1.7rem;
  background: var(--primary);
  border-radius: 8px;
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .hero {
  width: 100%;
  height: calc(100dvh - 5rem);

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;
}

.hero .content--box--hero {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;

  padding: 0 0 0 4rem;
}

.content--box--hero .esufi {
  display: flex;
  align-items: center;
}

.esufi img {
  max-width: 350px;
  background-color: #343;
}



.content--box--hero h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.content--box--hero p {
  font-size: 0.7rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 2rem;
}

.btn--content--box {
  display: flex;
}

a.btn {
  padding: 0.9rem 1.7rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--terteary);

  border-radius: 8px;
  transform: scale(0.99);
  transition: all 0.5s ease;
  animation: pulse 0.8s infinite;
}

a.btn:active {
  transform: scale(1);
}

@keyframes spinn {
  from {
    transform: rotate(360deg);
    box-shadow: 1px 1px 7px var(--secondary);
    border-width: 3px;
  }
}

@keyframes pulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

main .paterns {
  display: flex;
  align-items: center;
  

  padding: 1rem 6rem;

  width: 100%;
  height: 5rem;
  background-color: var(--white);
  overflow: hidden;
}

.paterns ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;

  gap: 2rem;
}

.paterns ul li img {
  width: 60px;
  object-fit: cover;
  /* background: var(--primary); */
}

.paterns h3 {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0 0.7rem;
  border-right: 2px solid var(--primary);
}

main .overview {
  position: relative;
  width: 100%;

  padding: 8rem 4rem;
  background: var(--primary);
  color: var(--white);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  z-index: -1;
}

.overview::after {
  content: "";
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  background-image: url(assets/img/polygon-scatter-haikei-overview.svg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.overview--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background-color: var(--primary);
}

.overview--content .overview--text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overview--text h2 {
  font-size: 1.7rem;
  font-weight: 700;
}

.overview--text p {
  font-size: 1.1rem;
}

.overview--text ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.overview--text li::before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  background-size: contain;
  background-image: url("assets/img/pngwing.com.png");
  filter: invert();
  margin-right: 5px;
}

.overview--content a {
  padding: 0.5rem 1.7rem;
  width: fit-content;

  background-color: var(--primary);
  border-radius: 8px;
  color: var(--white);

  margin-left: 1rem;
}

.overview--img-box {
  position: relative;

  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.overview--img-box img {
  width: 100%;
  border-radius: 16px;

  border: 2px solid var(--white);
}

.activityareas {
  position: relative;
  width: 100%;
  margin: 6rem 0;

  padding: 3rem 6rem;

  background-color: var(--primary);
  color: var(--white);
  z-index: -1;
}

.activityareas::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url(assets/img/polygon-scatter-haikei.svg);
  background-size: cover;
  background-position: 50%;
  z-index: -1;
}

.activityareas .activityareas--wrapper {
  width: 100%;
  height: 100%;
}

.activityareas--wrapper .wrapper--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.activityareas--content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activityareas--wrapper h3 {
  background-color: var(--primary);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  width: 50%;
  margin-bottom: 3rem;
}

.activityareas--content .activity {
  display: flex;
  align-items: flex-start;
  gap: 2rem;

  padding: 0.3rem;
}

.activity .icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
}

.icon i {
  font-size: 1.7rem;
  color: var(--secondary);
}

.activity .activity-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-content h4 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}

.activity-content p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.duration {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;

  gap: 2rem;
  padding: 6rem 6rem;
  margin: 3rem 0;
}

.duration h3 {
  text-align: center;
  font-size: 2rem;
}

.duration a {
  width: fit-content;
  text-align: center;
  font-weight: 600;

  padding: 0.9rem 1.7rem;
  margin-top: 1rem;

  border-radius: 8px;
}

.duration .durations-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.durations-content .intern-duration {
  position: relative;
  /* width: 12.5rem; */
  padding: 2rem 1rem;

  border-radius: 8px;
  color: var(--white);
  background: #0d1249;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intern-duration .workload {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.workload div h4 {
  font-weight: 500;
  font-size: 1.5rem;
}

.workload div h4 span {
  font-size: 2.5em;
}

.workload div span {
  text-indent: red;
}

.workload i {
  font-size: 2.5rem;
  color: #303030;
}

.intern-duration .schedule {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.highlight {
  width: 100%;

  background: var(--primary);
  color: var(--secondary);

  padding: 6rem 6rem;
  margin: 3rem 0;
}

.highlight--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.highlight--content .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  background-color: var(--white);
  border-radius: 8px;
}

.content i {
  padding: 1rem;
  text-align: center;
  font-size: 4rem;
  /* color: var(--white);
  background-color: var(--primary);
  border-radius: 6px; */
}

.highlight .content h4 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);

  padding: 1rem;
  margin-bottom: 1rem;

  background-color: var(--secondary);
  border-radius: 8px;
}

.highlight--content .content ul {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 0.5rem;
}

.highlight--content .content li {
  font-size: 1rem;
  font-weight: 400;
  padding-left: 1rem;
}

.highlight--content .content li::before {
  height: 15px;
  width: 15px;
  content: "";

  display: inline-block;

  background-size: contain;
  background-image: url("assets/img/pngwing.com.png");
  margin-right: 5px;
}

.testimonials {
  width: 100%;
  position: relative;
  background: var(--white);
  color: var(--primary);

  padding: 6rem 4rem;
  margin: 3.5rem 0;
}

.testimonials h4 {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 3rem;

  font-size: 1.7rem;
}
.testimonials .testimonail-box {
  width: 450px;

  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  background: var(--primary);
  box-shadow: 3px 3px 3px 0.3px var(--secondary);
  border-radius: 8px;
  color: var(--white);
}

.testimonail-box .testimonial-inf {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-inf .testimonial-pic {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  border: 2px solid var(--secondary);
  overflow: hidden;
}

.testimonial-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-inf .testimonial-name-position {
  display: flex;
  flex-direction: column;
}

.mentor-section {
  position: relative;
  width: 100%;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 70px;

  background: var(--primary);
  color: var(--secondary);

  padding: 5rem 6rem;
  margin: 3rem 0;

  overflow: hidden;
  z-index: -1;
}

.mentor-section::after {
  content: "";
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  background-image: url(assets/img/polygon-scatter-haikei-overview.svg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.mentor-section .btn--mentor-box {
  margin-top: 4rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-section .mentor-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mentor-box h3 {
  font-size: 1.1rem;
}

.mentor-box h4 {
  font-size: 1.7rem;
  margin: 1rem 0;
}

.mentor-box .mentor-content {
  padding: 2rem;

  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  background-color: var(--white);
}

.mentor-img {
  display: flex;
  color: var(--white);
}

figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  position: relative;
}

.mentor-img figure img {
  width: fit-content;
  height: 500px;
}

figcaption {
  display: flex;
  align-items: baseline;
  background-color: var(--primary);
}

figure figcaption span {
  font-size: 3rem;
}

.alert-section {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 70px;

  background: var(--fourth);
  color: var(--primary);

  padding: 5rem 6rem;
  margin: 3rem 0;

  overflow: hidden;
  z-index: -1;
}

.alert-section .alert-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.alert-content .entities span {
  font-size: 3rem;
  font-weight: 600;
}
.alert-content .entities p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.alert-content .content {
  display: flex;
  flex-direction: column;
}

.alert-content .content p:nth-child(1) {
  font-size: 1.7rem;
  line-height: 1.6;
}

.alert-content .content p:nth-child(2) {
  font-size: 1.2rem;
  line-height: 1.4;
}

.alert-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

footer {
  width: 100%;
}

footer .container {
  width: 100%;
  padding: 3rem 6rem;
}

footer a.btn {
  padding: 0.5rem 1.7rem;
  background: var(--primary);
  border-radius: 8px;
  color: var(--white);
  animation: none 1s linear;
}

.container .row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.container .row .col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.col h3 {
  font-size: 2rem;
  line-height: 1.6;
}

.col .cpelo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.cpelo a {
  width: fit-content;
}

.text-center {
  text-align: center;
}

.ex-link {
  font-weight: 700;
  color: var(--primary);
}

/* dhdhdhhdhd */

@media only screen and (max-width: 1024px) {
  html {
    font-size: 82.5%;
  }

  main header {
    height: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .navigation {
    position: relative;
    padding: 0 2rem;
  }

  header .navigation .brand + nav {
    display: none;
  }

  .navigation .cta-box {
    display: none;
  }

  .navigation .menu--btn {
    display: flex;
  }

  .menu--btn i {
    color: var(--secondary);
    background-color: var(--terteary);
    border-radius: 4px;
  }

  header .navigation .navigation--collapse {
    width: 250px;
    height: 0;
    position: absolute;
    top: 3.5rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    background: #303030a1;
    border-radius: 6px;

    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  header .navigation .navigation--collapse.open {
    height: 220px;
  }

  .navigation--collapse nav {
    padding: 1rem;
    display: flex;
  }

  .navigation--collapse nav ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .navigation--collapse nav ul li a {
    color: var(--white);
  }

  .navigation--collapse .cta-box {
    padding: 1rem;
    width: 100%;
    display: flex;
  }

  .navigation--collapse .cta-box button {
    width: 100%;
  }

  main .paterns {
    padding: .7rem 1rem;
  }
  main .paterns h3 {
    font-size: .8rem;
  }

  main .overview {
    width: 100%;
    margin: 3rem 0;

    padding: 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .overview--content .overview--text {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .overview--text a {
    text-align: center;
  }

  .activityareas {
    padding: 2rem 4rem;
  }

  .activityareas--wrapper h3 {
    width: 100%;
  }

  .activityareas--wrapper .wrapper--content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlight .highligth-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .highlight-img .imgs-box {
    width: min-content;
    border-radius: 25%;
    overflow: hidden;
  }

  .highlight--content .content h4,
  li {
    text-align: center;
  }

  .highlight-img .imgs-box img {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 82.5%;
  }

  main header {
    height: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .navigation {
    position: relative;
    padding: 0 2rem;
  }

  header .navigation .brand + nav {
    display: none;
  }

  .navigation .cta-box {
    display: none;
  }

  .navigation .menu--btn {
    display: flex;
  }

  .menu--btn i {
    font-size: 2rem;
  }

  header .navigation .navigation--collapse {
    width: 250px;
    height: 0;
    position: absolute;
    top: 3.5rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    background: #303030a1;
    border-radius: 6px;

    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  header .navigation .navigation--collapse.open {
    height: 220px;
  }

  .navigation--collapse nav {
    padding: 1rem;
    display: flex;
  }

  .navigation--collapse nav ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .navigation--collapse nav ul li a {
    color: var(--white);
  }

  .navigation--collapse .cta-box {
    padding: 1rem;
    width: 100%;
    display: flex;
  }

  .navigation--collapse .cta-box button {
    width: 100%;
  }

  header .hero {
    height: calc(100vh - 13rem);
    margin: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .content--box--hero {
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .img--box--hero img {
    width: 250px;
    height: 350px;
  }

  .img--box--hero .circle {
    width: 300px;
    height: 300px;
  }

  .img--box--hero .circle--border {
    width: 320px;
    height: 320px;
  }

  .content--box--hero h2 {
    width: 70%;
    font-size: 1.9rem;
    text-align: center;
  }

  .content--box--hero p {
    font-size: 0.99rem;
  }

  main .overview {
    width: 100%;
    margin: 3rem 0;

    padding: 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .overview--content .overview--text {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .overview--text a {
    text-align: center;
  }

  .activityareas {
    padding: 2rem 4rem;
  }

  .activityareas--wrapper h3 {
    width: 100%;
  }

  .activityareas--wrapper .wrapper--content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .activityareas--content .activity {
    gap: 1rem;
  }

  .activity-content p {
    font-size: 0.8rem;
  }

  .highlight .highligth-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .highlight-img .imgs-box {
    width: min-content;
    border-radius: 25%;
    overflow: hidden;
  }

  .highlight--content .content h4,
  li {
    text-align: center;
  }

  .highlight-img .imgs-box img {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (width < 590px) {
  html {
    font-size: 82.5%;
  }

  main header {
    height: auto;
    margin: 0 auto;
    padding: 0.7rem 0.5rem 0 0.5rem;
  }

  header .hero {
    margin: 0;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .content--box--hero {
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .content--box--hero {
    text-align: center;
  }

  .img--box--hero img {
    width: max-content;
    height: 350px;
  }

  .img--box--hero .circle {
    width: 250px;
    height: 250px;
  }

  .img--box--hero .circle--border {
    width: 270px;
    height: 270px;
  }

  .content--box--hero h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .content--box--hero p {
    font-size: 0.95rem;
  }

  main .paterns {
    padding: 0;
  }

  main .overview {
    width: 100%;
    margin: 3rem 0;

    padding: 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .overview .overview--img-box .mold {
    width: 250px;
    height: 300px;
  }

  .overview .overview--img-box .border {
    width: 280px;
    height: 320px;
  }

  .overview--img-box .mold img {
    width: max-content;
    height: 350px;
  }

  .overview--content .overview--text {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .overview--text h2 {
    font-size: 1.5rem;
  }

  .overview--text p {
    font-size: 0.95rem;
  }

  .overview--text a {
    text-align: center;
  }

  .activityareas {
    padding: 2rem 1rem;
  }

  .activityareas--wrapper h3 {
    font-size: 1.5rem;
    width: 100%;
  }

  .activityareas--wrapper .wrapper--content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .activityareas--content .activity {
    gap: 1.5rem;
  }

  .activity .icon {
    width: 30px;
    height: 30px;
  }

  .icon i {
    font-size: 1.5rem;
  }

  .activity-content h4 {
    font-size: 1rem;
  }

  .activity-content p {
    font-size: 0.8rem;
  }

  .duration .durations-content {
    display: flex;
    flex-direction: column;
  }

  .highlight {
    padding: 2rem 1rem;
  }

  .highlight .highligth-box {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .highlight-img .imgs-box {
    width: min-content;
    border-radius: 25%;
    overflow: hidden;
  }

  .highlight--content .content h4,
  li {
    text-align: center;
  }

  .highlight-img .imgs-box img {
    width: 110px;
    height: 110px;
  }

  .testimonials {
    width: 100%;
    position: relative;
    background: var(--white);
    color: var(--primary);

    padding: 3rem 1.5rem;
    margin: 3rem 0;
  }

  .testimonials .testimonail-box {
    width: 450px;

    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    background: var(--primary);
    box-shadow: 3px 3px 3px 0.3px var(--secondary);
    border-radius: 8px;
    color: var(--white);
  }

  .testimonail-box .testimonial-inf {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .testimonial-inf .testimonial-pic {
    width: 50px;
    height: 50px;

    border-radius: 50%;
    border: 2px solid var(--secondary);
    overflow: hidden;
  }

  .testimonial-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-name-position strong {
    font-size: 0.9rem;
  }

  .testimonial-name-position span {
    font-size: 0.8rem;
  }

  .testimonial-content {
    font-size: 0.95rem;
  }

  swiper-container {
    width: 100%;
    height: 100%;
  }

  swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }

  footer {
    width: 100%;
  }

  footer .container {
    width: 100%;
    padding: 3rem 2rem;
  }

  footer a.btn {
    padding: 0.5rem 1.7rem;
    background: var(--primary);
    border-radius: 8px;
    color: var(--white);
  }

  .container .row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .container .row .col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .col h3 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .col .cpelo {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }

  .cpelo a {
    width: fit-content;
  }

  .text-center {
    text-align: center;
  }

  .ex-link {
    font-weight: 700;
    color: var(--primary);
  }
}
