body, html {
    height: 100%;
    overflow-x: hidden;
}

body {
    background-image: url("../layout/background.jpg");
    background-repeat: repeat;
    background-color: #222c78;
}
a {
    color: #222c78;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
.wrapper {
    background-color: #fff;
    min-height: 100%;
    padding: 0;
    position: relative;
    box-shadow: 0 0 25px #222c78;
}

.header {
    height: 180px;
    background-color: #e5e8f1;
    position: relative;
    padding: 0;
    border-bottom: 15px solid #222c78;
    box-sizing: content-box;
}

.header .logo-container {
    position: absolute;
    left: 20px;
    top: 0;
    text-align: right;
}

@media (min-width: 576px) { 
    .header .logo-container {
        left: 30px;
    }
}

.header .logo {
    height: 115px;
    max-width: 85vw;
    display: block;
}

.header .logo-subtitle {
    height: 23px;
    margin-top: 15px;
    max-width: 85vw;
    display: inline-block;
}

.header .header-text {
    position: absolute;
    right: 300px;
    top: 50%;
    transform: translateY(-50%);
}

.header .note {
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
}

.header .circle-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.header .circle {
  height: 380px;
  width: 380px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0px 0px 13px 12px #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
    background-color: #222c78;
    width: 100%;
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer > * {
    padding: 0 5px;
}

.content {
    padding: 1rem 1.5rem;
    /* maximum footer height*/
    padding-bottom: 120px;
}

.content h1, .content h2 {
    color: #222c78;
}

.content img {
    max-width: 100%;
}

.content h1, .content h2, .content h3 {
    clear: both;
}

@media (min-width: 576px) { 
    .content .foto {
        float: right;
        margin-right: 1rem;
        margin-left: 2rem;
        display: inline;
        max-width: 50%;
    }
}

.panel:not(:last-child) {
    margin-bottom: 2rem;
}

@media (min-width: 576px) { 
    .panel .panel-text {
        padding-left: 1.5rem;
    }
}

.panel .panel-foto img {
    border: 2px solid #222b73;
    box-shadow: 10px 10px 0px 0px #222b73;
}