* {
  box-sizing: border-box;
  --green: #006039;
  --green-bg: #ECFAEB;
  --greener-bg: #ECFAEB;
  --light: #009942;
  --dark: #00472A;
  --highlight: #D0FF71;
  --cream: #EFEDE4;
}
html,
body {
  min-height: 100%;
  margin: 0;
}
body {
  background: #fff;
  color: #111;
  color: var(--green);
  font: 16px/1.4 "Sofia Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
body.mobile-menu-open {
  overflow: hidden;
}
@media (min-width: 681px) {
  body {
    min-width: 1140px;
  }
}
h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: 46px; letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: 36px; letter-spacing: -0.01em; font-weight: 700; }
h3 { font-size: 32px; letter-spacing: -0.01em; font-weight: 700; }
h4 { font-size: 22px; letter-spacing: -0.01em; font-weight: 400; }
@media (max-width: 680px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  h3 { font-size: 26px; }
  h4 { font-size: 20px; }
  h1, h2, h3, h4 {
    line-height: 1.1;
  }
  [animate] h1, [animate] h2, [animate] h3, [animate] h4 {
    line-height: 1.3;
  }
}
a { color: currentColor; text-decoration: none; }
b { font-weight: 600; }
p { margin: 0; }
.color-green { background-color: var(--green); }
.color-light-green { background-color: var(--light); }
.color-cream { background-color: var(--cream); }
.color-cream.with-border {
  border-top: 1px solid rgb(0 0 0 / 8%);
}
.highlight {
  color: var(--highlight);
}
.center {
  text-align: center;
}
.br::after {
  content: "\A";
  white-space: pre;
}
.button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  background: var(--highlight);
  background: var(--green);
  box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  color: var(--green);
  color: var(--highlight);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 0 36px 2px;
  height: 60px;
}
.cta .button {
  transition: transform .1s;
}
@media (pointer: fine) {
  .cta .button:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 680px) {
  .button {
    font-size: 18px;
    padding: 0 28px 2px;
    height: 56px;
  }
}
.small-button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
  background: var(--green);
  color: var(--highlight);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  height: 54px;
  margin-top: 4px;
  padding: 0 24px;
}
.badge {
  display: inline-flex;
  border-radius: 99px;
  color: var(--green);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section {
  padding: 100px 0;
  padding: 120px 0;
  padding: 140px 0;
}
@media (max-width: 680px) {
  .section {
    padding: 40px 0;
  }
}
.section-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
  gap: 8px;
}
.section-header h3 {
  color: var(--green);
  font-size: 42px;
  font-weight: 700;
}
.section-header h4 {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 680px) {
  .section-header {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .section-header h3 {
    font-size: 36px;
  }
  .section-header h3 + h4 {
    margin-top: 10px;
  }
}
.with-bg {
  position: relative;
  padding: 140px 0;
  margin-top: -20px;
}
.with-bg .container {
  position: relative;
  z-index: 2;
}
.with-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/images/bg.webp);
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: cover;
  position: absolute;
  top: 0;
  z-index: 0;
  filter: grayscale(1.0);
  opacity: .1;
}
.with-bg::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--green), transparent);
  z-index: 0;
}
@media (max-width: 680px) {
  .with-bg {
    padding: 100px 0;
  }
}
[animate] {
  overflow: hidden;
  position: relative;
}
[animate] > * {
  transition-timing-function: cubic-bezier(.19,1,.22,1);
  transform: translateY(100%);
}
[animate].visible > * {
  animation: animate-in .8s forwards;
}
@keyframes animate-in {
    0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
@media (max-width: 680px) {
  [animate] {
    animation-delay: 0s !important; 
  }
}
.page-header {
  color: var(--highlight);
  text-align: center;
  padding: 0;
  padding-bottom: 48px;
}
.page-header-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 680px) {
  .page-header {
    padding-top: 16px;
    padding-bottom: 54px;
  }
  .page-header-inner {
    gap: 6px;
  }
}
#site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
#site,
#site .page {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#site .page {
  background: var(--cream);
}
#site .page > div {
  flex-grow: 1;
}
#header {
  background: var(--green);
}
#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}
@media (max-width: 680px) {
  #header .header-inner {
    padding-left: 20px;
  }
}
#header .logo {
  display: flex;
  font-size: 32px;
  font-weight: 600;
  position: relative;
}
#header .logo-inner {
  display: flex;
}
#header .logo img {
  height: 52px;
  margin-left: 6px;
}
@media (max-width: 680px) {
  #header .logo img {
    height: 36px;
    height: 42px;
  }
}
#header .reunify {
  line-height: 1;
  color: var(--highlight);
  font-size: 13px;
  font-weight: 300;
  position: relative;
  top: 19px;
  margin-left: 12px;
}
#header .reunify b {
  display: block;
  font-weight: 600;
}
#header .reunify-inner {
  position: relative;
  padding-left: calc(16px + 1px);
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  gap: 2px;
}
#header .reunify-inner::before {
  content: "";
  background: var(--highlight);
  opacity: .5;
  height: 26px;
  width: 1px;
  position: absolute;
  top: 1px;
  left: 0;
}
@media (max-width: 680px) {
  #header .reunify {
    top: 5px;
  }
  body:not(.start-page) #header .reunify {
    opacity: 0;
  }
}
@media (max-width: 440px) {
  #header .reunify {
    position: absolute;
    top: 38px;
    margin-left: 43px;
  }
  #header .reunify-inner {
    display: block;
    padding: 0;
  }
  #header .reunify-inner b {
    display: inline;
  }
  #header .reunify-inner::before {
    display: none;
  }
}
#header .links {
  display: flex;
  gap: 8px;
}
#header .links .link {
  background: rgb(0 0 0 / 0%);
  border-radius: 99px;
  color: var(--highlight);
  line-height: 38px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color .1s;
  padding: 0 16px;
}
#header .links .link:hover {
  background: rgb(0 0 0 / 20%);
}
#header .toggle {
  cursor: pointer;
  background: rgb(0 0 0 / 32%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  width: 42px;
  height: 42px;
  user-select: none;
}
#mobile-menu {
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 300;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 24px;
  padding-left: 20px;
}
body:not(.mobile-menu-open) #mobile-menu {
  display: none;
}
#mobile-menu .top {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
#mobile-menu .mobile-menu-header,
#mobile-menu .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mobile-menu .logo img {
  height: 36px;
  height: 42px;
  margin-left: 6px;
}
#mobile-menu .toggle {
  cursor: pointer;
  background: rgb(0 0 0 / 24%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  width: 42px;
  height: 42px;
  user-select: none;
}
#mobile-menu .mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding-left: 6px;
  gap: 24px;
}
#mobile-menu .mobile-menu-links a {
  display: flex;
  justify-content: center;
  color: var(--highlight);
}
#mobile-menu .bottom {
  color: var(--highlight);
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 0;
}
#mobile-menu .bottom b {
  font-weight: 600;
}
#start .intro {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  gap: 36px;
}
#start .intro h1 {
  font-size: 52px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 680px) {
  #start .section {
    padding: 60px 0;
  }
  #start .intro {
    gap: 20px;
  }
  #start .intro h1 {
    font-size: 44px;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    line-height: 1.1;
    padding-bottom: 5px;
  }
  #start .br {
    height: 10px;
    display: block;
  }
}
#start .intro h4 {
  font-family: "Sofia Sans", sans-serif;
  font-size: 26px;
  line-height: 1.4;
}
#start .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  position: relative;
  z-index: 1;
}
#start .cta .button {
  background: var(--highlight);
  color: var(--green);
}
#start .section:has(.hero-video) {
  padding: 0;
}
#start .hero-video {
  width: 100%;
}
#start .hero-video video {
  display: block;
  min-width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: 0 70%;
}
@media (max-width: 680px) {
  #start .hero-video {
    overflow: hidden;
  }
  #start .hero-video video {
    height: 320px;
    object-position: 0 0%;
  }
}
#start .features {}
#start .features-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 680px;
  gap: 30px;
}
#start .features-header h2 {
  font-size: 44px;
}
#start .features-header p {
  font-size: 22px;
  line-height: 1.7;
}
#start .feature {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  padding: 60px 20px;
  margin-bottom: 30px;
  gap: 40px;
}
#start .more-features {
  font-family: "Shadows Into Light";
  font-size: 48px;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 680px) {
  #start .feature {
    margin-bottom: 20px;
    padding: 40px 10px;
  }
  #start .more-features {
    margin-top: 20px;
  }
}
/*
#start .features {
  color: var(--dark);
  padding: 40px 0;
}
#start .features h3 {
  color: currentColor;
}
#start .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
#start .feature h3 {
  font-size: 22px;
}
#start .feature p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
#start .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  margin-bottom: 16px;
  width: 120px;
  background: hsl(49.09deg 23.58% 94.57%);
  height: 120px;
  border-radius: 50%;
}
#start .feature-icon svg {
  width: 80px;
  height: 80px;
}
@media (max-width: 680px) {
  #start .features {
    padding: 20px;
  }
  #start .feature {
    margin: 20px 0;
  }
  #start .feature-icon {
    margin-bottom: 0
  }
}
*/
#start .image-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 600;
  margin-top: 50px;
  gap: 80px;
}
#start .image-text .small-button {
  margin-top: 24px;
}
#start .image-text img {
  /* height: 180px; */
}
#start .image-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
#start .image-text-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  font-size: 28px;
  font-weight: 600;
}
#start .image-text-wrapper p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 20px;
  line-height: 1.8;
}
#start .image-text-wrapper h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
#start .image-text-wrapper h4 {
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}
#start .image-text-wrapper .text {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  word-break: break-word;
}
#start .image-wrapper {
  max-width: 50%;
  position: relative;
}
#start .image-wrapper img {
  border-radius: 50px 0 0 100px;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 1 / 1;
  filter: grayscale(1.0);
}
#start .image-text-wrapper .image-wrapper {
  flex: 0 0 auto;
}
#start .image-text-wrapper .image-wrapper img {
  display: block;
  max-width: 100%;
}
#start .image-wide-block {
  background-image: url(/assets/tillmobil-woman.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 500px;
}
@media (max-width: 680px) {
  #start .image-text-header {
    display: none;
    font-size: 24px;
  }
  #start .image-text {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
  }
  #start .image-text-wrapper h3 {
    font-size: 36px;
  }
  #start .image-text-wrapper p {
    font-size: 16px;
  }
  #start .image-wide-block {
    margin-top: 60px;
  }
  #start .image-text-wrapper .image-wrapper {
    padding: 0 20px;
  }
}
@media (min-width: 681px) {
  #start .start .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -60px;
  }
  #start .start [class^=col-] {
    padding: 0 60px;
  }
}
#start .timeline::before {
  content: "";
  background-color: var(--green);
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  height: 500px;
  width: 4px;
}
#start .text-item h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}
#start .text-item p {
  font-size: 22px;
  line-height: 1.7;
}
#start .text-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
@media (max-width: 680px) {
  #start .text-item {
    margin: 40px 0;
  }
  #start .text-item-content {
    gap: 22px;
  }
  #start .text-item .read-more {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
#start .quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  gap: 36px;
}
#start .quote-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#start .quote-rating svg {
  width: 40px;
  height: 40px;
}
#start .quote-rating .icons {
  display: flex;
  color: var(--highlight);
  gap: 4px;
}
#start .quote-rating .text {
  font-size: 16px;
}
#start .quote-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
#start .quote-author {
  font-size: 22px;
}
@media (max-width: 680px) {
  #start .quote-text {
    font-size: 26px;
  }
  #start .quote-author {
    font-size: 20px;
  }
}
#about {
  padding-bottom: 40px;
}
#about p b {
  font-weight: 700;
}
#about .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--highlight);
  padding-bottom: calc(200px - 20px);
}
#about .intro h1 {
  text-align: center;
}
#about .intro .badge {
  background: rgb(0 0 0 / 20%);
  color: #fff;
}
#about .image {
  margin-top: -200px;
}
#about .image img {
  display: block;
  border-radius: 4px;
  max-width: 100%;
}
#about .image-description {
  font-size: 14px;
  opacity: .7;
  padding: 8px 0;
}
#about .quote {
  font-size: 32px;
  font-weight: 600;
  padding: 0 160px;
  margin-top: 20px;
  margin-bottom: 40px;
}
#about .about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#about .about-text p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
}
#about .mff {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 600;
  margin-top: 80px;
  gap: 80px;
}
#work {}
#work .work-inner  h3 {
  margin-bottom: 16px;
}
#work .work-inner  h3:not(:first-child) {
  margin-top: 1em;
}
#work .work-inner h4 {
  color: var(--light);
  font-weight: 700;
}
#work .about p {
  font-size: 18px;
  line-height: 1.5;
}
#work .about a {
  display: inline-block;
  margin-top: 4px;
  font-size: 20px;
  color: var(--light);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  height: 31px;
}
@media (max-width: 680px) {
  #work .work-inner h3 {
    font-size: 30px;
  }
  #work .about {
    margin-bottom: 40px;
  }
}
#work .jobs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#work .job {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 30px 35px;
  gap: 8px;
}
#work .job h4 {
  font-size: 26px;
  margin-bottom: 6px;
}
@media (min-width: 681px) {
  #work .col-sm-8 {
    padding-left: 30px;
  }
}
#work .jobs-footer {
  display: none;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}
#about .mff img {
  height: 180px;
}
#about .mff .divider {
  background: rgb(0 0 0 / 10%);
  width: 1px;
  height: 60px;
}
@media (max-width: 680px) {
  #about .intro {
    padding-bottom: calc(60px - 10px);
  }
  #about .image {
    margin-top: -60px;
  }
  #about .quote {
    font-size: 30px;
    margin: 10px 0;
    padding: 0;
  }
  #about .mff {
    flex-direction: column;
    text-align: center;
    font-size: 24px;
    margin-top: 60px;
    gap: 40px;
  }
  #about .mff .divider {
    display: none;
  }
}
#telecom {
  padding-bottom: 40px;
}
#telecom .telecom-header {
  text-align: center;
  margin-bottom: 60px;
}
#telecom .telecom-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 60px;
  gap: 30px;
}
@media (max-width: 680px) {
  #telecom .telecom-footer {
    margin-top: 30px;
  }
}
#telecom [class^=col-sm] {
  margin-bottom: 30px;
}
#telecom .feature {
  background: #fff;
  border-radius: 8px 48px 24px 24px;
  padding: 30px;
  padding: 35px;
  height: 100%;
}
#telecom .feature h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
#telecom .feature p {
  font-family: "Sofia Sans", sans-serif;
  line-height: 1.6;
}
#telecom .features-footer {
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}
@media (max-width: 680px) {
  #telecom h1 {
    font-size: 34px;
  }
  #telecom .features-footer {
    margin-top: 20px;
  }
}
#contact {
  padding-bottom: 0px;
}
#contact h3 {
  font-size: 28px;
  font-size: 26px;
}
#contact .link {
  color: var(--light);
  font-size: 22px;
  font-weight: 600;
}
#contact .small {
  color: #999;
  font-size: 16px;
}
#contact .contact-header {
  text-align: center;
  margin-bottom: 60px;
}
#contact .contact-header .badge {
  margin-bottom: 16px;
}
#contact .contact-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  border-radius: 12px;
  padding: 30px;
  padding: 35px;
  gap: 16px;
}
#contact .contact-item p {
  line-height: 1.5;
}
#contact .contact-item-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .contact-item-icon {
  background: var(--green-bg);
  border-radius: 8px;
  color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 180px;
  margin-bottom: 10px;
}
#contact .jobs {
  text-align: center;
  margin-top: 80px;
}
#contact .jobs h3 {
  margin-bottom: 12px;
}
#contact .jobs p {
  line-height: 1.8;
  font-size: 20px;
}
#contact .jobs a {
  display: inline-block;
  color: var(--light);
  border-bottom: 1px solid currentColor;
  height: 31px;
  font-weight: 600;
}
@media (max-width: 680px) {
  #contact {
    padding-bottom: 0;
  }
  #contact .contact-header {
    margin-bottom: 30px;
  }
  #contact .col-sm-4 + .col-sm-4 {
    margin-top: 20px;
  }
  #contact .contact-item {
    text-align: center;
  }
  #contact .contact-item-icon-wrapper {
    margin: 0;
  }
  #contact .jobs {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
#footer {
  background: var(--green);
  background: var(--dark);
  color: var(--highlight);
  font-size: 18px;
  padding: 100px 0;
}
@media (max-width: 680px) {
  #footer {
    padding: 60px 0;
  }
}
#footer h4 {
  font-size: 18px;
  font-weight: 600;
}
#footer .company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: -2px;
}
#footer .company p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
  margin-top: 6px;
}
#footer .company a {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 680px) {
  #footer h4 {
    margin-top: 32px;
  }
  #footer .company {
    align-items: center;
    margin: 0 0 12px;
  }
}
#footer .logo img {
  height: 52px;
  height: 78px;
  position: relative;
}
#footer .links,
#footer .items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding: 24px 0; */
  gap: 12px;
}
#footer .links a {
  border-bottom: 1px solid transparent;
  color: var(--highlight);
  font-weight: 300;
  margin-bottom: -1px;
}
#footer .links a:hover {
  border-bottom: 1px solid var(--highlight);
}
#footer .items {
  gap: 24px;
}
#footer .address {
  font-size: 20px;
}
#footer .title {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
#footer .email .title {
  margin-bottom: 0px;
}
#footer .email,
#footer .phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
}
#footer .email a,
#footer .phone a {
  font-size: 24px;
  font-weight: 600;
}
#footer .socials {
  display: none;
  color: var(--highlight);
  margin-top: 1.5em;
}
#footer .socials-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}
#footer .socials-icons {
  display: flex;
  align-items: center;
  position: relative;
  left: -4px;
  gap: 8px;
}
#footer .socials a {
  transition: transform .1s;
}
#footer .socials a:hover {
  transform: rotate(-10deg) scale(1.2);
}
#footer .socials svg {
  width: 38px;
  height: 38px;
}
#footer .socials .instagram svg {
  width: 34px;
  width: 48px;
  height: 34px;
  height: 48px;
}
@media (max-width: 680px) {
  #footer .items,
  #footer .links {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }
  #footer .links {
    justify-content: center;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  #footer .title {
    display: block;
    text-align: center;
    width: 100%;
  }
}
#copyright {
  background: var(--green);
  background: var(--dark);
  color: var(--highlight);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 680px) {
  #copyright {
    font-size: 14px;
  }
}
#error {
  background: var(--green);
  color: var(--highlight);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 120px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
#error a {
  border-bottom: 1px solid currentColor;
  font-size: 18px;
}
@media (max-width: 680px) {
  #error {
    padding: 160px 0;
  }
}
