@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&display=swap");
* {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 15px;
}

.main-body {
  height: 100vh;
  width: 100%;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.main-body::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100vh;
  width: 100%;
  background-color: rgba(1, 13, 30, 0.8509803922);
}
.main-body header {
  position: relative;
  width: 100%;
  background: #2364ad;
}
.main-body header .left {
  display: flex;
  padding: 2px 0px;
  align-items: center;
}
.main-body header .left img {
  width: 90px;
}
@media screen and (max-width: 480px) {
  .main-body header .left img {
    width: 50px;
  }
}
.main-body header .left .text {
  color: #fff;
  row-gap: 4px;
  display: grid;
  border-left: 1px solid #ccc;
  padding-left: 12px;
}
.main-body header .left .text h5 {
  font-size: 33px;
  text-transform: uppercase;
  margin: 0px;
}
@media screen and (max-width: 480px) {
  .main-body header .left .text h5 {
    font-size: 20px;
  }
}
.main-body header .left .text h5 span {
  font-weight: 800;
}
.main-body header .left .text p {
  margin: 0px;
  letter-spacing: 1px;
}
@media screen and (max-width: 480px) {
  .main-body header .left .text p {
    font-size: 12px;
  }
}
.main-body header .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .main-body header .right {
    display: none;
  }
}
.main-body header .right img {
  width: 60px;
}
.main-body header .right a i {
  color: #FFF;
  font-size: 30px;
}
.main-body .middle-body {
  position: relative;
  height: auto;
  max-height: calc(100vh - 123px);
  padding: 70px 0px;
}
@media screen and (max-width: 480px) {
  .main-body .middle-body {
    padding: 24px 0px;
    max-height: calc(100vh - 90px);
    overflow: scroll;
  }
}
.main-body .middle-body .link-box {
  background: rgba(35, 100, 173, 0.2588235294);
  text-align: center;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0px 0px 18px 0px #1e1111;
  transition: 0.5s;
}
@media screen and (max-width: 480px) {
  .main-body .middle-body .link-box {
    padding: 20px;
    margin-bottom: 19px;
  }
}
.main-body .middle-body .link-box h5 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .main-body .middle-body .link-box h5 {
    font-size: 22px;
    padding-top: 10px;
  }
}
.main-body .middle-body .link-box a {
  display: block;
  text-decoration: none;
  background-color: darkcyan;
  padding: 20px;
  border-radius: 7px;
  transition: 1s;
}
.main-body .middle-body .link-box a:hover {
  background: linear-gradient(0deg, #026b8b 0%, #001834 100%);
  transition: 1s;
}
.main-body .middle-body .link-box a img {
  width: 70px;
  transition: 0.5;
}
.main-body .middle-body .link-box a p {
  margin: 0px;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-body .middle-body .link-box a p i {
  font-size: 11px;
  margin-left: 8px;
}
.main-body .middle-body .left {
  background: rgba(25, 135, 84, 0.4784313725);
}
.main-body .middle-body .right {
  background: rgba(29, 155, 203, 0.3098039216);
}
.main-body footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background: #2364ad;
}
.main-body footer p {
  margin: 0px;
  color: #fff;
  text-align: center;
  padding: 7px;
  font-size: 12px;
  letter-spacing: 0.5px;
}/*# sourceMappingURL=style.css.map */