section#TotalImageSlider {
  position: relative;
}

Section#TotalImageSlider a {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

Section#TotalImageSlider a img#SlideShow {
  border-radius: 14px;
  width: 100%;
  height: max(33vw, 256px);
  display: block;
}

@keyframes Image3n1 {
  from {
    opacity: 0;
    filter: blur(22px);
  }

  to {
    opacity: 1;
    filter: none;
  }
}

@keyframes Image3n2 {
  from {
    scale: 0.88;
    filter: sepia(100%);
  }

  to {
    scale: 1;
    filter: none;
  }
}

@keyframes Image3n3 {
  from {
    scale: 0.88;
    transform: rotate(-6deg);
    filter: hue-rotate(90deg);
  }

  to {
    scale: 1;
    transform: none;
    filter: none;
  }
}

div#Progress {
  height: 4px;
  width: 0px;
  background: whitesmoke;
}

@keyframes Progress {
  from {
    width: 0vw;
  }

  to {
    width: 100vw;
  }
}

Section#TotalImageSlider button {
  width: 4%;
  height: 12%;
  opacity: 0.33;
  background-color: royalblue;
  position: absolute;
  top: calc(44%);
  pointer-events: all;
  z-index: 2;
}

.nextImageSlider {
  right: 0;
}

.previousImageSlider {
  left: 0;
}

#ImageSliderDots {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  cursor: pointer;
}

#ImageSliderDots span {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid orange;
  border-radius: 50%;
  scale: 0.66;
}

#ImageSliderDots span.Active {
  background-color: gold;
}

section#MainlLink {
  background-color: #2c5e91;
  border-radius: 4px;
  border-left: 2px solid blueviolet;
  border-right: 2px solid blueviolet;
  justify-content: space-around;
  margin-top: 2px;
}

section#MainlLink > a {
  display: block;
  text-decoration: none;
  height: auto;
  text-align: center;
  width: 20%;
  cursor: pointer;
  line-height: 66px;
  transition: all 0.3s;
  position: relative;
  color: whitesmoke;
  font-weight: bold;
  font-size: 22px;
}

section#MainlLink > a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: yellow;
  border-bottom-color: yellow;
  border-radius: 4px;
  transform: scale(0.1, 1);
}

section#MainlLink > a:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

section#MainlLink > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.2);
}

section#MainlLink > a:hover::after {
  opacity: 0;
  transform: scale(0.1, 1);
}

section#MainlLink > a span {
  position: absolute;
  font-size: 12px;
  line-height: normal;
  top: 2%;
  right: 2%;
  color: rgb(252, 108, 6);
}

section#RegisterLinks {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.22);
  border-radius: 6%;
  justify-content: space-around;
}

section#RegisterLinks > a {
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 160%;
  background-color: #2c5e91;
  color: whitesmoke;
  border: 1px solid blueviolet;
  border-radius: 44px 5px;
  transition: all 0.7s;
}

section#RegisterLinks > a:hover {
  background-color: darkcyan;
  box-shadow: 0 0 33px #e7cbe1;
}

section#Carousels {
  width: 100%;
  overflow: hidden;
}

section#Carousels div {
  justify-content: space-around;
  width: 200vw;
  animation: 14s linear 0s slide infinite alternate;
  background-color: rgba(250, 235, 215, 0.14);
}

section#Carousels div:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  92%,
  100% {
    transform: translateX(100vw);
  }
}

section#Carousels div a {
  border-radius: 14px;
  overflow: hidden;
  display: block;
}

section#Carousels div a img {
  display: block;
  aspect-ratio: 1/1;
  width: min(20vw, 200px);
  filter: invert(33%) sepia(12%) saturate(2849%) hue-rotate(169deg) brightness(92%) contrast(86%);
  transition: all 0.1s;
  transform: skew(0.04turn);
  border: 1px blue solid;
}

section#Carousels div a img:hover {
  transform: rotate(4deg);
  filter: invert(27%) sepia(16%) saturate(2032%) hue-rotate(263deg) brightness(93%) contrast(95%);
}

table#MainNews {
  background-color: #dbdbdb;
  width: 100%;
}

table#MainNews thead th {
  text-align: center;
  font-size: xx-large;
  color: #0a9b88;
  border-bottom: 2px dotted green;
}

table#MainNews thead th i {
  animation: tilt-shaking 4s linear 0s infinite;
  color: goldenrod;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }

  5% {
    transform: rotate(5deg);
  }

  10% {
    transform: rotate(0eg);
  }

  15% {
    transform: rotate(-5deg);
  }

  20% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }
}

@keyframes tilt-shaking2 {
  10% {
    transform: translateX(1px);
    scale: 0.98;
    transform: rotate(-0.44deg);
    filter: hue-rotate(44deg);
  }
  20% {
    transform: translateY(1px);
  }
  30% {
    transform: translateX(-2px);
  }
  40% {
    transform: translateY(-2px);
  }
  50% {
    transform: translate(1px, 1px);
  }
  60% {
    transform: translate(-1px, -1px);
    transform: rotate(+.44deg);
    filter: none;
  }
  70% {
    transform: translateX(-1px);
  }
  80% {
    transform: translateY(-1px);
  }
}

@keyframes delay-animation {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

table#MainNews tr a {
  text-decoration: none;
  display: block;
  text-indent: 4px;
  border-bottom: 1px double rgb(139, 123, 209);
}

table#MainNews tr a div:hover {
  background-color: rgb(139, 188, 189);
}

table#MainNews tbody tr div {
  color: rgb(58, 30, 182);
  font-size: large;
}

table#MainNews tbody tr div > div {
  color: rgb(247, 5, 5);
  font-size: small;
}

table#MainNews tbody tr div > div::before {
  content: "\F783";
}

section#Calender {
  background-color: rgba(255, 255, 255, 0.22);
  justify-content: space-around;
}

section#Calender div {
  justify-content: space-around;
  width: 44%;
  margin: 4px auto;
  position: relative;
}

section#Calender div img {
  position: absolute;
  top: 0;
  opacity: 0.66;
  border-radius: 14px;
  height: 66px;
  width: 66px;
}

section#Calender div img#Educational_Calendar_Image {
  left: 0;
}

section#Calender div img#Defense_Meetings_Image {
  right: 0;
}

section#Calender a {
  justify-content: center;
  width: 100%;
  height: 90px;
  font-size: 55px;
  font-weight: 800;
  color: #2c5e91;
  text-decoration: none;
  background: radial-gradient(black 3px, transparent 4px), radial-gradient(black 3px, transparent 4px), linear-gradient(#fff 4px, transparent 0), linear-gradient(45deg, transparent 74px, transparent 75px, #a4a4a4 75px, #a4a4a4 76px, transparent 77px, transparent 110px),
    linear-gradient(-45deg, transparent 75px, transparent 76px, #a4a4a4 76px, #a4a4a4 77px, transparent 78px, transparent 110px), #fff;
  background-size: 110px 110px, 110px 110px, 100% 6px, 110px 110px, 110px 110px;
  background-position: 54px 55px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 14px;
  transition: all 1s;
  border-radius: 14px;
}

.Edu:after,
.Edu:before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  border: 0px solid #fff;
  transition: all 2s;
}

.Edu:after {
  top: -1px;
  left: -1px;
  border-top: 4px solid white;
  border-left: 4px solid white;
}

.Edu:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 4px solid white;
  border-right: 4px solid white;
}

.Edu:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.Edu:hover:before,
.Edu:hover:after {
  width: 100%;
  height: 100%;
}

section#Statement {
  margin: 0 4px;
  padding: 14px;
  text-align: justify;
  background-color: #dbdbdb;
  color: #2c5e91;
  border-radius: 14px;
}

section#Statement p {
  font-weight: 600;
}

section#Statement h1,
h2 {
  text-align: center;
  color: #0a9b88;
}

section#Statement h3 {
  color: #2c5e91;
}

section#Statement div#Intro {
  margin: auto;
  border-radius: 66px;
  width: max(66%, 333px);
  overflow: hidden;
}

section#Statement div#Intro video {
  width: 100%;
}

section#Counters {
  color: #2c5e91;
  text-align: center;
}

section#Counters div > div {
  background-color: #fff;
}

section#Counters > div {
  flex: 1 1 0px;
  border-left: 1px solid yellowgreen;
}

section#Counters > div:hover {
  background-color: rgba(0, 255, 128, 0.22);
}

section#Counters > div:last-child {
  border-left: none;
}

section#Counters .counter {
  font-size: 44px;
}

section#Links {
  background-color: #dbdbdb;
  color: #0a9b88;
  border-collapse: collapse;
  box-shadow: rgba(10, 10, 20, 0.4) 6px 6px 6px;
  font-style: normal;
}

section#Links div {
  margin-right: 22px;
  font-size: x-large;
}

section#Links ul {
  list-style: none;
  margin-right: 44px;
}

section#Links ul a {
  color: #2c5e91;
  text-decoration: none;
  transition: all 0.44s;
  font-size: x-large;
}

section#Links ul a:hover {
  color: rgb(204, 0, 255);
}

section#Links ul a span {
  color: rgb(160, 98, 98);
  font-weight: 700;
}

address table {
  width: 100%; 
}

address table thead { 
  text-align: center;
  font-weight: 900;
  font-size: xx-large;
  background-color: #93d3eb;
  animation: AdrressThead 14s infinite;
  position: relative;
  overflow: hidden;
}

@keyframes AdrressThead {
  0%,
  100% {
    color: red;
  }

  50% {
    color: #4516ee;
  }
}

address table tbody {
  background-color: #108fe8;
  font-size: min(2.7vw, 30px);
}

address table tbody tr:hover {
  background-color: #e7cbe1;
  font-weight: 900;
}

address table tbody tr:hover img {
  border-radius: 14%;
  transform: rotate(5deg);
}

address table tbody tr td:first-child {
  background-color: #dbdbdb;
  width: 18%;
  text-align: left;
  padding-left: 4px;
}
address table tbody tr td:last-child {
  text-indent: 1%;
}

address table tbody tr td img {
  height: 44px;
  width: 44px;
  float: right;
  border-radius: 4px;
}

img#LocationAddress {
  background: url(../img/Address[AIO].webp) 0 0;
}

img#Letter {
  background: url(../img/Address[AIO].webp) -44px 0;
}

img#PostalCode {
  background: url(../img/Address[AIO].webp) -88px 0;
}

img#Telephone {
  background: url(../img/Address[AIO].webp) -132px 0;
}

img#Fax {
  background: url(../img/Address[AIO].webp) -176px 0;
}

img#EMail {
  background: url(../img/Address[AIO].webp) -220px 0;
}

section#GoogleMap {
  z-index: 0;
  width: 100%;
  height: max(22vw, 444px);
  border-radius: 14px;
}

@keyframes MoveUp {
  from {
    opacity: 0;
    transform: translateY(114px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 768px) {
  section#MainlLink {
    overflow: hidden;
  }

  section#MainlLink > a {
    white-space: nowrap;
    font-size: 14px;
    transform: rotate(45deg);
  }

  section#MainlLink > a:hover {
    transform: rotate(0deg);
    background-color: rgba(10, 10, 20, 0.14);
    border-radius: 14px;
  }

  section#RegisterLinks {
    flex-direction: column;
  }

  section#RegisterLinks > a {
    width: 88%;
    margin: 1%;
  }

  section#Calender {
    flex-direction: column;
  }

  section#Calender div {
    width: 96%;
  }

  section#Calender div img {
    height: 44px;
    width: 44px;
  }

  section#Counters .counter {
    font-size: 33px;
  }

  section#Links ul a {
    font-size: large;
  }
}
