/*
  footer styles for TRAQLINE
*/
footer {
  color: var(--trq-black);
}

@-webkit-keyframes _menu_fade_in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes _menu_fade_in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes _fade_in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes _fade_in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes _fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes _fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes _progress_bar_stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes _progress_bar_stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@-webkit-keyframes rotate_360 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate_360 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes zoom_in_out {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoom_in_out {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}
/* pulsating buttons */
@-webkit-keyframes pulse {
  from {
    -webkit-box-shadow: 0 0 0 0 var(--solid-button-shadow-color);
            box-shadow: 0 0 0 0 var(--solid-button-shadow-color);
  }
}
@keyframes pulse {
  from {
    -webkit-box-shadow: 0 0 0 0 var(--solid-button-shadow-color);
            box-shadow: 0 0 0 0 var(--solid-button-shadow-color);
  }
}
@-webkit-keyframes outline_pulse {
  from {
    -webkit-box-shadow: 0 0 0 0 var(--line-button-shadow-color);
            box-shadow: 0 0 0 0 var(--line-button-shadow-color);
  }
}
@keyframes outline_pulse {
  from {
    -webkit-box-shadow: 0 0 0 0 var(--line-button-shadow-color);
            box-shadow: 0 0 0 0 var(--line-button-shadow-color);
  }
}
@-webkit-keyframes pulse_dark {
  from {
    -webkit-box-shadow: 0 0 0 0 var(--line-button-shadow-color-ondark);
            box-shadow: 0 0 0 0 var(--line-button-shadow-color-ondark);
  }
}
@keyframes pulse_dark {
  from {
    -webkit-box-shadow: 0 0 0 0 var(--line-button-shadow-color-ondark);
            box-shadow: 0 0 0 0 var(--line-button-shadow-color-ondark);
  }
}
@-webkit-keyframes logo_train {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes logo_train {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
._traqline_button, .solid-button a,
.solid-button button,
.line-button button,
.line-button a, .caret-button a,
.caret-button b {
  display: inline-block;
  position: relative;
  color: white;
  background: var(--primary); /* #0990d5;*/
  line-height: var(--button-line-h);
  padding: var(--button-padding);
  border-radius: var(--button-border-radius);
  border: 0;
  text-decoration: none;
  text-transform: none;
  font-family: var(--font);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 5;
}

/*

buttons for traqline

*/
.solid-button, .line-button, .caret-button {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.caret-button a,
.caret-button b {
  background: none;
  color: var(--primary);
  padding: 0;
}

.caret-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.caret-button::after {
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border: 3px solid var(--primary);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  border-bottom-width: 0;
  border-left-width: 0;
  margin-left: 0.9rem;
  -webkit-transition: margin 0.3s ease;
  -o-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.caret-button:hover::after {
  margin-left: 30px;
  border-color: currentColor;
}
.caret-button a:hover, .caret-button:hover a {
  color: var(--trq-navy);
}

.textlink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-family: var(--font);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  color: var(--primary);
  letter-spacing: var(--button-letter-spacing);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 5;
}
.textlink a::after {
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border: 3px solid var(--primary);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  border-bottom-width: 0;
  border-left-width: 0;
  margin-left: 0.9rem;
  -webkit-transition: margin 0.3s ease;
  -o-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.textlink:hover a, .textlink a:hover {
  color: var(--trq-navy);
}
.textlink:hover a::after {
  margin-left: 18px;
  border-color: currentColor;
}

/* NOTE:
   This rule and its corresponding usage will be removed in a future update
   Recommended usage for future is to always wrap more than two of these buttons in
   .button-group.
   eg:
   <div class='button-group'> <!-- for buttons that *should not* wrap, add class "inline" -->
    <div class='line-button'><a href="#">button 1</a></div>
    <div class='line-button'><a href="#">button 2</a></div>
   </div>
*/
.solid-button:not(:first-of-type),
.line-button:not(:first-of-type) {
  margin-left: 1rem;
}

.line-button a,
.line-button button {
  line-height: calc(var(--button-line-h) - 2px);
  background: transparent;
  color: var(--line-button-text-color);
  border: 1px solid var(--line-button-text-color);
}

.solid-button a:hover,
.solid-button button:hover {
  background: var(--solid-button-hover-color);
  -webkit-box-shadow: 0 0 0 18px transparent;
          box-shadow: 0 0 0 18px transparent;
  -webkit-animation: pulse 1s ease-in-out infinite;
          animation: pulse 1s ease-in-out infinite;
}

.line-button a:hover,
.line-button button:hover {
  -webkit-box-shadow: 0 0 0 18px transparent;
          box-shadow: 0 0 0 18px transparent;
  -webkit-animation: outline_pulse 1s ease-out infinite;
          animation: outline_pulse 1s ease-out infinite;
}

.dark .line-button a,
.dark .line-button button {
  color: var(--line-button-text-color-ondark);
  background: transparent;
  border: 1px solid var(--line-button-text-color-ondark);
  display: inline-block;
}

.dark .line-button a:hover,
.dark .line-button button:hover {
  -webkit-box-shadow: 0 0 0 18px transparent;
          box-shadow: 0 0 0 18px transparent;
  -webkit-animation: pulse_dark 1s ease-in-out infinite;
          animation: pulse_dark 1s ease-in-out infinite;
}

.toggle-button {
  text-align: center;
  height: 12px;
  width: 22px;
}

.toggle-button,
.toggle-button + label {
  display: inline-block;
}

.toggle-button + label {
  margin-left: 0.2rem;
}

.toggle-wrapper {
  width: 100%;
  height: 100%;
  padding: 1px;
  position: relative;
  display: block;
  border-radius: 12px;
  background-color: var(--lightgrey3);
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4);
          box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4);
}

.toggle-wrapper::before {
  display: block;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 12px;
  position: absolute;
  left: 1px;
  content: "";
  -webkit-transition: 0.1s left ease;
  -o-transition: 0.1s left ease;
  transition: 0.1s left ease;
}

/* on state */
input.toggle-button-control {
  /* take this out of view since this is only acting to hold native state, but not for visuals */
  -webkit-transform: translateX(-300vw);
      -ms-transform: translateX(-300vw);
          transform: translateX(-300vw);
  width: 1px;
  height: 1px;
  border: 0 none;
  opacity: 0;
  overflow: hidden;
  display: block;
}

input.toggle-button-control:checked + .toggle-button .toggle-wrapper::before {
  left: 50%;
}

input.toggle-button-control:checked + .toggle-button .toggle-wrapper {
  background-color: skyblue; /* default bg color */
}

input.toggle-button-control:checked + .toggle-button.green .toggle-wrapper {
  background-color: var(--toggle-button-accent);
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 1rem;
}
.button-group.inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.button-group [class*=button] {
  margin: 0;
}
@media (max-width: 640px) {
  .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .button-group.center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* end of buttons */
/*

forms

*/
:root {
  --form-column-input-padding: 1.32vw;
  --form-column-input-font-size: var(--f-15);
  --form-column-input-line-height: var(--lh-22);
  --inline-form-input-text-size: var(--f-15);
}

form .subtext {
  font-size: var(--subtext-font-size);
  line-height: var(--subtext-line-height);
  letter-spacing: var(--ls5);
}

label.terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  gap: 0.6rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
label.terms span {
  display: inline-block;
}
label.terms input {
  border-width: 0;
  border-block-width: 0;
  outline: 0 none;
  border-image-width: 0;
}

.form-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.form-column .input-element {
  width: 100%;
  margin-bottom: 1.5rem;
}

.form-column input[type=text], .form-column input[type=email] {
  width: 100%;
  min-height: var(--lh-37, 37px);
  border-radius: var(--lh-37, 37px);
  border: 0 none;
  font-size: var(--form-column-input-font-size);
  line-height: var(--form-column-input-line-height);
  font-weight: 400;
  padding: 0.67rem var(--form-column-input-padding, 1.32vw);
  background-color: white;
}

.form-column button {
  margin: 1.6vw 0;
  margin-bottom: 0;
}

.inline-form {
  --button-font-size: 1.111vw;
  --button-line-h: 2.014vw;
}
@media screen and (max-width: 768px) {
  .inline-form {
    --button-font-size: 3.6364vw;
    --button-line-h: 6.6vw;
  }
}
.inline-form form.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
.inline-form .input-element input {
  border: 0 none;
  border-bottom: 1px solid #999;
  background: transparent;
  font-family: var(--font);
  font-size: var(--inline-form-input-text-size, 1.04vw);
  line-height: 2vw;
  letter-spacing: var(--ls1);
  min-width: 200px;
  width: 100%;
}
.inline-form .input-element ::-webkit-input-placeholder {
  color: #999;
}
.inline-form .input-element ::-moz-placeholder {
  color: #999;
}
.inline-form .input-element :-ms-input-placeholder {
  color: #999;
}
.inline-form .input-element ::-ms-input-placeholder {
  color: #999;
}
.inline-form .input-element ::placeholder {
  color: #999;
}
.inline-form .input-element {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.inline-form .solid-button {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.inline-form .subtext {
  font-size: 12px;
  line-height: 15px;
  padding-top: 1vw;
}
.inline-form .subtext a {
  color: currentColor;
  text-decoration: none;
}
.inline-form .subtext a:hover {
  color: var(--trq-dark-gray);
}
.inline-form button {
  --button-padding: 4px 25px;
  --line-button-text-color: var(--trq-medium-blue);
  --line-button-shadow-color: var(--trq-medium-blue);
  font-family: var(--font);
  font-size: var(--button-font-size);
  line-height: var(--button-line-h);
}
.inline-form p {
  margin-top: 8px;
}

@media screen and (max-width: 640px) {
  :root {
    --form-column-input-padding: var(--f-16);
  }
}
/* end of forms */
/* Footer section styles */
.body-footer {
  background-color: var(--lightgrey2);
  --footer-top-spacing: 30px;
  --footer-bottom-spacing: 20px;
  --fs: calc(15rem / 16);
  --lh: calc(27rem / 16);
  padding: 1px 0;
  font: normal normal 450 var(--fs)/var(--lh) var(--font);
  letter-spacing: var(--ls5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: var(--font);
}
.body-footer * {
  font-family: inherit;
}

.body-footer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: var(--footer-top-spacing);
  margin-bottom: var(--footer-bottom-spacing);
}

.copyrights {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-left: 6px;
}

.socials, .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact a {
  color: currentColor;
  text-decoration: none;
}

.email a {
  text-decoration: underline;
}

.socials > div,
.contact > div {
  padding: 3px;
  margin: 0 3px;
}

.company-contact .contact {
  text-align: right;
}

.footer-content-box {
  width: var(--page-width);
  margin: auto;
}

.subscribe {
  max-width: 52%;
}
.subscribe h2 {
  margin-bottom: 6px;
  color: var(--trq-medium-blue);
}
.subscribe h6 {
  margin-top: 6px;
  font-weight: var(--weight6);
  font-size: calc(var(--f9) - 4px);
  line-height: calc(var(--lh9) - 4px);
  letter-spacing: 0;
}
.subscribe .input-element input {
  border: 0 none;
  border-bottom: 1px solid #999;
  background: transparent;
  font-family: var(--font);
  font-size: var(--form-column-input-font-size, 15px);
  line-height: var(--form-column-input-line-height);
  font-weight: var(--weight6);
  letter-spacing: var(--ls1);
  min-width: 200px;
}
@media screen and (max-width: 800px) {
  .subscribe .input-element input {
    margin: 3vw 0 1vw;
  }
}
.subscribe .input-element ::-webkit-input-placeholder {
  color: #999;
}
.subscribe .input-element ::-moz-placeholder {
  color: #999;
}
.subscribe .input-element :-ms-input-placeholder {
  color: #999;
}
.subscribe .input-element ::-ms-input-placeholder {
  color: #999;
}
.subscribe .input-element ::placeholder {
  color: #999;
}
.subscribe .subtext {
  font-size: var(--subtext-font-size, 12px);
  line-height: var(--subtext-line-height, 15px);
  padding-top: 1vw;
}
.subscribe .subtext a {
  color: currentColor;
  text-decoration: underline;
}
.subscribe .subtext a:hover {
  color: var(--trq-dark-gray);
}
.subscribe button {
  --button-padding: 4px 25px;
  --line-button-text-color: var(--trq-medium-blue);
  --line-button-shadow-color: var(--trq-medium-blue);
  font-family: var(--font);
  font-size: var(--button-font-size);
  font-weight: var(--weight6);
  line-height: var(--button-line-h);
}
.subscribe p {
  margin-top: 8px;
}

.infographic {
  max-width: 32%;
}
.infographic .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.infographic button {
  margin-left: 20px;
}

.back_to_top {
  width: 40px;
  height: 40px;
  opacity: 1;
  position: fixed;
  bottom: 20px;
  text-align: center;
  right: 20px;
  display: none;
  background: var(--accent);
  z-index: 9;
  border-radius: 50px;
}

.back_to_top .fa {
  color: var(--white);
  font-size: var(--font20);
  padding: 8px 0;
}

.back_to_top:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.cookies-panel {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: rgba(37, 37, 37, 0.87);
  z-index: 999;
  padding: 8px 35px;
  display: none;
  width: 100%;
}

.cookieswrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookiesleft {
  width: 80%;
}

.cookiesleft p {
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.cookiesleft p a {
  color: #50c2fd;
}

.cookies-panel .solid-btn a {
  font-size: var(--font14);
  padding: 4px 12px;
}

@media screen and (max-width: 800px) {
  .body-footer .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .body-footer .content.forms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .body-footer .content.forms .subscribe, .body-footer .content.forms .infographic {
    width: 100%;
    max-width: 100% !important;
    padding: 1.2rem;
    text-align: left;
  }
  .subscribe .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
  .infographic .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .infographic button {
    margin: 0;
    margin-top: 0.6rem;
  }
  .copyrights {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .socials, .contact {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1280px) {
  .body-footer .content.forms .subscribe {
    max-width: 56%;
  }
  .body-footer .content.forms .infographic {
    max-width: 42%;
  }
}
@media (min-width: 801px) and (max-width: 960px) {
  .subscribe > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .subscribe h2 {
    font-size: var(--f-24);
    width: unset;
  }
  .subscribe h6 {
    font-size: var(--f-15);
    line-height: var(--lh-22);
    width: unset;
  }
  .subscribe-form-block {
    margin-top: 1rem;
  }
}
@media (min-width: 961px) and (max-width: 1100px) {
  .subscribe h2 {
    font-size: var(--f-27);
  }
  .subscribe h6 {
    font-size: var(--f-15);
    line-height: var(--lh-22);
    width: 48%;
  }
  .subscribe .subscribe-form-block {
    margin-left: 1rem;
  }
  .subscribe .subscribe-form-block form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .subscribe .subscribe-form-block form .input-element {
    margin-bottom: 0.6rem;
  }
  .subscribe .subscribe-form-block [class*=button] {
    margin-left: 0;
  }
}
/* done with footer section styles: desktop *//*# sourceMappingURL=footer.css.map */