*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.agent-orange-info {
  display: flex;
  flex-direction: row;
  justify-content: center;

  width: 50%;
  height: 100%;

  border-radius: 4px;
}

.box {
  border-radius: 4px;
  display: flex;
}

.box img {
  width: fit-content;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.container {
  background-color: aquamarine;
}
/* 
.big-container {
  border-style: solid;
  border: 5px solid darkblue;
  height: 100%;
  background-color: aquamarine;
  background-position: right top;
  text-align: center;
} */

h2 {
  color: blue;
}

h4 {
  color: blue;
  text-align: center;
}

/* 
.flexbox-container {
  max-width: 1170px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin: 0, auto;
  background-size: cover;
} */

.flex-container h1 {
  font-size: 2.5rem;
  color: rgb(0, 75, 251);
  padding: 2rem;
  text-align: center;
  border-top: 5px solid #1900ff;
}

.flex-container h3 {
  font-size: 1.5rem;
  color: rgb(0, 75, 251);
  padding: 2rem 0rem 0rem 0rem;
  text-align: center;
}

.last-line {
  padding: 0rem 0rem 5rem 0rem;
}

.flex-container asign h3 {
  font-size: 1.5rem;
  color: rgb(0, 75, 251);
  padding: 5rem 0rem 0rem 0rem;
  text-align: center;
}

.flex-container p {
  font-size: 1.5rem;
  color: #2e00fb;
  line-height: 1.5;
  text-align: center;
}

.flex-item {
  flex-basis: 30%;
}

.flex-item h1 {
  color: rgb(47, 0, 255);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  align-items: flex-end;
}

.flex-item a {
  text-decoration: none;
  color: #eee;
  font-size: 0.9rem;
}

.flex-item a:hover {
  color: #fbbc43;
}

.flexbox-item {
  min-height: 100%;
  width: fit-content;
  margin: 10px;
  border: 3px solid #333;
  background-color: #dfdfdf;
}

.flashing-heading {
  animation: flasher 2s linear infinite;
}

.flashing-heading2 {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  75% {
    opacity: 0;
  }
}

@keyframes flasher {
  0% {
    color: red;
    opacity: 1;
  }
  50% {
    color: gold;
    opacity: 1;
  }
}

/* @keyframes flasher {
  0%,
  50% {
    color: red;
    opacity: 1;
  }
  25%,
  75% {
    color: gold;
    opacity: 0;
  }
} */
