/* General */

:root {
  --Usual: 'Usual Regular';
}

* {box-sizing: border-box;}

html, body {
  min-height: 100%;
  margin: 0;
  color: #212121;
  font-family: 'Open Sans', serif;
}

section {
  width: 100%;
  margin: auto;
  height: auto;
  padding: 70px 0 10vh;
  display: block;
  max-width: 70%;
}

*::selection {
  background-color: #ff9800;
  color: white;
}

video { width: 100%; }

img { width: 100%; }

.bg {
  height: calc(47vw - 120px);
  width: 100%;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
}

.bg::after {
  width: 100vw;
  content: " ";
  display: block;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.2);
}

.bg h1 {
  font-size: 6rem;
  color: white;
  margin: auto;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  text-shadow: 2px 6px 5px black;
}

@keyframes TopDown {
  0% { top: -50%; }
  100% { top: 50%; }
}

main {
  background-size: auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  background-color: white;
  z-index: 1;
}


.navigation-bar div,
main div { display: flex; }

main div {
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: auto;
  flex-flow: row wrap;
}

.wrapper {
  flex-flow: row wrap;
  padding-bottom: 10vh;
}

/* Header */

header {
  overflow: visible;
  display: block;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 50%);
  height: 100%;
}

.navigation-bar {
  display: flex;
  height: 110px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: #162647;
  justify-content: space-around;
}

.navigation-bar > .navigation-container {
  width: auto;
  align-items: center;
}

.navigation-bar > .navigation-container > .navigation-info {
  height: 70%;
  flex-direction: column;
  width: 100%;
  min-width: 200px;
  padding-left: 3vh;
  border-left: 1px solid white;
}

.navigation-bar > .navigation-container > .navigation-info .navigation-contacts {
  flex-flow: row nowrap;
  height: auto;
  margin: auto 0 1rem 0;
}

.navigation-bar > .navigation-container > .navigation-info .navigation-contacts .icon {
  flex: 0 0 25%;
  justify-content: flex-start;
  width: auto;
}

.navigation-bar > .navigation-container > .navigation-info > .navigation-contacts .icon img {
  width: 100%;
  height: auto;
  max-width: 30px;
}

.navigation-bar > .navigation-container >.navigation-banner {
  color: white;
  flex-direction: column;
  font-size: 0.85rem;
  margin: 0 1rem 0 0;
  padding-right: 1vw;
  height: 70%;
  justify-content: space-around;
  min-width: 230px;
}

.navigation-bar > .navigation-container >.navigation-banner div {
  display: block;
  margin-top: .25rem;
}

.navigation-bar > .navigation-container > .navigation-banner div strong {font-size: .9rem;display: block;}
.navigation-bar > .navigation-container > .navigation-banner > div > small {
  font-size: 0.8rem;
  font-style: italic;
  display: block;
}

.navigation-bar > .navigation-container > .navigation-banner > small { margin-bottom: .25rem; }

.navigation-bar > .navigation-container > .navigation-banner > small > a {
  color: #009efd;
  text-decoration: none;
}


.navigation-bar > .navigation-container > .navigation-info > .navigation-language {
    flex-wrap: nowrap;
    /* width: auto; */
    margin: 0 auto 0 0;
    width: auto;
}

.lang-icon { margin: 0 1rem 0 0; }

/* Logo */

#logo_word_1 {
  font-family: 'ITC Cheltenham Std Light Italic';
  font-weight: bold;
  position: absolute;

}

#logo_word_2 {
  font-family: 'Charter Black Italic';
  font-weight: bold;
  position: absolute;
}

.logo {
  width: 100%;
  /* margin-left: 15vw; */
  height: inherit;
  max-width: 350px;
  flex: 1 1 50%;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: inherit;
  height: inherit;
}

.logo a img {
  transition:
    top .4s ease,
    left .4s ease,
    font-size .4s ease,
    height .4s ease;
  width: auto;
  height: 46px;
  margin: auto;
}

.logo.resized a img { height: 42px; }


.navigation-menu {
  height: 50px;
  overflow: hidden;
  position: sticky;
  top: 110px;
  z-index: 2;
  box-shadow: 0px 4px 12px 0px #ffffff3b;
}

.navigation-menu > .navigation-container {
  display: block;
  height: inherit;
  margin: 0 auto;
  background-color: var(--navyBlue);
}

 .navigation-menu > .navigation-container ul {
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  height: inherit;
  list-style-type: none;
  width: 50%;
}

 .navigation-menu > .navigation-container ul li {
  position: relative;
  flex: 1 0;
}

 .navigation-menu > .navigation-container ul li a {
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  display: block;
  color: white;
  height: inherit;
  width: 100%;
  line-height: 50px;
  font-family: var(--Raleway);
  font-weight: 400;
  font-size: .9rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: color .3s linear, font-weight .3s ease;
  z-index: 2;
}

 .navigation-menu > .navigation-container ul li:not(:last-child) a:before {
  content: " ";
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  transform: skewX(-25deg);
  right: 0;
  transition: background-color .3s linear;
  z-index: 0;
  background-color: #a2a2a2;
}


 .navigation-menu > .navigation-container ul li > span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: width .3s linear;
  z-index: 0;
  transform: skew(-25deg);
}

 .navigation-menu > .navigation-container ul li:hover a {
  color: var(--navyBlue);
  font-weight: 500;
}

 .navigation-menu > .navigation-container ul li:hover a:before {
  background-color: transparent;
}

.navigation-menu > .navigation-container ul li:hover span { width: 100%; }
/* Burger Menu */

.burger-menu {
  display: none;
  cursor: pointer;
  z-index: 1;
  width: auto;
  margin-right: 1rem;
}

.bar1, .bar2, .bar3 {
  width: 30px;
  height: 5px;
  background-color: #212121;
  margin: 6px 0;
  transition: all 0.4s ease;
}

.burger-menu.change { display: inline-block; }

.change .bar1,
.change .bar3  { background-color: white; }

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 { opacity: 0; }

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

.content p {
  text-align: center;
  line-height: 1.4rem;
  margin-bottom: .6rem;
  font-family: var(--Raleway);
  font-size: 1.1rem;
}

/* Title */

.title {
  display: block;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5 {
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--navyBlue);
  text-transform: uppercase;
  line-height: inherit;
  font-family: var(--Raleway);
  justify-content: center;
}

.title h3 { font-size: 2rem; }
.title h4 { font-size: 1.5rem; }
.title h5 { font-size: 1.3rem; }

/* Button */

.button {
  position: relative;
  font-family: var(--Raleway);
  padding: 0.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  border: 2px solid var(--navyBlue);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  overflow: hidden;
  z-index: 0;
  margin: auto;
}

.button::after {
  content: "\27a1";
  margin-left: 3rem;
  padding-right: 0.6rem;
  width: auto;
  display: inline-block;
}

.button::before {
  content: " ";
  position: absolute;
  height: 100%;
  width: 85px;
  top: 0;
  transform: skewX(-25deg);
  background-color: #0000002e;
  z-index: -1;
  right: -30px;
}

.button span {
  height: 100%;
  width: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--navyBlue);
  z-index: -2;
  transition: width .3s linear;
}

.button:hover { color: white; }

.button:hover span { width: 100%; }

/* Footer */
footer {
  background-color: #162647;
  display: block;
  font-family: var(--Raleway);
  color: white;
  z-index: 4;
  position: relative;
}

.footer {
  width: 100%;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  padding: 2rem 0;
  justify-content: space-between;
  max-width: 1400px;
}

.footer .footer-col {
  flex: 0 1 33.3%;
  padding: 0 1rem;
}

.footer .footer-col:nth-child(2) {
  border: 1px solid #454545b0;
  border-top: none;
  border-bottom: none;
}

.footer .footer-col:last-child div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.footer .footer-col > div {
  width: 90%;
  margin: auto;
  height: 100%;
}

.footer .footer-col a,
.copyright a {
  display: block;
  color: rgb(255 255 255);
  text-decoration: none;
  line-height: 1.5em;
  margin-bottom: 1rem;
}

.copyright a {
  display: inline-block;
  margin: 0
}

.footer .footer-col a:not(:last-child):hover,
.copyright a:hover {color: #ff9800;}

.footer .footer-col a span { color: white; }

.footer .footer-col p {
  color: #ffffff;
  font-size: 1rem;
  margin: 0;
}

.footer .footer-col h5 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  margin: 1rem 0;
}

.footer .footer-col h6 {
  font-size: 1rem;
  margin: 0 0 1rem;
}

.footer > .footer-col > div > p {
  margin-left: 7%;
  font-size: 1.1rem;
  margin-top: -1rem;
  font-family: var(--Raleway);
  font-weight: 400;
  font-style: italic;
}

.footer .footer-col div table { width: 100%; }

.footer .footer-col th {
    text-align: left;
    font-weight: 400;
    font-family: 'Open Sans';
	letter-spacing: .5px;
}

.footer .footer-col td { text-align: right; }

.footer .footer-col tr {
    margin-bottom: .25rem;
    display: flex;
    padding-top: .25rem;
    border-bottom: dashed 1px #5e5e5e;
    justify-content: space-between;
}

footer .copyright {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
  border-top: 1px solid #373c46;
  background-color: #07132b;
}

footer .copyright small {
  text-align: center;
  line-height: 1.2rem;
}

.footer .button { margin: 0; }

.glass {
	background: linear-gradient(135deg, rgba(255,355,255,0.1), #3f7dd52e);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0px 0px 20px 0 #009efd4a inset;
}
