@charset "UTF-8";
/* Global Styles */
body {
  background-color: rgba(255, 255, 255, 1);
  font-family: 'robotoregular', Arial, sans-serif;
  font-style: normal;
  font-weight: 200;
  margin: 0;
  width: auto !important;
}
/* Header Styles */
.top_container {
  border-top: thick solid rgba(38, 19, 111, 1);
  display: flex;
  height: 90px;
  justify-content: flex-start;
}
.logo {
  height: 60px;
  margin-bottom: 15px;
  margin-top: 15px;
  width: auto;
}
.language {
  background-color: rgba(38, 19, 111, 1);
  border: 1px solid rgba(38, 19, 111, 1);
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 1);
  font-size: 10px;
  font-weight: lighter;
  letter-spacing: 1px;
  padding: 2px 5px;
  position: absolute;
  right: 10px;
  text-align: center;
  text-transform: uppercase;
  top: 10px;
  transition: all 0.2s linear;
  z-index: 3;
}
.language a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}
.language:hover {
  background-color: rgba(21, 155, 122, 1);
  border-color: rgba(21, 155, 122, 1);
  cursor: pointer;
}
.menu_container {
  background-color: rgba(255, 255, 255, 1);
  margin-left: 100%;
  position: fixed;
  transition: all 0.2s linear;
  width: 100%;
  z-index: 2;
}
.menu {
  border-bottom: thin solid rgba(169, 169, 169, 1);
  border-top: thin solid rgba(169, 169, 169, 1);
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  vertical-align: middle;
  width: 100%;
}
.menu > div {
  border-bottom: 1px solid rgba(169, 169, 169, 1);
  color: black;
  font-size: 18px;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s linear;
  width: 100%;
}
.menu > div:hover {
  background-color: rgba(38, 19, 111, 1);
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}
.dropdown {
  display: inline-block;
  position: inherit;
  transition: all 0.3s linear;
}
.dropdown-content {
  animation: growDown 300ms ease-in-out forwards;
  background-color: rgba(38, 19, 111, 1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
  display: none;
  min-width: 160px;
  padding-top: 12px;
  position: absolute;
  transform-origin: top center;
  width: inherit;
  z-index: 3;
}
/* Keyframes for Animation */
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.dropdown-content a {
  color: rgba(255, 255, 255, 1);
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}
.dropdown-content a:hover {
  background-color: rgba(21, 155, 122, 1);
  border: thin solid rgba(169, 169, 169, 1);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.mobile_menu {
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 40px;
}
.bar1, .bar2, .bar3 {
  background-color: rgba(51, 51, 51, 1);
  height: 5px;
  margin: 6px 0;
  transition: 0.4s;
  width: 35px;
}
.change .bar1 {
  transform: rotate(-45deg) translate(-8px, 8px);
  -webkit-transform: rotate(-45deg) translate(-8px, 8px);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
}
/* Footer Styles */
footer {
  background-color: rgba(255, 255, 255, 1);
  display: inline-block;
  padding-bottom: 35px;
}
.footer_banner {
  background-color: rgba(38, 19, 111, 1);
  margin-bottom: 0;
  padding: 60px 0;
}
.footer_column {
  float: left;
  padding-top: 30px;
  text-align: center;
  width: 50%;
}
footer .footer_column h3 {
  color: rgba(59, 59, 59, 1.00);
  text-align: center;
}
footer .footer_column p {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(59, 59, 59, 1.00);
  font-weight: bolder;
  line-height: 25px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0 30px;
  text-align: justify;
}
.footer_header {
  color: rgba(255, 255, 255, 1);
  letter-spacing: 4px;
  margin: 0;
  text-align: center;
}
/* Button Styles */
.button {
  border: 3px solid rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
  letter-spacing: 2px;
  margin: 40px auto auto;
  padding: 20px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s linear;
  width: 200px;
}
.button a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}
.button:hover {
  background-color: rgba(254, 254, 254, 1);
  color: rgba(38, 19, 111, 1);
  cursor: pointer;
}
.button:hover a {
  color: rgba(38, 19, 111, 1.00);
}
/* Sitemap Styles */
.sitemap {
  background-color: rgba(113, 112, 112, 1.00);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 20px 10% 0;
}
.sitemap a {
  color: rgba(255, 255, 255, 1);
  font-weight: lighter;
  letter-spacing: 1px;
  text-decoration: none;
}
.sitemap a:hover {
  text-decoration: underline;
}
.sitemap ul {
  list-style: none;
  margin-left: -40px;
  text-decoration: none;
}
/* Copyright Styles */
.copyright {
  align-items: flex-end;
  background-color: rgba(113, 112, 112, 1.00);
  color: rgba(255, 255, 255, 1);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 10px 10% 0;
}
/* Policy Links Styles */
.policy_links {
  background-color: rgba(113, 112, 112, 1.00);
  color: rgba(255, 255, 255, 1);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}
.policy_links a {
  background-color: rgba(113, 112, 112, 1.00);
  border-left: 1px solid rgba(169, 169, 169, 1);
  border-right: 1px solid rgba(169, 169, 169, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 10px;
  margin: 6px 0 6px -1px;
  min-width: 160px;
  padding: 1px 0;
  text-align: center;
  text-decoration: none;
}
/* Hidden Styles */
.hidden {
  display: none;
}