@charset "UTF-8";
/* easeOutBack */
/* ––––––––––––––––––––––––––––––––––
RESET
–––––––––––––––––––––––––––––––––––*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

a {
  cursor: pointer;
}

/* ––––––––––––––––––––––––––––––––––
COLORS
–––––––––––––––––––––––––––––––––––*/
:root {
  --primary: #111;
  --white: #fff;
  --red: #d02030;
}

.clr--white {
  color: var(--white);
}

.clr--red {
  color: var(--red);
}

body {
  color: var(--primary);
}

/* ––––––––––––––––––––––––––––––––––
TYPE
–––––––––––––––––––––––––––––––––––*/
html {
  font-size: 62.5%;
  font-family: "Barlow", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

:root {
  --fs-base: 1.5rem;
}

body {
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.25;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 15px;
}

.heading--1 {
  font-family: "Barlow Semi Condensed";
  font-size: 5.5rem;
  letter-spacing: -0.025em;
  font-weight: bold;
  line-height: 0.8;
}

.heading--2 {
  font-family: "Barlow Semi Condensed";
  font-size: 4rem;
  letter-spacing: -0.025em;
  font-weight: bold;
  line-height: 0.8;
}

.heading--3 {
  font-family: "Barlow Semi Condensed";
  font-size: 3.5rem;
  letter-spacing: -0.025em;
  font-weight: bold;
  line-height: 0.8;
}

.heading--4 {
  font-family: "Barlow Semi Condensed";
  font-size: 2rem;
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1;
}

.sub-heading--1 {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.sub-heading--2 {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.sub-heading--3 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.display--1 {
  font-size: 2.2rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.display--2 {
  font-size: 2.2rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

@media screen and (min-width: 1020px) {
  .sub-heading--1 {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .sub-heading--2 {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 80em) {
  .heading--1 {
    font-size: 8.5rem;
  }

  .heading--2 {
    font-size: 5.5rem;
  }

  .display--1 {
    font-size: 3rem;
    letter-spacing: -0.025em;
    font-weight: 700;
  }
}
strong {
  font-weight: 700;
}

.nested-bullets {
  margin-top: 20px;
}
.nested-bullets li {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 10px;
  margin-left: 30px;
}
.nested-bullets li:first-child {
  margin-top: 5px;
}
.nested-bullets li:before {
  position: absolute;
  display: block;
  content: "";
  top: 15px;
  left: -28px;
  width: 16px;
  height: 2px;
  background: var(--red);
}
.nested-bullets li ul {
  margin-top: 10px;
  margin-bottom: 20px;
}
.nested-bullets li ul li {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-top: 10px;
  margin-left: 0;
}
.nested-bullets li ul li:before {
  top: 12px;
  left: -22px;
  width: 10px;
}
.nested-bullets li ul li ul {
  margin-bottom: 0;
}
.nested-bullets li ul li ul li {
  margin-left: 22px;
}

@media screen and (min-width: 1020px) {
  .nested-bullets {
    margin-top: 0;
  }
  .nested-bullets li {
    font-size: 2.2rem;
    margin-top: 10px;
    margin-left: 25px;
  }
  .nested-bullets li ul {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .nested-bullets li ul li {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
.large-bullets {
  margin-left: 0;
}
.large-bullets li {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 15px;
  margin-left: 30px;
}
.large-bullets li:first-child {
  margin-top: 0px;
}
.large-bullets li:before {
  position: absolute;
  display: block;
  content: "";
  top: 15px;
  left: -28px;
  width: 16px;
  height: 2px;
  background: white;
}

@media screen and (min-width: 1020px) {
  .large-bullets {
    margin-left: 30px;
  }
  .large-bullets li {
    font-size: 2rem;
  }
}
/* ————————————————————–––––––
PADDING
————————————————————––––––– */
.mb--1 {
  margin-bottom: 1em;
}

.mb--2 {
  margin-bottom: 1em;
}

.mb--3 {
  margin-bottom: 2em;
}

/* ————————————————————–––––––
Container
————————————————————––––––– */
.container {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 0 20px;
}

.container--md {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

.container--sm {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1020px) {
  .container, .container--md, .container--sm {
    padding: 0 60px;
  }
}
/* ————————————————————–––––––
Flex
————————————————————––––––– */
:root {
  --gap:30px;
}

@media screen and (min-width: 1020px) {
  :root {
    --gap:60px;
  }
}
[class^=flex], [class*=flex] {
  display: flex;
}

.flex--all {
  justify-content: center;
  align-items: center;
}

.flex--vertical {
  align-items: center;
}

.flex--horizontal {
  justify-content: center;
}

.flex--between {
  justify-content: space-between;
}

.flex--end {
  justify-content: flex-end;
}

.flex--reverse {
  flex-direction: row-reverse;
}

.flex--has-gap {
  gap: var(--gap);
}

[class^=flex-row], [class*=flex-row] {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1020px) {
  [class^=flex-row], [class*=flex-row] {
    flex-direction: row;
  }
}
.flex-row > * {
  flex-basis: 100%;
}

.flex-row--2 > * {
  flex-basis: 50%;
}

.flex-row--3 > * {
  flex-basis: 33.333333%;
}

.flex-row--4 > * {
  flex-basis: 25%;
}

.flex-row--5 > * {
  flex-basis: 20%;
}

/* ————————————————————–––––––
Image size
————————————————————––––––– */
.img--full img {
  display: block;
  width: 100%;
  height: auto;
}

.img--fit img, .img--fit video {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid--full video {
  width: 100%;
  height: auto;
}

.vid--fit video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=bones.scss.map */
main {
  z-index: 1;
  position: relative;
}

header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
}
header .header_inner {
  height: 90px;
}
header .header_nav {
  display: none;
  z-index: 888;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 90px);
  padding: 30px 20px;
  background: #52667b url("../img/mobile-nav-hero.jpg") no-repeat bottom center;
  background-size: 100% auto;
}
header .header_nav li {
  display: block;
  margin-bottom: 20px;
  margin-right: 20px;
}
header .header_nav li:last-child {
  margin-right: 0;
}
header .header_nav li.current_page_item a, header .header_nav li.current-menu-item a {
  text-decoration: underline;
}
header .header_nav a {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}
header .header_nav a:hover {
  text-decoration: underline;
}
header .header_nav.links-dark a {
  color: var(--primary);
}

.nav-btn {
  display: block;
  z-index: 999;
  position: absolute;
  top: 34px;
  right: 20px;
  width: 26px;
  height: 26px;
}
.nav-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-btn span:first-child {
  margin-bottom: 5px;
}
.nav-btn span:last-child {
  margin-top: 5px;
}
.nav-btn.open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 32px;
}
.nav-btn.open span:first-child {
  margin-bottom: 0;
  transform: rotate(45deg);
}
.nav-btn.open span:nth-child(2) {
  display: none;
}
.nav-btn.open span:last-child {
  margin-top: -3px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1020px) {
  body, html {
    overflow: scroll !important;
  }

  header {
    padding: 0 60px;
  }
  header .header_nav {
    display: flex !important;
    z-index: 999;
    position: absolute;
    top: 0;
    right: 60px;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
  }
  header .header_nav li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 20px;
  }
  header .header_nav li:last-child {
    margin-right: 0;
  }
  header .header_nav a {
    font-size: 1.4rem;
  }
  header .header_nav .grid-line_left-white, header .header_nav .grid-line_right-white {
    display: none;
  }

  .nav-btn, .nav-btn.open {
    display: none;
  }
}
footer {
  display: flex;
  justify-content: center;
  background: #ebebeb;
  padding: 140px 0 30px 0;
  margin-top: -60px;
  text-align: center;
}
footer.footer-short {
  padding: 60px 0 30px 0;
  margin-top: 0px;
}
footer .container--sm {
  padding: 10px;
}
footer .footer_right {
  padding-left: 0px;
  margin-top: 2em;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
footer .footer_logo {
  height: 36px;
}
footer .footer_logo img {
  display: inline-block;
}
footer .footer_nav {
  height: auto;
  padding-top: 2em;
}
footer .footer_nav ul {
  margin: 0 auto;
}
footer .footer_nav li {
  display: block;
  margin-right: 0;
  margin-bottom: 10px;
}
footer .footer_nav li:last-child {
  margin-right: 0;
}
footer .footer_nav li.current_page_item a, footer .footer_nav li.current-menu-item a {
  color: var(--red);
  text-decoration: underline;
}
footer .footer_nav a {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}
footer .footer_nav a:hover {
  text-decoration: underline;
}
footer .copyright {
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (min-width: 1020px) {
  footer {
    display: block;
    padding: 240px 0 60px 0;
    margin-top: -120px;
    text-align: left;
  }
  footer.footer-short {
    padding: 120px 0 60px 0;
  }
  footer .container--sm {
    padding: 0 60px;
  }
  footer .footer_right {
    margin-top: 0;
    border-top: none;
    padding-left: 30px;
  }
  footer .footer_logo img {
    display: block;
  }
  footer .footer_nav {
    height: 36px;
    padding-top: 0;
  }
  footer .footer_nav ul {
    margin: 0;
  }
  footer .footer_nav li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0;
  }
  footer .footer_nav li:last-child {
    margin-right: 0;
  }
}
.grid-line_left, .grid-line_middle, .grid-line_right {
  z-index: 0;
  position: fixed;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}

.grid-line_left {
  left: 9px;
}

.grid-line_middle {
  display: none;
  left: 50%;
}

.grid-line_right {
  right: 9px;
}

.grid-line_left-white, .grid-line_middle-white, .grid-line_right-white {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
}

.grid-line_left-white {
  left: 9px;
}

.grid-line_middle-white {
  display: none;
  left: 50%;
}

.grid-line_right-white {
  right: 9px;
}

@media screen and (min-width: 1020px) {
  .grid-line_middle, .grid-line_middle-white {
    display: block;
  }

  .grid-line_left {
    left: 30px;
  }

  .grid-line_right {
    right: 30px;
  }

  .grid-line_left-white {
    left: 30px;
  }

  .grid-line_right-white {
    right: 30px;
  }
}
.hero {
  min-height: 480px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.hero_text {
  padding: 120px 0;
}

.hero_image {
  display: none;
  position: relative;
}

@media screen and (min-width: 1020px) {
  .hero {
    max-height: 768px;
  }

  .hero_text {
    margin-top: -30px;
  }

  .hero_image {
    display: block;
  }
}
@media screen and (min-width: 80em) {
  .hero_text {
    margin-top: -60px;
  }
}
.page-hero {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.page-hero_text {
  padding: 120px 0 90px 0;
}

.page-hero_image {
  position: relative;
}

@media screen and (min-width: 1020px) {
  .page-hero {
    min-height: 340px;
  }

  .page-hero_image {
    display: block;
  }
}
.home-quick-nav {
  position: relative;
  margin-top: -90px;
}

.home-quick-nav_block {
  background: var(--red);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
}

.home-quick-nav_block-header {
  height: 70px;
  padding: 0 30px;
  font-weight: 600;
  text-transform: uppercase;
}
.home-quick-nav_block-header img {
  display: block;
  margin-left: 20px;
  margin-top: 2px;
}

.home-quick-nav_block-image {
  position: relative;
}
.home-quick-nav_block-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.fade-slider {
  position: relative;
  width: 100%;
}
.fade-slider .slick-list, .fade-slider .slick-track {
  width: 100% !important;
}
.fade-slider .slide img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1020px) {
  .home-quick-nav {
    margin-top: -70px;
  }

  .fade-slider {
    position: absolute;
  }
}
@media screen and (min-width: 80em) {
  .home-quick-nav {
    margin-top: -80px;
  }

  .home-quick-nav_block-header {
    height: 80px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1020px) {
  .page-slider .slider-prev, .page-slider .slider-next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .page-slider .slider-prev img, .page-slider .slider-next img {
    height: 15px;
  }
}
.page-testimonial {
  position: relative;
  padding: 60px 0;
}
.page-testimonial .flex--end {
  justify-content: flex-start;
}
.page-testimonial .testimonial-left img {
  margin-right: 15px;
}
.page-testimonial .testimonial-right {
  max-width: 600px;
  padding-left: 20px;
  padding-right: 20px;
}
.page-testimonial .testimonial-client {
  padding-right: 30px;
}
.page-testimonial .testimonial-client h2 {
  display: block;
  margin-bottom: 0.25em;
}
.page-testimonial .testimonial-quote {
  padding: 60px 20px 60px 20px;
  margin: 60px 0;
  background: var(--red);
}
.page-testimonial .testimonial-quote .testimonial-quote_inner {
  padding: 0 0;
  max-width: 600px;
  margin: 0 auto;
}
.page-testimonial .testimonial-quote .testimonial-quote_client {
  margin-top: 30px;
}
.page-testimonial .testimonial-question {
  margin-top: 40px;
}
.page-testimonial .testimonial-question:first-child {
  margin-top: 0;
}

.home-about-us {
  position: relative;
  margin-top: 30px;
}
.home-about-us .container {
  width: 100%;
}

.home-about-us_text {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.home-about-us_text-inner {
  max-width: 550px;
  margin: 0 auto;
  padding: 30px;
  background: var(--red);
}

.home-about-us_link {
  background: var(--red);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  text-transform: uppercase;
}
.home-about-us_link img {
  display: block;
  margin-left: 20px;
  margin-top: 2px;
}

@media screen and (min-width: 1020px) {
  .home-about-us {
    position: relative;
    margin-top: 60px;
  }
  .home-about-us .container {
    width: min(100%, 1380px);
    height: 400px;
  }

  .home-about-us_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    padding: 0 30px;
    background: var(--red);
  }

  .home-about-us_text-inner {
    margin: 0 auto;
    padding: 30px;
    background: var(--red);
  }
}
.page-intro {
  padding: 60px 0;
  margin-top: -1px;
  background: var(--red);
}

.page-bullet-group {
  padding: 60px 0;
}

.page-bullet-group_bullets {
  padding-left: 0;
}

@media screen and (min-width: 1020px) {
  .page-intro {
    padding: 120px 0;
  }

  .page-bullet-group {
    padding: 120px 0;
  }

  .page-bullet-group_bullets {
    padding-left: 30px;
  }
}
.page-slider .slider-container {
  position: relative;
}
.page-slider .slide img {
  display: block;
  width: 100%;
  height: auto;
}
.page-slider .slider-prev, .page-slider .slider-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  background: var(--red);
}
.page-slider .slider-prev img, .page-slider .slider-next img {
  height: 12px;
}
.page-slider .slider-prev {
  left: 0;
}
.page-slider .slider-next {
  right: 0;
}
.page-slider .slick-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  text-align: center;
}
.page-slider .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}
.page-slider .slick-dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0;
  text-indent: -99px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.page-slider .slick-dots li.slick-active button {
  background: var(--red);
}

@media screen and (min-width: 1020px) {
  .page-slider .slider-prev, .page-slider .slider-next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .page-slider .slider-prev img, .page-slider .slider-next img {
    height: 15px;
  }
}
.page-testimonial {
  position: relative;
  padding: 60px 0;
}
.page-testimonial .flex--end {
  justify-content: flex-start;
}
.page-testimonial .testimonial-left img {
  margin-right: 15px;
}
.page-testimonial .testimonial-right {
  max-width: 600px;
  padding-left: 20px;
  padding-right: 20px;
}
.page-testimonial .testimonial-client {
  padding-right: 30px;
}
.page-testimonial .testimonial-client h2 {
  display: block;
  margin-bottom: 0.25em;
}
.page-testimonial .testimonial-quote {
  padding: 60px 20px 60px 20px;
  margin: 60px 0;
  background: var(--red);
}
.page-testimonial .testimonial-quote .testimonial-quote_inner {
  padding: 0 0;
  max-width: 600px;
  margin: 0 auto;
}
.page-testimonial .testimonial-quote .testimonial-quote_client {
  margin-top: 30px;
}
.page-testimonial .testimonial-question {
  margin-top: 40px;
}
.page-testimonial .testimonial-question:first-child {
  margin-top: 0;
}

.more-testimonials {
  padding: 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
}

.more-testimonials_list {
  margin-top: 30px;
}

.more-testimonials_inner {
  padding: 60px 30px;
  background: white;
  text-align: center;
}

.more-testimonials_list-item h2 {
  margin-bottom: 3px;
}
.more-testimonials_list-item img {
  display: inline-block;
  margin-bottom: 10px;
}

@media screen and (min-width: 1020px) {
  .page-testimonial {
    padding: 120px 0;
  }
  .page-testimonial .flex--end {
    justify-content: flex-end;
  }
  .page-testimonial .testimonial-right {
    padding-left: 30px;
    padding-right: 60px;
  }
  .page-testimonial .testimonial-client {
    padding-right: 60px;
  }
  .page-testimonial .testimonial-quote {
    padding: 120px 0 120px 30px;
    margin: 120px 0;
  }
  .page-testimonial .testimonial-question {
    margin-top: 40px;
  }

  .more-testimonials {
    padding: 0 60px;
  }

  .more-testimonials_list {
    margin-top: 60px;
  }

  .more-testimonials_inner {
    padding: 120px 60px;
  }
}
.page-about {
  padding: 0 0px;
}

.page-about_inner {
  padding-top: 60px;
  padding-bottom: 60px;
  background: transparent;
}

.page-about_continued {
  margin-top: 30px;
}

.page-about_left {
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  background: var(--red);
}
.page-about_left .flex--has-gap {
  gap: 30px;
}
.page-about_left .flex-row--2 {
  flex-direction: row;
}

.page-about_right {
  padding-left: 0;
}

.page-about_team-member img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}
.page-about_team-member h2 {
  margin-bottom: 2px;
}

.page-about_link {
  margin-top: 30px;
}
.page-about_link h4 {
  max-width: 250px;
}
.page-about_link a {
  margin-top: 15px;
}
.page-about_link a img {
  margin-left: 15px;
}

.page-about_values {
  position: relative;
  padding: 60px 0;
  background: var(--red);
}
.page-about_values h2 {
  margin-bottom: 30px;
}

@media screen and (min-width: 1020px) {
  .page-about {
    padding: 0 60px;
  }

  .page-about_inner {
    padding-top: 120px;
    padding-bottom: 120px;
    background: white;
  }

  .page-about_continued {
    margin-top: 30px;
  }

  .page-about_left {
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .page-about_right {
    padding-left: 30px;
  }

  .page-about_link {
    margin-top: 60px;
  }
  .page-about_link h4 {
    max-width: 250px;
  }
  .page-about_link a {
    margin-top: 15px;
  }
  .page-about_link a img {
    margin-left: 15px;
  }

  .page-about_values {
    padding: 120px 0;
  }
  .page-about_values h2 {
    margin-bottom: 0;
  }
}
.page-contact_info {
  padding: 60px 0;
}
.page-contact_info .contact-group {
  margin-top: 30px;
  font-size: 1.7rem;
}
.page-contact_info .contact-group:first-child {
  margin-top: 0;
}
.page-contact_info .contact-group h2 {
  margin-bottom: 5px;
}
.page-contact_info .contact-group a {
  text-decoration: underline;
}
.page-contact_info .contact-group li strong {
  display: inline-block;
  width: 100px;
}
.page-contact_info .page-contact_info-right {
  padding-left: 0;
  margin-top: 30px;
}

.page-contact_map {
  height: 300px;
  background: var(--red) url("../img/contact-map.jpg") no-repeat center;
  background-size: cover;
}
.page-contact_map .map-pin {
  text-align: center;
}
.page-contact_map .map-pin a {
  text-decoration: underline;
}

@media screen and (min-width: 1020px) {
  .page-contact_info {
    padding: 120px 0;
  }
  .page-contact_info .contact-group {
    font-size: 1.7rem;
  }
  .page-contact_info .page-contact_info-right {
    padding-left: 30px;
    margin-top: 0;
  }

  .page-contact_map {
    height: 450px;
  }
}

/*# sourceMappingURL=main.css.map */
