* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

:root {
  --text-black: #000000;
  --brand-blue: #161b7f;
  --button-orange: #f6a729;
  --background-light-gray: #e5e5e5;
  --color-success: rgb(11, 91, 37);
  --text-white: #ffffff;
  --section-gradient: linear-gradient(90deg, var(--brand-blue), #223ccf);
  --color-date: rgb(67, 67, 70);

  --container-width-lg: 80%;
  --container-width-md: 94%;
  --container-width-sd: 95%;

  --border-radius: 10px;
  --border-radius-2: 5px;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  width: 100%;
  background-color: var(--background-light-gray);
  color: var(--text-black);
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}

img {
  width: 100%;
  object-fit: cover;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
  color: var(--brand-blue);
}

h2 {
  color: var(--brand-blue);
  font-size: 2rem;
}

h3 {
  color: var(--brand-blue);
  font-size: 1.4rem;
  font-weight: 500;
}

h4 {
  font-size: 1.3;
  font-weight: 400;
  color: var(--brand-blue);
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: var(--button-orange);
  padding: 1rem 2rem;
  font-size: 1rem;
  width: fit-content;
  border-radius: var(--border-radius);
  cursor: pointer;
  box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.5);
}

.container {
  width: var(--container-width-lg);
  margin: 0 auto;
}

section {
  margin-top: 5rem;
  width: 100%;
}

section h1 {
  margin-bottom: 2rem;
}
section h2 {
  margin-bottom: 3rem;
}

i {
  padding: 0 1vw;
  font-size: 1rem;
}
.executives-container {
  background-color: white;
  padding: 1rem 0.5rem;

  margin-top: 2rem;
}

.src-intro {
  border-bottom: 1px solid rgb(188, 186, 186);
  margin-bottom: 1rem;
}

.src-intro i {
  font-size: 2.2rem;
}

.executives-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;

  background-color: var(--color-success);
  color: var(--text-white);
  border-radius: var(--border-radius);
}
.drop-angles button {
  background-color: transparent;
  color: var(--button-orange);
  cursor: pointer;
  display: block;
  width: 100%;
}

.drop-angles i {
  font-size: 2.5rem;
}

#close-images {
  display: none;
}

.executives-header h1 {
  color: var(--text-white);
  padding: 0 1rem;
}

.executives-header em {
  font-size: 1rem;
}

.executives-profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;

  display: none;
  animation: executivesAnimations 1s ease 0s 1 normal forwards;
}

@keyframes executivesAnimations {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.profiles-card {
  width: 100%;
  height: fit-content;
  background-color: var(--text-white);
  box-shadow: 4px 5px 11px -3px rgba(0, 0, 0, 0.5);

  text-align: center;
}

.executive-image {
  width: 100%;
  height: 20rem;
}

/* =========================================MEDIA QUERY=========================== */
@media (max-width: 480px) {
  .container {
    width: var(--container-width-sd);
  }

  .executives-header h1 {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 820px) {
  .container {
    width: var(--container-width-md);
  }
}

/* Header Image Styles */
.header-img {
  width: 100%;
  height: 30rem;
  position: relative;
  overflow: hidden;
  background-color: black;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.footer-section {
  position: relative;
  top: 35rem;

  width: 100%;
  height: fit-content;
  padding-top: 2rem;
  background-image: var(--section-gradient);
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  place-content: center;
  gap: 2rem;
}

.footer-section a {
  color: var(--text-white);
  display: inline-block;
}

.footer-section h1 {
  color: var(--button-orange);
  font-size: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.footer-section a i {
  color: var(--button-orange);
  font-size: 2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li::before {
  content: '\2022';
  color: var(--button-orange);
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

.footer-connect-us i {
  font-size: 2.5rem;
  color: var(--button-orange);
}

/* ==================================copyright================================ */
footer {
  position: fixed;
  bottom: 0;
  background-color: var(--brand-blue);
  width: 100%;
  color: var(--text-white);
  height: 3rem;
  display: grid;
  place-content: center;
}
