@import "fonts/MyriadPro/font-face.css";
:root {
  --main-light: #fff;
  --main-light-rgb: 255, 255, 255;
  --main-dark: #323232;
  --main-dark-rgb: 50, 50, 50;
  --main-yellow: #F6BB5E;
  --main-yellow-rgb: 247, 188, 94;
  --main-link-hover: #f5b550;
  --main-link-active: #f7c679;
  --main-link-visited: #f3a72e;
}
.MyriadPro {
  font-family: 'Myriad Pro', MyriadPro-Regular, 'Myriad Pro Regular', MyriadPro, Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.MyriadProBold {
  font-family: 'Myriad Pro', MyriadPro-Bold, 'Myriad Pro Bold', MyriadPro, Helvetica, Arial, sans-serif;
  font-weight: bold;
}
::-moz-selection {
  background: var(--main-yellow);
}
::selection {
  background: var(--main-yellow);
}
a::-moz-selection {
  color: var(--main-light);
}
a::selection {
  color: var(--main-light);
}
body,
html {
  background: var(--main-light);
  color: var(--main-dark);
  box-sizing: border-box;
  min-height: 100vh;
  font-family: 'Myriad Pro', MyriadPro-Regular, 'Myriad Pro Regular', MyriadPro, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 12pt;
  width: 100%;
}
button {
  color: var(--main-dark);
  background: var(--main-yellow);
  padding: 0.2em 0.5em;
  outline: none;
  border: none;
}
button:hover {
  cursor: pointer;
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
ul {
  margin: 0;
  padding: 0;
}
footer {
  text-align: center;
  font-size: x-large;
}
abbr[title] {
  text-decoration: none;
  cursor: help;
}
abbr[title]:after,
abbr[title]::after {
  content: " (" attr(title) ")";
  font-style: italic;
}
.social-icon {
  height: 1.25em;
  width: 1.25em;
  margin: 0.5em;
}
#clipboard-input {
  width: 0;
  height: 0;
  resize: none;
  overflow: hidden;
  opacity: 0;
}
#bunker-website {
  --content-width: 90%;
  background: var(--main-dark);
  color: var(--main-light);
  width: 100%;
  padding: 0;
  display: inline-block;
}
#bunker-website a {
  color: var(--main-yellow);
  text-decoration: none;
  /*&:visited {
            color: var(--main-link-visited, --main-yellow);
        }*/
}
#bunker-website a:hover {
  color: var(--main-link-hover, --main-yellow);
}
#bunker-website a:active {
  color: var(--main-link-active, --main-yellow);
}
#bunker-website > header {
  position: fixed;
  width: 100%;
  margin: -1px auto;
  z-index: 100000;
  top: 0;
  left: 50%;
  overflow: hidden;
  border-top: none;
  transform: translateX(-50%);
  background: transparent;
  transition: max-height 0.5s, background-color 0.1s 0.05s ease-in;
}
#bunker-website > header.contrast {
  background-color: var(--main-dark);
}
#bunker-website > header .nav-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  transition: width 0.15s;
}
#bunker-website > header .nav-content .logo {
  background-origin: content-box;
  color: var(--main-yellow);
  padding: 0.5em 10em 0.5em 1em;
  display: inline-block;
  margin: 0;
  align-self: center;
  box-sizing: border-box;
  flex: 3 3 50%;
}
#bunker-website > header .nav-content .logo:hover {
  cursor: pointer;
}
#bunker-website > header .nav-content button {
  border: 0;
  background: var(--main-yellow);
  color: var(--main-dark);
  display: inline-block;
  margin: 0;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  transition: color 0.15s, backgrond 0.15s;
}
#bunker-website > header .nav-content button:hover {
  cursor: pointer;
}
#bunker-website > header .nav-content button:focus {
  outline: none;
}
#bunker-website > header .nav-content #menu {
  overflow: hidden;
  flex: 1 1 10%;
}
#bunker-website > header .nav-content #menu svg {
  width: 24px;
  height: 22px;
}
#bunker-website > header .nav-content nav {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  flex: 3 3 100%;
}
#bunker-website > header .nav-content nav ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  max-height: 0;
  transition: max-height 0.15s;
}
#bunker-website > header .nav-content nav ul li {
  height: 100%;
  padding: 0;
  text-align: left;
  flex: 1 1 100%;
  opacity: 0;
  max-height: 0;
  max-width: 0;
  transition: opacity 0.1s;
}
#bunker-website > header .nav-content nav ul li a {
  color: var(--main-yellow) !important;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  padding: 0.65rem 1.5rem;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
}
#bunker-website > header .nav-content nav ul li:hover {
  cursor: pointer;
}
#bunker-website > header .nav-content nav ul li:first-child a {
  padding-top: 1.35rem;
}
#bunker-website > header .nav-content nav ul li:last-child:not(.search-form-container) a {
  padding-bottom: 1.35rem;
}
#bunker-website > header .nav-content nav form[name="search-form"] {
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
#bunker-website > header .nav-content nav form[name="search-form"] input[name="search"] {
  max-height: 100%;
  width: 75%;
  background: var(--main-dark);
  color: var(--main-light);
  border: none;
  border-top: 2pt solid rgba(255, 255, 255, 0.1);
  font-family: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 1rem;
}
#bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]:focus {
  outline: none;
}
#bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::-webkit-input-placeholder {
  font-size: smaller;
}
#bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::-moz-placeholder {
  font-size: smaller;
}
#bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]:-ms-input-placeholder {
  font-size: smaller;
}
#bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::-ms-input-placeholder {
  font-size: smaller;
}
#bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::placeholder {
  font-size: smaller;
}
#bunker-website > header .nav-content nav form[name="search-form"] button[type="submit"] {
  width: 25%;
}
#bunker-website > header .nav-content nav form[name="search-form"] button[type="submit"] svg {
  height: 16px;
  width: 16px;
}
#bunker-website > header.open {
  background-color: var(--main-dark);
}
#bunker-website > header.open .nav-content nav ul {
  max-height: 100%;
  transition: max-height 0.5s;
}
#bunker-website > header.open .nav-content nav ul li {
  opacity: 1;
  transition: opacity 0.01s;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
#bunker-website > header.open .nav-content button {
  background: var(--main-dark);
  color: var(--main-yellow);
}
#bunker-website .details {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}
#bunker-website .details .details-content {
  width: var(--content-width);
}
#bunker-website .details .details-content h2 {
  font-size: 3em;
  margin: 0;
}
#bunker-website .details .details-content h2 .logo {
  font-size: 1.15em;
  height: 0.7em;
  display: inline-block;
  color: var(--main-yellow);
}
#bunker-website .details .details-content h2 .logo svg {
  height: 100%;
}
#bunker-website .details .details-content h2 .adjective,
#bunker-website .details .details-content h2 .location,
#bunker-website .details .details-content h2 .service-name {
  display: block;
  text-transform: lowercase;
  font-size: smaller;
  margin-top: -0.75rem;
}
#bunker-website .details .details-content h2 .location {
  text-transform: none;
}
#bunker-website .details .details-content .motto {
  margin-top: 2rem;
  font-size: 1em;
  line-height: 1.2;
}
#bunker-website .details .details-content .motto span {
  color: var(--main-yellow);
  display: block;
  font-size: 1.35em;
  line-height: inherit;
  /*strong {
                        font-size: 1.35em;
                    }*/
}
.servizi #bunker-website .details .details-content .motto {
  text-transform: lowercase;
}
#bunker-website .details .details-content .socials {
  color: var(--main-light);
  margin-left: -0.5em;
}
#bunker-website .details .details-content .socials button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
#bunker-website .details .details-content .socials a,
#bunker-website .details .details-content .socials button {
  color: inherit;
  display: inline-block;
  margin-right: 0.2em;
}
#bunker-website .page-contents {
  width: 100%;
  display: inline-block;
  background: var(--main-yellow);
  padding: 4rem 1rem;
  color: var(--main-dark);
  margin: 0;
  min-height: 35vh;
  box-sizing: border-box;
}
#bunker-website .page-contents:empty {
  display: none;
}
.trovaci #bunker-website .page-contents:empty {
  display: inline-block;
  min-height: 3rem;
  padding: 0;
}
#bunker-website #services .macro-service {
  display: inline-block;
  width: 100%;
}
#bunker-website #services .macro-service .sub-services {
  list-style: none;
  font-size: large;
}
#bunker-website #services .macro-service .sub-services > ul > li {
  display: flex;
  flex-direction: column;
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-button {
  padding: 0.1em 0;
  line-height: 0.735;
  width: 100%;
  height: 100%;
  display: inline-block;
  font-weight: inherit;
  text-transform: lowercase;
  text-align: inherit;
  color: inherit;
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-title {
  --active-padding: 0;
  margin: 0;
  font-size: 3em;
  transform: translateX(0);
  transition: color 0.2s, transform 0.2s;
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-title::-moz-selection {
  background: transparent;
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-title::selection {
  background: transparent;
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-title:hover {
  cursor: pointer;
  transform: translateX(var(--active-padding));
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-details {
  margin: 0.05rem 0 0.5rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.25s;
  font-size: larger;
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-details ul li {
  display: inline;
}
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-details ul li:not(:last-child):after,
#bunker-website #services .macro-service .sub-services > ul > li .sub-service-details ul li:not(:last-child)::after {
  content: ",";
}
#bunker-website #services .macro-service .sub-services > ul > li.selected .sub-service-title {
  color: var(--main-light);
}
#bunker-website #services .macro-service .sub-services > ul > li.selected .sub-service-details {
  max-height: 100vh;
  opacity: 1;
  margin-bottom: 2rem;
}
#bunker-website #services .macro-service .sub-services > ul > li.selected .sub-service-details h4 {
  margin: 0 0 0.5em;
}
#bunker-website #services .macro-service .sub-services .sub-service-content {
  display: none;
}
#bunker-website #services #services-nav {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  font-size: smaller;
}
#bunker-website #services #services-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}
#bunker-website #services #services-nav ul li {
  display: inline-block;
  flex: 0 1 50%;
}
#bunker-website #services #services-nav ul li button {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--main-light);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease-in, color 0.25s ease-in;
  text-shadow: 3px 1px 4px rgba(var(--main-dark-rgb), 0.275);
  letter-spacing: 0.2em;
  padding: 0.75em;
  text-align: center;
}
#bunker-website #services #services-nav ul li button.active {
  color: var(--main-dark);
  background: var(--main-yellow);
  text-shadow: 3px 1px 4px rgba(var(--main-dark-rgb), 0.275);
}
#bunker-website #services #services-nav ul li button:focus {
  outline: none;
}
#bunker-website #find-us {
  background-image: url('../images/casalDiPrincipe.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
#bunker-website #find-us #map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#bunker-website #share-dialog {
  overflow: hidden;
  background: transparent;
  transition: background 0.1s;
  font-size: small;
}
#bunker-website #share-dialog .dialog-content {
  overflow: hidden;
  height: auto;
  max-height: 0;
  transition: max-height 0.5s;
}
#bunker-website #share-dialog[open] {
  background: rgba(var(--main-dark-rgb), 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#bunker-website #share-dialog[open] .dialog-content {
  background: var(--main-yellow);
  width: 90%;
  max-width: 450px;
  max-height: 100vh;
  position: fixed;
  bottom: 0;
  left: 50%;
  border: none;
  border-radius: 15px 15px 0 0;
  transform: translateX(-50%);
}
#bunker-website #share-dialog[open] .dialog-content:after,
#bunker-website #share-dialog[open] .dialog-content::after {
  content: '';
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 0;
  max-height: 0;
  opacity: 0;
  text-align: center;
  transition: opacity 0.075s;
}
#bunker-website #share-dialog[open] .dialog-content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
#bunker-website #share-dialog[open] .dialog-content ul li {
  flex: 0 1 45%;
  margin: 0.5em 2.5%;
  text-align: center;
}
#bunker-website #share-dialog[open] .dialog-content ul li a,
#bunker-website #share-dialog[open] .dialog-content ul li button {
  color: var(--main-dark);
  padding: 0.5em;
  border: none;
  margin: 0;
  text-transform: uppercase;
}
#bunker-website #share-dialog[open].copied .dialog-content:after,
#bunker-website #share-dialog[open].copied .dialog-content::after {
  background: rgba(var(--main-yellow-rgb), 0.55);
  content: 'Link copiato!';
  padding: 20%;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}
#bunker-website #share-dialog .social-icon {
  height: 1.5em;
  width: 1.5em;
  vertical-align: middle;
}
#bunker-website footer {
  padding: 1rem 0;
  background-image: url('../images/contatti.jpg');
  background-repeat: no-repeat;
  background-position: left;
  /*background-position: center 38%;*/
  background-size: cover;
  margin-top: -4px;
}
#bunker-website footer .contact-us {
  margin: 3rem 0 4rem;
}
#bunker-website footer .contact-us strong {
  color: var(--main-yellow);
}
#bunker-website footer .contact-us .socials {
  width: 25%;
  margin: 1em auto;
  font-size: 1.8em;
  display: flex;
  justify-content: center;
}
#bunker-website footer .contact-us .socials a {
  display: inline-block;
  margin: 0 0.3em;
}
#bunker-website footer .contact-us .socials a svg {
  height: 1em;
}
#bunker-website footer .copyright {
  color: var(--main-light);
  padding: 0 1em;
  font-size: 0.6em;
  margin: 1rem 0 0;
}
#bunker-website footer .copyright a {
  color: currentColor;
}
.slide {
  overflow: hidden;
  max-width: 0;
  max-height: 0;
  position: fixed;
  height: auto;
  z-index: -1;
  transition: width 0.25s;
}
.slide.current {
  max-width: 100%;
  max-height: 100%;
  position: initial;
}
.text-separator {
  margin: 0 0.3em;
}
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
@media only screen and (orientation: landscape) and (max-width: 768px) {
  #bunker-website > header .nav-content {
    justify-content: space-between;
  }
  #bunker-website > header .nav-content .logo {
    padding: 0.15em 1em;
    flex: 0 1 30%;
    align-self: center;
  }
  #bunker-website > header .nav-content #menu {
    flex: 0 1 13%;
  }
  #bunker-website > header .nav-content button {
    padding: 0.65rem 1rem;
  }
  #bunker-website #services {
    position: relative;
    --landscape-size: 150vh;
  }
  #bunker-website #services .macro-service .details {
    min-height: var(--landscape-size);
  }
  #bunker-website #services #services-nav {
    font-size: small;
    top: var(--landscape-size);
    margin-top: -1.5em;
  }
  #bunker-website #services #services-nav ul li button {
    padding: 0.5em 0.65em;
  }
}
@media only screen and (min-width: 375px) {
  #bunker-website .details {
    font-size: 13pt;
  }
  #bunker-website .details .details-content h2 {
    font-size: 3.45em;
  }
}
@media only screen and (min-width: 425px) {
  #bunker-website .details .details-content h2 {
    font-size: 3.735em;
  }
  #bunker-website #share-dialog {
    font-size: 0.9em;
  }
}
@media only screen and (min-width: 768px) {
  button {
    padding: 1em 1.5em;
  }
  #bunker-website {
    --content-width: 53.333%;
  }
  #bunker-website > header {
    max-height: 100%;
    --border-size: 0.95rem;
    background: transparent;
    font-size: small;
  }
  #bunker-website > header.open {
    border: none;
  }
  #bunker-website > header .nav-content {
    flex-wrap: nowrap;
  }
  #bunker-website > header .nav-content .logo {
    border-top: var(--border-size) solid transparent;
    padding: 0.65em 1em;
    flex: 2 2 15%;
  }
  #bunker-website > header .nav-content #menu {
    display: none;
  }
  #bunker-website > header .nav-content nav {
    font-size: xx-small;
  }
  #bunker-website > header .nav-content nav ul {
    justify-content: space-around;
    flex-wrap: nowrap;
    max-height: 100%;
    height: 100%;
    transition: max-height 0.5s;
  }
  #bunker-website > header .nav-content nav ul li {
    max-height: 100%;
    flex: 1 1 auto;
    opacity: 1;
    max-width: unset;
    text-align: center;
    border-top: var(--border-size) solid transparent;
  }
  #bunker-website > header .nav-content nav ul li a {
    padding: 1.5em 0.25em;
  }
  #bunker-website > header .nav-content nav ul li:first-child a,
  #bunker-website > header .nav-content nav ul li:last-child:not(.search-form-container) a {
    padding: 1.5em 0.25em;
  }
  #bunker-website > header .nav-content nav ul li.search-form-container {
    max-width: 10%;
    flex-basis: 30%;
    padding: 0;
    transition: max-width 0.15s;
    border-top: none;
  }
  #bunker-website > header .nav-content nav ul li.search-form-container:hover {
    max-width: 100%;
    transition: max-width 0.15s;
  }
  .corsi #bunker-website > header .nav-content nav ul li#link-corsi,
  .servizi #bunker-website > header .nav-content nav ul li#link-servizi,
  .clan #bunker-website > header .nav-content nav ul li#link-clan,
  .showcase #bunker-website > header .nav-content nav ul li#link-showcase,
  .trovaci #bunker-website > header .nav-content nav ul li#link-trovaci {
    border-top-color: var(--main-yellow);
  }
  #bunker-website > header .nav-content nav form[name="search-form"] {
    height: 100%;
  }
  #bunker-website > header .nav-content nav form[name="search-form"] input[name="search"] {
    border-top: var(--border-size) solid var(--main-dark);
    flex: 2 0 0;
    padding: 0.5rem 0;
    transition: flex-basis 0.25s, padding 0.25s;
  }
  #bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::-webkit-input-placeholder {
    font-size: small;
  }
  #bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::-moz-placeholder {
    font-size: small;
  }
  #bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]:-ms-input-placeholder {
    font-size: small;
  }
  #bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::-ms-input-placeholder {
    font-size: small;
  }
  #bunker-website > header .nav-content nav form[name="search-form"] input[name="search"]::placeholder {
    font-size: small;
  }
  #bunker-website > header .nav-content nav form[name="search-form"] button[type="submit"] {
    border-top: var(--border-size) solid var(--main-yellow);
    flex: 1 1 100%;
    transition: flex-basis 0.25s;
  }
  #bunker-website > header .nav-content nav form[name="search-form"]:hover,
  #bunker-website > header .nav-content nav form[name="search-form"]:active {
    max-width: 100%;
  }
  #bunker-website > header .nav-content nav form[name="search-form"]:hover input[name="search"],
  #bunker-website > header .nav-content nav form[name="search-form"]:active input[name="search"] {
    flex-basis: 75%;
    padding: 0.5rem;
    transition: flex-basis 0.25s, padding 0.25s;
  }
  #bunker-website > header .nav-content nav form[name="search-form"]:hover button[type="submit"],
  #bunker-website > header .nav-content nav form[name="search-form"]:active button[type="submit"] {
    flex-basis: 25%;
    transition: flex-basis 0.25s;
  }
  #bunker-website #services .macro-service {
    margin: 0;
  }
  #bunker-website #services .macro-service .sub-services {
    display: flex;
    font-size: x-large;
  }
  #bunker-website #services .macro-service .sub-services > ul {
    line-height: 0.935;
    flex-basis: 50%;
    list-style: none;
  }
  #bunker-website #services .macro-service .sub-services > ul > li {
    display: list-item;
  }
  #bunker-website #services .macro-service .sub-services > ul > li .sub-service-button {
    padding: 0;
  }
  #bunker-website #services .macro-service .sub-services > ul > li .sub-service-title {
    width: 100%;
    text-align: right;
    --active-padding: -0.075em;
  }
  #bunker-website #services .macro-service .sub-services > ul > li .sub-service-details {
    display: none;
    font-size: initial;
  }
  #bunker-website #services .macro-service .sub-services .sub-service-content {
    font-size: 0.7em;
    display: block;
    max-width: 35%;
    flex-basis: 50%;
    margin: 0.25rem 0 0.25rem 4em;
  }
  #bunker-website #services .macro-service .sub-services .sub-service-content h4 {
    margin-top: 0.75em;
    font-size: 1.15em;
  }
  #bunker-website #services .macro-service .sub-services .sub-service-content ul {
    list-style: none;
  }
  #bunker-website #services .macro-service .sub-services .sub-service-content ul li {
    display: inline;
  }
  #bunker-website #services .macro-service .sub-services .sub-service-content ul li:not(:last-child):after,
  #bunker-website #services .macro-service .sub-services .sub-service-content ul li:not(:last-child)::after {
    content: ",";
  }
  #bunker-website #services #services-nav {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10vh;
    font-size: smaller;
  }
  #bunker-website #services #services-nav ul {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  #bunker-website #services #services-nav ul li {
    flex: 0 1 auto;
  }
  #bunker-website #services #services-nav ul li button {
    padding: 1em 1.5em;
  }
  #bunker-website .details {
    font-size: 1.2rem;
  }
  #bunker-website .details .details-content h2 {
    font-size: 3.85em;
  }
  #bunker-website .details .details-content h2 .service-name,
  #bunker-website .details .details-content h2 .adjective,
  #bunker-website .details .details-content h2 .location {
    margin-top: -1.5rem;
  }
  #bunker-website footer {
    background-size: cover;
  }
  #bunker-website footer .copyright {
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
  }
  #bunker-website footer .copyright p {
    margin: 0;
    /*&:first-child {
                        text-align: right;
                    }

                    &:last-child {
                        text-align: left;
                    }*/
  }
  #bunker-website #share-dialog {
    font-size: 1em;
  }
  #bunker-website #share-dialog .social-icon {
    height: 2em;
    width: 2em;
  }
}
@media only screen and (min-width: 1024px) {
  #bunker-website > header {
    width: 100%;
  }
  #bunker-website > header .nav-content .logo {
    flex: 1 1 12.5%;
  }
  #bunker-website > header .nav-content nav {
    font-size: inherit;
  }
  #bunker-website #services .macro-service .sub-services > ul > li .sub-service-title {
    --active-padding: -0.25em;
  }
  #bunker-website #services .macro-service .sub-services .sub-service-content {
    max-width: 27.5%;
  }
  #bunker-website #services #services-nav {
    width: var(--content-width);
  }
  #bunker-website .details .details-content h2 {
    font-size: 6em;
  }
  #bunker-website #share-dialog {
    font-size: 1em;
  }
  #bunker-website #share-dialog .social-icon {
    height: 2.5em;
    width: 2.5em;
  }
}
@media only screen and (min-width: 1200px) {
  #bunker-website > header .nav-content {
    width: 70%;
  }
}
@media only screen and (min-width: 2650px) {
  #bunker-website > header .nav-content .logo {
    flex: 2 2 10%;
  }
}
/*# sourceMappingURL=style.min.css.map */