* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  max-width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: auto;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #143168;
  overflow-x: hidden;
}

body,
main,
section {
  overflow-x: hidden;
}

/* HEADER */

#logo_header_div {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  max-width: 100vw;
  height: 48px;
  background-color: #143168;
  text-align: center;
}

#logo_header_div img {
  width: 260px;
  height: auto;
}

/* THANKS TO Erik Terwan (https://codepen.io/erikterwan/pen/EVzeRP) */

#menuToggle {
  display: block;
  position: fixed;
  top: 12px;
  left: 5px;
  z-index: 200;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #ffffff;
}

#menuToggle a:hover {
  color: #ffffff;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 300;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-10px, -20px);
  background: #ffffff;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, 10px);
}

/* MAPPA */

#map_container {
  width: 100vw;
  background-color: #f4d7c3;
  overflow: hidden;
  margin: auto;
  margin-top: 48px;
  height: 330px;
}

#pulsanti-mappa {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 50;
}

#pulsanti-mappa .pulsante-mini {
  padding: 10px;
  background-color: #eaeaea;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60%;
  border: none;
  width: 30px;
  height: 30px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  cursor: pointer;
}

#zoom-piu {
  background-image: url(../img/piu.svg);
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}

#zoom-reset {
  background-image: url(../img/centra.svg);
}

#zoom-meno {
  background-image: url(../img/meno.svg);
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}

#map_container .pulsante-mini:hover {
  background-color: #ffffff;
}

#svg_architettura {
  transform: scale(2.5, 2.5) translate(-30px, 60px);
  -ms-transform: scale(2.5, 2.5) translate(-30px, 60px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-30px, 60px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-30px, 60px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-30px, 60px); /* Firefox */
}

#svg_arte {
  transform: scale(2.5, 2.5) translate(-20px, 0);
  -ms-transform: scale(2.5, 2.5) translate(-20px, 0); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-20px, 0); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-20px, 0); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-20px, 0); /* Firefox */
}

#svg_design {
  transform: scale(2.5, 2.5) translate(20px, -30px);
  -ms-transform: scale(2.5, 2.5) translate(20px, -30px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(20px, -30px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(20px, -30px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(20px, -30px); /* Firefox */
}

#svg_finanza {
  transform: scale(2.5, 2.5);
  -ms-transform: scale(2.5, 2.5); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5); /* Opera */
  -moz-transform: scale(2.5, 2.5); /* Firefox */
}

#svg_imprese {
  transform: scale(2.5, 2.5) translate(30px, 25px);
  -ms-transform: scale(2.5, 2.5) translate(30px, 25px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(30px, 25px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(30px, 25px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(30px, 25px); /* Firefox */
}

#svg_legge {
  transform: scale(2.5, 2.5) translate(-40px, 0);
  -ms-transform: scale(2.5, 2.5) translate(-40px, 0); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-40px, 0); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-40px, 0); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-40px, 0); /* Firefox */
}

#svg_moda {
  transform: scale(2.5, 2.5) translate(-30px, 25px);
  -ms-transform: scale(2.5, 2.5) translate(-30px, 25px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-30px, 25px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-30px, 25px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-30px, 25px); /* Firefox */
}

#svg_scienza {
  transform: scale(2.5, 2.5);
  -ms-transform: scale(2.5, 2.5); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5); /* Opera */
  -moz-transform: scale(2.5, 2.5); /* Firefox */
}

#svg_sostenibilita {
  transform: scale(2.5, 2.5) translate(-40px, 35px);
  -ms-transform: scale(2.5, 2.5) translate(-40px, 35px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-40px, 35px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-40px, 35px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-40px, 35px); /* Firefox */
}

#svg_sport {
  transform: scale(2.5, 2.5) translate(-10px, -25px);
  -ms-transform: scale(2.5, 2.5) translate(-10px, -25px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-10px, -25px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-10px, -25px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-10px, -25px); /* Firefox */
}

#svg_sviluppo_urbano {
  transform: scale(2.5, 2.5) translate(-60px, 140px);
  -ms-transform: scale(2.5, 2.5) translate(-60px, 140px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-60px, 140px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-60px, 140px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-60px, 140px); /* Firefox */
}

#svg_tecnologia {
  transform: scale(2.5, 2.5) translate(-20px, 40px);
  -ms-transform: scale(2.5, 2.5) translate(-20px, 40px); /* IE 9 */
  -webkit-transform: scale(2.5, 2.5) translate(-20px, 40px); /* Safari and Chrome */
  -o-transform: scale(2.5, 2.5) translate(-20px, 40px); /* Opera */
  -moz-transform: scale(2.5, 2.5) translate(-20px, 40px); /* Firefox */
}

#map_container_with_button {
  position: relative;
}

#vedi_altri_div {
  position: absolute;
  bottom: 0;
  right: 10px;
  background-color: #132650;
}

#vedi_altri_btn {
  padding: 7px 15px;
  background-color: #132650;
  border: none;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}

/* MENU MODAL */

#menu_modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.modal-header {
  width: 100%;
  padding: 15px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#modal-header-title {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
}

#modal_close {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
}

.modal-content {
  position: relative;
  top: 47px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #ffffff;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.7);
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  overflow: auto;
}

.list_item {
  width: 100%;
  padding: 5px 0;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.list_item:before {
  content: "";
  display: block;
  background: url("../img/PIN_Rosso.svg") no-repeat;
  width: 15px;
  height: 15px;
  float: left;
  margin: 0 6px 20px 0;
}

.list_item span {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
}

.list_item:hover {
  background-color: #fff1e4;
  font-weight: bold;
}

.list_item:hover::before {
  content: "";
  display: block;
  background: url("../img/PIN_Blu.svg") no-repeat;
  width: 15px;
  height: 15px;
  float: left;
  margin: 0 6px 20px 0;
}

.list_item a:link {
  color: #000000;
  text-decoration: none;
}

.list_item a:visited {
  color: #000000;
  text-decoration: none;
}

.list_item a:hover {
  color: #000000;
  text-decoration: none;
}

.list_item a:active {
  color: #000000;
  text-decoration: none;
}

.list-item-selected {
  background-color: #fff1e4;
  font-weight: bold;
}

.list-item-selected::before {
  content: "";
  display: block;
  background: url("../img/PIN_Blu.svg") no-repeat;
  width: 15px;
  height: 15px;
  float: left;
  margin: 0 6px 20px 0;
}

@-webkit-keyframes slideIn {
  0% {
    left: -300px;
    opacity: 0;
  }
  100% {
    left: 0px;
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    left: -300px;
    opacity: 0;
  }
  100% {
    left: 0px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* TESTO MAPPA */

#text_container {
  width: 100vw;
  max-width: 100vw;
  padding: 30px 20px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#text_title {
  width: 100%;
}

#text_title h1 {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  color: #132650;
}

#text_subtitle {
  width: 100%;
  padding-top: 10px;
}

#text_subtitle h3 {
  margin: 0;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: center;
  color: #132650;
}

#text {
  width: 100%;
  padding-top: 20px;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: center;
  color: #132650;
}

/* PAGINE SOLE */

#page_container {
  width: 100vw;
  max-width: 100vw;
  height: 670px;
  background-color: #143168;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#page_container_background {
  width: 100%;
  height: 670px;
  background-image: url(../img/fondo-blu.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#page_title {
  width: 100%;
  max-width: 320px;
  height: 80px;
  padding-right: 10px;
  padding-left: 10px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

#page_title h2 {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
}

#page_data {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-top: 15px;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}

#page_cover_container {
  width: 100vw;
  position: relative;
}

#page_cover {
  position: absolute;
  top: 30px;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  z-index: 5;
}

#cover {
  width: 200px;
  height: auto;
}

#page_cover_half_slide {
  position: absolute;
  top: 30px;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  z-index: 5;
}

#page_cover_half_slide img {
  width: 200px;
  height: auto;
}

.page_cover_half_slide_right {
  left: 230px;
}

.page_cover_half_slide_left {
  left: 100px;
}

#pdf-btn-div {
  position: absolute;
  bottom: 120px;
  width: 100%;
  text-align: right;
  z-index: 70;
}

#pdf-btn-div a {
  display: inline-block;
  position: relative;
  z-index: 30;
  padding: 1.5em;
  margin: -1em;
}

#pdf-btn-div img {
  width: 25px;
  height: 25px;
  margin-right: 20px;
  z-index: 10;
}

#skyline_div {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 30;
}

#skyline_div img {
  width: 100%;
  height: auto;
}

/* PDF SWIPER */

.swiper-container {
  width: 100%;
  height: 100%;
  z-index: 40;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 100px;
  left: 0;
  width: 100%;
}

span.swiper-pagination-bullet {
  opacity: 1;
  background-color: #ffffff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #3d76f3 !important;
}

/* LINK FINALI */
#end_link_container {
  width: 100vw;
  background-color: #f4d7c3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

#end_link_div {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #f4d7c3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 30px auto;
}

#end_link_title {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin: 20px 0;
}

.end_link_item {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.end_link_subheading {
  width: 100%;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #d9000d;
}

.end_link_link {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
}

.end_link_link a:link {
  color: #000000;
  text-decoration: none;
}

.end_link_link a:visited {
  color: #000000;
  text-decoration: none;
}

.end_link_link a:hover {
  color: #000000;
  text-decoration: underline;
}

.end_link_link a:active {
  color: #000000;
  text-decoration: underline;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  padding: 3px;
  float: right;
  margin-top: 10px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/* BACK TO TOP BUTTON */

#backtop {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 50px;
  z-index: 300;
  text-align: right;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#backtop img {
  cursor: pointer;
  width: 30px;
  max-width: 30px;
  height: auto;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* FOOTER E CREDITS */

#footer_container {
  width: 100vw;
  max-width: 100vw;
  height: 250px;
  padding-top: 40px;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  background-color: #19171a;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: center;
  color: #a19e9e;
}

#logo_footer_div {
  text-align: center;
}

#logo_footer_div img {
  width: 135px;
  height: auto;
}

#link_lab {
  margin-top: 20px;
}

#link_lab a:link {
  color: #ffffff;
}

#link_lab a:visited {
  color: #ffffff;
}

#credits {
  margin-top: 20px;
}

#credits h5 a:link {
  color: #a19e9e;
}

#credits h5 a:visited {
  color: #a19e9e;
}

@media only screen and (max-width: 330px) {
  #logo_header_div img {
    width: 220px;
    height: auto;
  }
}
