/*
  @MEDIA Mixins
 */
body,
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
*,
*:after,
*:before {
  box-sizing: inherit;
}
a,
a:active,
a:hover,
a:visited {
  color: inherit;
  text-decoration: inherit;
}
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
}
.page main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
}
.page .main_container {
  max-width: 960px;
  width: 90%;
}
.page .address_bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f4f4f4;
  height: 36px;
}
.page .header_content {
  max-width: 1200px;
  width: 100%;
  display: flex;
}
.page nav {
  flex: 1 1 auto;
}
.page header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}
.page footer {
  width: 100%;
  background: #103a56;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.page footer hr {
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin: 10px 0;
  display: block;
  border: none;
}
.page .footer_content {
  width: 90%;
  max-width: 960px;
  display: flex;
}
.page .footer_content .opening {
  flex: 1;
}
.page .footer_content .opening h1,
.page .footer_content .opening h2,
.page .footer_content .opening h3,
.page .footer_content .opening h4,
.page .footer_content .opening h5,
.page .footer_content .opening h6 {
  font-size: 25px;
  font-weight: 400;
  margin: 10px 0;
}
.page .footer_content .opening p {
  font-size: 14px;
  margin: 20px 0;
}
.page .footer_links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.page .footer_links li {
  font-size: 14px;
  margin: 10px 0;
}
.page .footer_from {
  max-width: 960px;
  width: 90%;
  font-size: 12px;
}
.page nav {
  display: none;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 900px) {
  .page nav {
    display: flex;
  }
}
.page nav li,
.page nav ul {
  list-style: none;
}
.page nav ul {
  margin: 0;
  padding: 0;
}
.page .nav-item {
  background: #ffffff;
  color: #103a56;
  position: relative;
}
.page .nav-item .dropdown-content {
  display: none;
  position: absolute;
}
.page .nav-item:hover {
  background: #103a56;
  color: #ffffff;
}
.page .nav-item:hover .dropdown-content {
  display: block;
  background: #103a56;
  color: #ffffff;
  min-width: 100%;
}
.page .btn-nav {
  font-weight: 700;
  font-size: 18px;
  display: block;
  padding: 10px;
  border: none;
}
.page .logo_container {
  margin: 20px 60px;
  min-height: 150px;
}
.page .address_bar_icon {
  max-height: 14px;
  max-width: 14px;
  vertical-align: middle;
  display: inline-block;
  margin: 0 3px;
}
.page .background_image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  opacity: .1;
}
.page .index_content {
  margin-top: 50px;
}
.page .index_content p {
  font-size: 24px;
  color: #103a56;
}
.page .index_content h1 {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: #103a56;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  text-align-last: center;
}
@media (min-width: 900px) {
  .page .index_content h1 {
    text-align: justify;
    text-align-last: justify;
  }
}
.page .index_content h2 {
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  color: #103a56;
  margin: 0;
  width: 100%;
  text-align: center;
  text-align-last: center;
}
@media (min-width: 900px) {
  .page .index_content h2 {
    text-align: justify;
    text-align-last: justify;
  }
}
.page .index_content hr {
  margin: 25px 0;
  width: 100%;
  height: 2px;
  display: block;
  border: none;
  background: #660000;
}
.page .praxen_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 50px;
}
.page .praxis_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.page .praxis_container h2 {
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  color: #103a56;
  margin-top: 0;
  margin-bottom: 20px;
}
.page .praxis_container .icon {
  margin: 30px 0 15px;
  width: 40px;
  height: 40px;
  font-weight: 1000;
  font-size: 30px;
  text-align: center;
}
.page .praxis_container .txt {
  color: #103a56;
  font-weight: 600;
  text-transform: uppercase;
}
.page .text_content {
  margin-top: 50px;
}
.page .text_content p,
.page .text_content ul {
  font-size: 24px;
  color: #103a56;
}
.page .text_content a:hover {
  text-decoration: underline;
}
.page .text_content h1 {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: #103a56;
  margin-bottom: 10px;
}
.page .text_content h2 {
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  color: #103a56;
  margin: 0;
}
.page .text_content hr {
  margin: 25px 0;
  width: 100%;
  height: 2px;
  display: block;
  border: none;
  background: #000000;
}
