body {
  margin: 0;
  background: #e8efef;
}

/* HEADER */

.header {
  width: 100vw;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #071d49;
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  grid-template-rows: repeat(1, 1fr); 
  grid-column-gap: 0px;
  grid-row-gap: 0px; 
}

.header-left { grid-area: 1 / 1 / 2 / 2; } 
.header-center { grid-area: 1 / 2 / 2 / 3; } 
.header-right { grid-area: 1 / 3 / 2 / 4; } 

.header-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-header {
  height: 30px;
}

/* HEADER END */
/* LINKS GRID */

.links-grid { 
  display: grid; 
  grid-template-columns: repeat(4, fit-content); 
  grid-template-rows: repeat(3, fit-content); 
  grid-column-gap: 10px;
  grid-row-gap: 10px; 
  padding: 5vh;
  }
  .links-grid-1 { grid-area: 1 / 1 / 2 / 3; } 
  .links-grid-2 { grid-area: 1 / 3 / 2 / 5; } 
  .links-grid-3 { grid-area: 2 / 3 / 3 / 4; } 
  .links-grid-4 { grid-area: 2 / 4 / 3 / 5; } 
  .links-grid-5 { grid-area: 3 / 4 / 4 / 5; } 
  .links-grid-6 { grid-area: 3 / 3 / 4 / 4; } 
  .links-grid-7 { grid-area: 2 / 1 / 4 / 3; }

  .links-grid-style {
    background-color: #071d49;
    border-radius: 10px;
    width: 100%;
    height: 20rem;
  }

/* LINKS END */






.whiteborder {
  width: 100vw;
  height: 100vh;
  background-color: #e8efef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide1 {
  background-color: #071d49;
  height: calc(90vh);
  width: calc(100vw - 10vh);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logoslide1 {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading Icon */

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}