/* RESET SOME DEFAULT CSS VALUES */

:root {
  --clr-primary: #0170be;
  --clr-primary-light: #348dcb;
  --clr-primary-lighter: #e6f1f9;
  --clr-primary-lightest: #e6e6e6;
  --clr-primary-dark: #0165ab;
  --clr-primary-darker: #000b13;

  --text-clr-gray-300: #7e90a1;
  --text-clr-gray-500: #4c5b69;

  --clr-accent: #fa0202;
  --clr-accent-light: #fc4e4e;
  --clr-accent-lighter: #ffe6e6;
  --clr-accent-lightest: #faf1f1;
  --clr-accent-dark: #e10202;
  --clr-accent-darkest: #190000;

  --clr-gray-100: #f3f3f3;
  --clr-gray-200: #e7e7e7;
  --clr-gray-300: #dbdbdb;
  --clr-gray-400: #cfcfcf;
  --clr-gray-500: #c4c4c4;
  --clr-gray-600: #b8b8b8;
  --clr-gray-700: #acacac;
  --clr-gray-800: #a0a0a0;
  --clr-gray-900: #949494;
  --clr-gray-d100: #888888;
  --clr-gray-d200: #7a7a7a;
  --clr-gray-d300: #6d6d6d;
  --clr-gray-d400: #525252;
  --clr-gray-d500: #292929;

  --radius-100: 0.3rem;
  --radius-200: 0.5rem;
  --radius-400: 0.7rem;
  --radius-600: 0.9rem;
  --radius-800: 1.2rem;
  --radius-c100: 2rem;
  --radius-half: 50%;

  --font-primary: "Outfit", sans-serif;
}

html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
}

/* GIVING DEAFULT VALUES TO SOME ELEMENTS */
a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  width: max-content;
}

h1,
h2,
h3 {
  max-width: 100%;
  color: var(--clr-primary-darker);
  width: max-content;
}

h4 {
  font-family: var(--font-primary);
}

h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  position: relative;
  font-weight: 900;
}

p {
  font-size: 1.7rem;

  line-height: 1.7;
  color: var(--text-clr-gray-500);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

h2 {
  font-size: 2.8rem;
}

.cta {
  min-width: 12rem;
  height: 4rem;
  font-weight: 500;
  background-color: var(--clr-accent);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  border-radius: var(--radius-200);
  transition: all 300ms ease-in-out;
  padding: 0 1rem;
  position: relative;
  isolation: isolate;
}

.cta:hover {
  box-shadow: #ff741d63 0px 8px 24px;
}

.content-container {
  width: 100%;
  display: flex;
  align-items: center;
}

.bold {
  font-size: 1.7rem;
  display: inline-block;
  color: #333;
  font-weight: 600;
}

.clr-primary {
  color: var(--clr-primary);
}
.clr-accent {
  color: var(--clr-accent);
}
.clr-offset {
  color: var(--clr-offset);
}
.clr-green {
  color: #59ce8f;
}
.clr-gray {
  color: var(--clr-gray-900);
}
.clr-red {
  color: #d4094d;
}
.bg-green {
  background-color: #59ce8f;
}
.bg-gray {
  background-color: var(--clr-gray-900);
}
.bg-red {
  background-color: #d4094d;
}

.wrapper {
  width: 100%;
  display: flex;
  gap: 2rem;
}

.wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.wrapper-img {
  width: 50%;
  height: 30rem;
  border-radius: var(--radius-400);
  overflow: hidden;
  box-shadow: rgba(41, 108, 243, 0.089) 0px 7px 29px 0px;
}
.wrapper-img.wide {
  width: 100%;
  height: 50rem;
}
.wrapper-img.wide img {
  object-position: center;
}

.wrapper-img img {
  object-position: top;
}

.wrapper-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  padding: 1rem;
}

.wrapper-content h2 {
  font-size: 2.5rem;
  color: var(--clr-primary);
}

.wrapper-content.wide {
  width: 100%;
}

.wrapper-wide {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
}

.wrapper-wide:nth-child(odd) {
  flex-direction: row-reverse;
}

.wrapper-wide .wrapper-img {
  border-radius: unset;
}

.wrapper-wide .wrapper-content {
  padding: 3rem;
}

body {
  height: 100vh;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  /* font-weight: 500; */
  overflow-x: hidden;
  background-color: white;
}

section {
  width: 100%;
  margin: 0rem auto;
  min-height: 40vh;
  display: flex;
  align-items: center;
 
  padding: 1rem 4rem;
}

nav {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 998;
  transition: all 300ms ease-in-out;
  position: fixed;
  left: 0;
  top: 0;
  background-color: white;
}

nav .bottom-header {
  width: 100%;
  height: 3rem;
  bottom: 0;
  display: flex;
  align-items: center;
  transform: translateY(100%);
  background-color: var(--clr-primary-lighter);
  padding: 0 2rem;
  left: 0;
  position: absolute;
  font-size: 1.7rem;
  color: var(--clr-primary);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  gap: 1rem;
  justify-content: center;
}

nav .bottom-header a {
  text-decoration: underline;
}

nav .left {
  display: flex;
  align-items: center;
  gap: 3rem;
}
nav.flow {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

nav .logo-container {
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--clr-primary);
  position: relative;
  z-index: 999;
  word-wrap: break-word;
  gap: 1rem;
}

nav .logo {
  width: 10rem;
  height: 100%;
}

nav .logo img {
  object-fit: contain;
}

nav .logo-text {
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-primary);
}

nav .burger {
  width: 4rem;
  height: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  border-radius: var(--radius-200);
  z-index: 999;
  border-radius: var(--radius-half);
  transition: all 300ms ease-in-out;
}

nav .burger span {
  font-size: 2.8rem;
  color: var(--clr-accent);
}

nav.flow .burger {
  animation-name: tada;
  animation-duration: 1s;
}

nav .nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

nav .list-item {
  display: flex;
  align-items: flex-end;
  position: relative;
  cursor: pointer;
}

nav .nav-list .list-link {
  font-size: 1.6rem;
  font-weight: 400;
  height: unset;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: var(--text-clr-gray-500);
  font-family: var(--font-primary);
  padding: 0;
  align-items: center;
}

nav .list-item.special {
  padding: 0.7rem 1rem;
  background-color: #f88527;
  border-radius: var(--radius-200);
  transition: all 300ms ease-in-out;
}

nav .list-item.special .list-link,
nav .list-item.special .list-link:hover {
  color: white;
}

nav .list-item.special:hover {
  background-color: #e65107;
  color: white;
}

nav .list-item.special .list-link,
nav .list-item.special .material-symbols-outlined {
  color: white;
}

nav .list-item .drop-icon {
  height: unset;
  display: flex;

  align-items: flex-end;
}

nav .drop-down {
  position: absolute;
  bottom: 0;
  transform: translateY(calc(100% - 0.6rem));
  width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 998;
  padding: 1rem;
  border-radius: var(--radius-400);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
}

nav .list-item.drop:nth-last-child(1) .drop-down {
  right: 0;
}

nav .drop-down.show {
  transform: translateY(calc(100%));
  opacity: 1;
  visibility: visible;
}

nav .drop-down a {
  color: var(--text-clr-gray-500);
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 0 1rem;
  border-radius: var(--radius-200);
  border: 0.2rem solid #ffffff;
  transition: all 300ms ease-in-out;
}

nav .drop-down a:hover {
  background-color: #e6f3fb;
  border-color: #cce5f6;
  color: #078ad0;
}

nav .drop-down a.resources {
  border-color: #279eff;
  color: #279eff;
}
nav .drop-down a.resources:hover {
  background-color: #279eff;
  color: #ffffff;
}
nav .drop-down a.logout {
  background-color: #ff004d;
  color: #ffffff;
}
nav .drop-down a.logout:hover {
  background-color: #de0647;
}

nav .nav-list .list-link:hover,
nav .nav-list .list-link.active {
  color: var(--clr-primary);
}

section.welcome {
  width: 100%;
  min-height: calc(100vh - 9rem);
  margin-top: 9rem;
  display: flex;
  align-items: center;
  padding: 0;
}

section.welcome .hero-img-carousel {
  width: 100%;
}

section.welcome .hero-img-carousel .img-container {
  position: relative;
  min-width: 100%;
  height: calc(100vh - 9rem);
}

section.welcome .hero-img-carousel .img-container .img {
  min-width: 100%;
  height: calc(100vh - 9rem);
}

section.welcome .hero-img-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

section.welcome .hero-img-carousel .img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.671);
  font-size: 2rem;
}
section.welcome .hero-img-carousel .intro-text {
  position: absolute;
  top: 0%;
  left: 0rem;
  padding: 4rem;
  min-width: 100%;
  height: 100%;
  color: white;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.671),
    rgba(0, 0, 0, 0)
  );
  font-size: 2rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.welcome .hero-img-carousel .intro-text h1 {
  color: white;
  width: 50%;
}

section.about-section .wrapper:nth-child(2) .wrapper-img {
  background-color: var(--clr-gray-100);
}

section.about-section .wrapper:nth-child(2) .wrapper-img img {
  object-fit: contain;
}

/* EVENT CONTAINER */
.event-container {
  width: 100%;
  height: 4rem;
  background-color: crimson;
  position: absolute;
  top: 6rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
}

.event-container .event {
  background-color: rgb(250, 42, 84);
  height: 100%;
  padding: 0.5rem;
}

/* notification */
.notification {
  width: 20%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0%;
  background-color: rgba(15, 149, 182, 0.753);
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.notification-content {
  font-size: 2rem;
  color: white;
}

.notification-links {
  width: 100%;
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.notification-links a {
  width: 70%;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  color: var(--clr-primary);
  border-radius: 0.5rem;
  transition: all 400ms ease-in-out;
}

.notification-links a:hover {
  background-color: var(--clr-primary);
  color: #1b9aaa;
}

.notification-open {
  transform: translateX(0);
  opacity: 1;
}

/* THE ABOUT SECTION */
.about-section {
  width: 100%;
  padding: 0rem 5rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section-content {
  display: flex;
  justify-content: space-around;
}

.about-text-content {
  width: 55%;
  height: 100%;
  line-height: 3rem;
  padding: 2rem;
  transform: translateY(9rem);
  opacity: 0;
  transition: all 600ms ease-in-out;
  position: relative;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 1rem;
}

.about-section-content img {
  width: 40%;
  height: 100%;
  margin-left: 10px;
  object-fit: cover;
}

/* GOALS */

section.goals {
  flex-direction: column;
  gap: 2rem;
}

.values {
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: center;
  transition: all 700ms ease-in-out;
}

.value {
  width: 25rem;
  height: 30rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0.2rem solid var(--clr-gray-300);
  padding: 1rem;
  border-radius: var(--radius-400);
}

.value p {
  font-size: 1.5rem;
}

.value .value-img {
  width: 16rem;
  height: 16rem;
}

.value .value-img img {
  object-fit: contain;
}

/* ACCREDITIONS section */
.accreditions-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accreditions-section h1 {
  margin: 1rem 0;
}

.accreditions-image-container {
  width: 80%;
  height: 70%;
}

.accreditions-image-container .img {
  width: 20rem;
  height: 24rem;
}

.accreditions-image-container .img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditions-image-container .img img {
  object-fit: contain;
  width: 80%;
  height: 90%;
}

.accreditions-image-container .owl-carousel {
  height: 100%;
}

.accreditions-image-container .owl-carousel img {
  width: 22rem;
  height: 20rem;
  object-position: center;
}

/* COURSES SECTION */
.courses {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  margin-bottom: 50px;
  position: relative;
}

.see-more-btn {
  min-width: 10rem;
  height: 3rem;
  padding: 0.6rem 1.2rem;
  background-color: crimson;
  position: absolute;
  right: 10%;
  bottom: 0%;
  text-align: center;
  color: white;
}

.see-more-btn:hover {
  background-color: rgb(252, 27, 72);
}

.courses .content-container {
  justify-content: center;
}

.courses-text-content {
  width: 90%;
  height: 40%;
  padding: 2rem;
  margin-bottom: 1rem;
}

.courses-text-content h2 {
  text-align: center;
  font-size: 2rem;
  color: crimson;
}

.cards {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;

  transition: 700ms all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card {
  height: 25rem;
  background-color: rgb(248, 244, 244);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 0.6rem;
  transition: all 300ms ease-in;
}

.card:hover {
  transform: scale(1.1);
}

.card img {
  width: 100%;
  height: 60%;
}

.card-text-content {
  font-size: 1.4rem;
  padding: 0.5rem;
  color: var(--text-clr-gray-500);
}

.appear-horizontal {
  transform: translateX(0);
  opacity: 1;
}

.appear {
  opacity: 1;
  transform: translateY(0);
}

footer {
  height: '80%';
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: var(--clr-primary);
}

footer h2 {
  color: rgba(255, 255, 255, 0.842);
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 2%;
  text-align: left;
}

.main-footer-content {
  width: '100%';
  height: 80%;
  display: flex;
  justify-content: space-evenly;
  padding: 2rem;

  position: relative;
}

.main-footer-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-footer-content div {
  border-radius: 1rem;
  margin-left: 5rem;
  padding: 2rem;
  z-index: 1;
  flex: 1;
}

.location {
  text-align: center;
}

.location h2 {
  color: white;
  font-weight: 500;
}

.location p {
  color: white;
}

.location a {
  color: white;
  display: block;
  text-align: left;
  width: fit-content;
  margin: 1rem;
  padding: 0.5rem;
  transition: all 300ms ease-in-out;
  text-decoration: underline;
}

.location a:hover {
  color: #111;
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 1%;
  align-items: center;
  text-align: left;

}
.location {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  align-items: center;
  text-align: left;

}
.footer-links h2 {
  color: white;
  font-weight: 500;
  margin-bottom: 2rem;
}

.footer-link {
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 0.5rem;
}

.footer-link:hover {
  background-color: var(--clr-primary-dark);
  color: white;
  transition: all 400ms ease-in-out;
}

.social-links {
  text-align: center;
  width: 20%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.socialmedia{
  display: flex;
  flex-direction: row;
  
}

.social-links h2 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 500;
}

.social-links a {
  margin-left: 2rem;
}

.social-links a i {
  font-size: 3rem;
  color: white;
}

.copyright {
  height: 20%;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.copyright > * {
  z-index: 1;
  color: white;
}

.developer-contact {
  color: orange;
}

.developer-contact a {
  padding: 0.5rem;
  color: rgb(58, 150, 255);
  transition: all 300ms ease;
}

.developer-contact a:hover {
  background-color: rgb(58, 150, 255);
  color: orange;
}

.copyright::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-primary);
}

@media (max-width: 1000px) {
  h1 {
    width: 70%;
    margin: 1rem 0 1rem 0;
    font-size: 2.2rem;
  }

  .navigation {
    height: 5rem;
  }

  .event-container {
    top: 5rem;
  }

  .welcome {
    height: 100%;
  }

  .welcome-text-content {
    font-size: 2.5rem;
    width: 90%;
    text-align: center;
    color: white;
  }

  .intro-text {
    font-size: 3rem;
  }

  .motto {
    font-size: 1.4rem;
  }

  .link-container {
    position: absolute;
    width: 100%;
    left: 0%;
    height: 80vh;
    top: 5rem;
    background-color: rgba(19, 122, 218, 0.986);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translate(70%, -115%);
    border-radius: 80%;
    opacity: 0;
    transition: all 300ms ease-in-out;
  }

  .open {
    transform: translate(0%);
    opacity: 1;
    border-radius: 0%;
  }

  .link {
    padding: 0.8rem 1.6rem;
    width: 15rem;
    opacity: 0;
    margin: 0.8rem;
    transform: translateX(-3rem);
    transition: 400ms all 300ms ease;
    color: rgb(217, 220, 20);
  }

  .link-open {
    opacity: 1;
    transform: translateX(0);
  }

  .burger {
    display: flex;
  }

  .event-container .event {
    font-size: 1.4rem;
  }

  .notification {
    height: 10%;
    width: 100%;
    flex-direction: row;
  }

  .notification-content {
    width: 40%;
    font-size: 1.4rem;
  }

  .notification-links {
    height: fit-content;
    width: 70%;
    align-items: flex-start;
  }

  .notification-links a {
    width: fit-content;
    margin-top: 0.2rem;
    margin-left: 2rem;
    padding: 0.3rem 0.6rem;
  }

  .about-section {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .about-section-content {
    width: 100%;
    flex-direction: column-reverse;
    padding: 0;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .about-section-content img {
    height: 40%;
    width: 100%;
    margin: 0.5rem;
    object-fit: cover;
    object-position: center;
  }

  .about-text-content {
    width: 100%;
    min-height: fit-content;
    font-size: 1.5rem;
    /* padding: rem; */
  }

  .goals-text-content {
    width: 100%;
  }

  .goals {
    padding: 1rem;
  }

  .content-container {
    flex-direction: column;
  }

  .values {
    width: 100%;
  }

  .value {
    transform: scale(0.8);
  }

  .accreditions-section {
    height: fit-content;
    justify-content: center;
  }

  .accreditions-image-container .owl-carousel img {
    width: 100%;
  }

  .accreditions-section h1 {
    margin: 1rem 0rem;
  }

  .courses {
    padding: 1rem;
    min-height: 110%;
  }

  .courses-text-content {
    width: 100%;
  }

  .courses-text-content h2 {
    margin: 1.5rem 0;
  }

  .cards {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }

  .card {
    transform: scale(0.9);
  }

  footer {
    height: fit-content;
  }

  .main-footer-content {
    height: fit-content;
    flex-direction: column;
    padding: 0rem;
  }

  .main-footer-content div {
    width: 90%;
    height: fit-content;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .location p {
    font-size: 1.5rem;
  }

  .footer-link {
    transform: scale(0.9);
    margin-bottom: 0.4rem;
  }

  .copyright {
    min-height: 20vh;
    margin-top: auto;
    font-size: 1.4rem;
  }
}


@media (max-width: 950px) {
  nav .burger {
    display: flex;
  }

  nav .nav-list {
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    background-color: white;
    transform: translateX(-100%);
    transition: all 300ms ease-in-out;
    z-index: 998;
    align-items: flex-start;
    padding: 2rem;
  }

  nav .nav-list.open {
    transform: translateX(0);
  }

  nav .list-item {
    height: unset;
  }

  nav .nav-list .list-link {
    height: unset;
    color: var(--clr-primary);
    transform: translateY(-0.5rem);
    transition: 300ms all 300ms ease-in-out;
    opacity: 0;
  }

  nav .nav-list.open .list-link {
    transform: translateY(0);
    opacity: 1;
  }

  nav .logo-text {
    font-size: 1.7rem;
  }

  section.welcome .hero-img-carousel .intro-text {
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.671),
      rgba(0, 0, 0, 0.671)
    );
    align-items: center;
    text-align: center;
  }

  section.welcome .hero-img-carousel .intro-text h1 {
    width: 100%;
  }

  section.welcome .hero-img-carousel .img-caption {
    bottom: 6rem;
    left: 50%;
    padding: 1rem;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.671);
    font-size: 2rem;
  }

  .wrapper {
    flex-direction: column;
  }

  .wrapper:nth-child(even) {
    flex-direction: column;
  }

  .wrapper-img {
    width: 100%;
  }

  .wrapper-content {
    width: 100%;
  }

  .values {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  section.goals {
    gap: 1rem;
  }

  .main-footer-content div {
    padding: 0;
    margin-top: 0;
  }

  .location{
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
  }
  .location a {
    margin: 10;
    text-align: center;
  }

  .footer-link {
    margin-bottom: 0;
  }

  .goals {
    padding: 0;
  }

  .value {
    width: 80%;
  }

  .values {
    gap: 0rem;
  }

  .value {
    height: 25rem;
  }

  nav .nav-list {
    width: 100%;
  }

  section.welcome {
    min-height: calc(100vh);
    margin-top: 0;
  }

  section.welcome .hero-img-carousel .img-container {
    height: calc(100vh);
  }

  section.welcome .hero-img-carousel .img-container .img {
    height: calc(100vh);
  }
}
