:root {
  --primary: #00649F;
  --bg-primary: #005596;
  --alt-color: #ffce00;
  --border-color: #dddcdc;
  --body-color: #48484A;
  --font: "DIN 2014";
  --font-bold: "DIN 2014 Bold";
  --font-semi-bold: "DIN 2014 Demi";
}

.font-bold {
  font-family: var(--font-bold);
}

.font-semi-bold {
  font-family: var(--font-semi-bold);
}

.cursor-pointer {
  cursor: pointer;
}

.lh-1 {
  line-height: 1;
}

.lh-1_2 {
  line-height: 1.2;
}

.lh-1_5 {
  line-height: 1.5;
}

.flex-m {
  align-items: center;
  display: flex !important;
  justify-content: flex-start;
}

.flex-ms {
  justify-content: space-between;
  align-items: center;
  display: flex !important;
}

.flex-cc {
  align-items: center;
  display: flex !important;
  justify-content: center;
}

.border-bottom-p {
  border-bottom: solid 1px #eff2f7;
  padding: 2px 1px;
}

.border-bottom-p.bbpnp {
  border-bottom: none;
}

.border-bottom {
  border-bottom: solid 1px #ddd;
}

.bordered-p {
  border-bottom: solid 1px #ddd;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.btn {
  background-color: var(--alt-color);
  border-radius: 4px;
  color: var(--body-color);
  font-family: var(--font-bold);
  font-size: 16px;
}

.btn:hover {
  background-color: var(--body-color);
  color: #fff;
}

.btn-lg {
  height: 58px;
  font-size: 14px;
  padding-left: 30px;
  padding-right: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.h1-lg {
  font-size: 65px;
  font-family: var(--font-bold);
  margin-bottom: 25px;
}

.title-sub {
  color: #000;
  font-family: var(--font-semi-bold);
  border-bottom: solid 1px #ddd;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

body,
html {
  height: 100%;
  width: 100%;
  background-color: #fff;
  font-family: var(--font);
  font-size: 16px;
  color: var(--body-color);
}

header {
  width: 100%;
}

header .header-container {
  height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.logo img {
  height: 100%;
  padding: 20px 0;
}

.menu-container {
  display: flex;
  align-items: center;
}

.menu {
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline;
  list-style: none;
  margin: 0 10px;
}

.menu li a {
  background-color: var(--bg-primary);
  color: #fff;
  font-size: 15px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
}

.menu li.f-students a {
  background-color: var(--alt-color);
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: var(--body-color);
  font-family: var(--font-bold);
}

.menu li.menu-ask a span {
  color: var(--alt-color);
  font-family: var(--font-semi-bold);
}

.menu li a:hover {
  background-color: var(--body-color);
  color: #fff;
}

.image-box {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.image-box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.image-box-100 img {
  width: 100%;
}


.banner-container {
  height: 600px;
  width: 100%;
  background-color: #f9f9f9;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 10px;
}

.banner-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  max-height: 600px;
}

.banner-container .slideshow-image-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 50%;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(0, 85, 150, 0.85);
}

.front-container h1 {
  font-size: 24px;
  color: #ffffff;
}


.news-container {
  height: 300px;
  position: relative;
}

.news-container .nc-textbox {
  position: absolute;
  bottom: 0;
  background-color: #00000081;
  color: #fff;
  font-family: var(--font-semi-bold);
  z-index: 1;
  width: 100%;
  padding: 7px 15px;
}


.footer {
  margin-top: 95px;
  padding-top: 35px;
  padding-bottom: 36px;
  border-top: 1px solid #E5E5E5;
  background-color: #58585B;
  color: #ffffff;
}

footer .footer-shield {
  width: 80px;
  margin-top: -85px;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-container {
  margin-top: 2em;
  margin-bottom: 2em;
}

footer .footer-logo {
  width: 187px;
}

.footer-links {
  padding: 0;
  margin: 0;
}

.footer-links li {
  list-style: none;
}

.footer-links li a {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}

.footer-links li a:hover {
  color: var(--alt-color);
}

.uw-side-padding {
  padding-left: 147.2px;
  padding-right: 147.2px;
}

.slideshow-image-title h2 {
  margin: 0;
  padding: 0.5em 0;
}

.slideshow-image-title h2 span {
  font-family: var(--font-bold);
  font-size: 2.5em;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 0.8em;
  text-transform: uppercase;
  display: inline;
  position: relative;
  color: #ffffff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border: none;
  -webkit-border-radius: 1px;
  border-radius: 1px;
}

.slideshow-image-title .h3-container h3 {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3em;
  letter-spacing: -1px;
}

.banner-container-2 {
  /* width: 100%;
  height: 350px;
  overflow: hidden; */
  width: 100%;
  height: 350px;
  display: block;
  overflow: hidden;
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  background-image: url(/images/banner-3.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1540px auto;
}

.card-outline {
  border: solid 1px #dddddd;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
}


.banner-container-4 {
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  background-image: url(/images/banner-4.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1540px auto;
  background-size: cover;
  color: #fff;
  padding: 5em 20em;
  flex-direction: column;
}

.banner-container-4 h1 {
  font-size: 70px;
  font-family: var(--font-bold);
  color: #fff;
}

.banner-container-4 input {
  width: 100%;
  height: 58px;
  font-size: 14px;
  border: none;
}

.block-1 {
  background-color: var(--bg-primary);
  height: 80px;
  margin-bottom: 15px;
  color: #fff;
  /* font-family: var(--font-semi-bold); */
  padding: 0 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.block-1:hover {
  background-color: var(--alt-color);
  color: var(--body-color);
}

.text-body {
  color: var(--body-color);
}


.banner-container-5 {
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  background-image: url(/images/banner-5.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1540px auto;
  background-size: cover;
  color: #fff;
  padding: 5em 20em;
  flex-direction: column;
}


.block-bg {
  background-image: url(/images/shield-lg.webp);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.05;
  mix-blend-mode: luminosity;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.box-1 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 430px;
  position: relative;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 15px;
}

.box-1 img {
  width: 130%;
}

.box-1 .b1-layer {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF00 0%, #000000EE 100%);
  opacity: 1;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 20px;
}

.box-1 .b1-content{
  font-family: var(--font-bold);
  font-weight: bold;
  line-height: 1;
}

.box-1 .b1-title{
  font-size: 67px;
  color: var(--alt-color);
}

.box-1 .b1-sub{
  font-size: 25px;
  color: #fff;
}




