html,
body {
  margin: 0;
  height: 100%;
  font-weight: 400;
}

a {
  color: black;
}

h1,
h2 {
  text-align: center;
}

h1 {
  width: 80%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem;
  z-index: 10;
  background-color: rgba(51, 51, 51, 1);
}

nav a {
  color: white;
  display: block;
  text-decoration: none;
}

nav a:hover {
  color: var(--magenta);
  text-decoration: none;
}

nav a.langlink {
  color: white;
  display: inline-block;
  text-decoration: none;
}

nav a.langlink.active {
  color: rgba(255,255,255,0.3);
}

nav span{
  display: block;
  width: 100%;
  color: white;
  margin: 0.2rem 0;
  border-bottom: 2px solid white;
}

nav .eulogo {
  margin-top: 1rem;
}
nav .eulogo img {
  width: 6rem;
  height: auto;
}

#vLogo {
  position: fixed;
  top: 0;
  left: 9rem;
  z-index: 10;
}

#vLogo img {
  height: 90px;
  width: auto;
}

.full-screen {
  display: block;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#content-st {
  overflow: hidden;
}

#intro,
.d-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#intro p,
.sectionIntro {
  width: 60%;
}

.imgTitle {
    align-self: start;
    margin-left: 15%;
}

.imgTitle p {
    margin: 0.5rem 0 ;
}

.imgTitle span {
  font-style: italic;
  margin-right: 0.5rem;
}

.container-wrapper {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0;
  overflow: hidden;
  background-color: rgba(238, 240, 242,1);
}

.container-wrapper .panel {
  position: relative;
  width: 100%;
  height: calc(100vh - 3px);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  text-align: left;
  border-right: 3px solid #f00;
  border-bottom: 3px solid var(--catGridBg);
  animation: pulse-right 1s ease-in-out infinite;
}

#haiti-6,
#lebanon-6,
#uganda-6,
#ecuador-6 {
  border-right: 0px none;
  border-bottom: 3px solid #f00;
  animation: pulse-bottom 1s ease-in-out infinite;
}

#bangladesh-6 {
  border-right: 0px none;
}

@keyframes pulse-right {
  0% {
    border-right-color: red;
  }
  100% {
    border-right-color: var(--catGridBg);
  }
}

@keyframes pulse-bottom {
  0% {
    border-bottom-color: red;
  }
  100% {
    border-bottom-color: var(--catGridBg);
  }
}

.container-wrapper .panel img {
  max-width: 70%;
  margin: 0 auto;
  height: auto;
  display: block;
}

.container-wrapper .panels-navigation {
  position: absolute;
  width: 80%;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "minus next plus";
}
.container-wrapper .panel .nav-panel {
  color: #000;
  text-transform: uppercase;
}

.container-wrapper .panel .nav-panel.plus {
  grid-area: plus;
  justify-self: end;
}

.container-wrapper .panel .nav-panel.minus {
  grid-area: minus;
  justify-self: start;
}

.container-wrapper .panel .nav-panel.next {
  grid-area: next;
  justify-self: center;
}


.container {
  margin: 3rem;
  display: flex;
}