/*
Theme Name:         Sage Starter Theme
Theme URI:          https://roots.io/sage/
Description:        Theme for Alegro by Southvision
Version:            1.0
Author:             Southvision
Author URI:         https://southvision.de/
Text Domain:        sage

License:            MIT License
License URI:        http://opensource.org/licenses/MIT
*/

/* source-sans-3-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-3-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/source-sans-3-v18-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/source-sans-3-v18-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-3-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/noto-sans-v39-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-v39-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* VARIABLES */

:root{
	--black1: #3D3D3D;
	--black2: #3E3E3E;
	--grey1: #FBFBFB;
	--grey2: #F3F3F3;
	--grey3: #737373;
	--grey4: #00000029;
	--grey5: #CCCCCC;
	--grey6: #EBEBEB;
	--grey7: #D0D0D0;
	--grey8: #CFCFCF;
	--white: #fff;
	--green1: #97BF0E;
	--yellow1: #FFCC00;
	--blue1: #0399F6;
	--blue2: #009EE0;
	--pink1: #FD49C659;
	--sectionPadding: 10rem;
	--kaushan: 'KaushanScript', sans-serif;
}


/* ALLGEMEIN */

*:focus {
	outline: none!important;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 2.5rem;
  background-color: var(--grey1);
}

section{
	padding-top: var(--sectionPadding);
	padding-bottom: var(--sectionPadding);
}

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

iframe {
	width: 100%;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
	margin-top: 0;
}

h1, .h1 {
	font-size: 5.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

h2, .h2 {
	font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

h3, .h3 {
	font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

h4, .h4 {
	font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

@media(max-width: 767px){
	h1, .h1 {
		font-size: 4.2rem;
	}

	h2, .h2 {
		font-size: 3.6rem;
	}

	h3, .h3 {
		font-size: 2.8rem;
	}

	h4, .h4 {
		font-size: 2.4rem;
	}

	body {
		font-size: 2rem;
	}
}

.flexRow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-right: -15px;
    margin-left: -15px;
}

.flexWrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.justCenter {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.justBetween {
	-webkit-box-pack: space-between;
	    -ms-flex-pack: space-between;
	        justify-content: space-between;
}

.justAround {
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.alignConCenter {
	-ms-flex-line-pack: center;
	    align-content: center;
}

.alignItemsCenter {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.alignItemsEnd {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.text-center{
	text-align: center;
}

.text-left{
	text-align: left;
}

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

.padTo3 {
	padding-top: 3rem;
}

.maTo3 {
	margin-top: 3rem;
}

.maTo6 {
	margin-top: 6rem;
}

.maBo6 {
	margin-bottom: 6rem;
}

.ctaBtn {
    color: var(--white);
    padding: 1.4rem 4.5rem;
    display: inline-block;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    font-weight: 600;
}

.ctaBtn:hover {
	-webkit-transform: scale(1.02);
	    -ms-transform: scale(1.02);
	        transform: scale(1.02);
}

.ctaBtn.blueBtn {
    background-color: var(--blue1);
}

.ctaBtn.yellowBtn {
    background-color: var(--yellow1);
    color: var(--black1);
}

.ctaBtn.greenBtn {
    background-color: var(--green1);
}

@media(max-width: 767px){
	.ctaBtn {
		padding: 1rem 2.5rem;
	}
}


@media (min-width: 992px) {	
	.order1md {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	
	.order2md {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}

	.order3md {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
	
	.order4md {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
	}
}

@media (max-width: 1199px){	
	.maToMD3 {
		margin-top: 3rem;
	}	
	
	.maToMD6 {
		margin-top: 6rem;
	}	
}

@media (max-width: 991px){	

	.maToSM3 {
		margin-top: 3rem;
	}	
	
	.maToSM6 {
		margin-top: 6rem;
	}	
}

@media (min-width: 768px) and (max-width: 991px){	

	.order1sm {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	
	.order2sm {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}

	.order3sm {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
	
	.order4sm {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
	}
}

@media (max-width: 767px){
	html {
		font-size: 9px;
	}
	
	.maToXS3 {
		margin-top: 3rem;
	}	
	
	.maToXS6 {
		margin-top: 6rem;
	}	
	
	.order1xs {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	
	.order2xs {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	
	.order3xs {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
	
	.order4xs {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
	}
}



@media(min-width: 992px){
	header .container-fluid:before, header .container-fluid:after, header .row:before, header .row:after, header .navbar:before, header .navbar:after {
		display: none;
	}

    header .container-fluid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}



.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  pointer-events: none; 
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 0.5em 1em;
  background: #000;
  color: #fff;
  text-decoration: none;
  pointer-events: auto; 
}


/* HEADER */

.navbar-brand > img {
  width: 34rem;
  max-width: 100%;
}

header {
  font-size: 16px;
  background-color: var(--white);
}

.collapse.navbar-collapse{
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media(min-width: 992px){
	header .nav.navbar-nav{
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
			-ms-flex-pack: center;
				justify-content: center;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
	}
}

header .nav.navbar-nav::before{
    margin-left: auto;
}

header .nav.navbar-nav > li:last-of-type{
    margin-left: auto;
}

header .nav.navbar-nav a{
    color: var(--grey7);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    font-weight: 600;
}

header .nav.navbar-nav a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    height: 2px;
    width: 0;
    -webkit-transition: width .4s ease;
    -o-transition: width .4s ease;
    transition: width .4s ease;
    background-color: var(--grey7);
}

header .nav.navbar-nav li.current-menu-item a{
    color: var(--black1);
}

header .nav.navbar-nav li.current-menu-item a:before,
header .nav.navbar-nav a:hover:before{
    width: calc( (100% - 3rem) * .8 );
    background-color: var(--black1);
}

header .nav.navbar-nav li a:hover{
    color: var(--black1);
}

header .nav.navbar-nav li:last-of-type a:before{
    display: none;
}

header .nav.navbar-nav li:last-of-type a{
    color: var(--white);
    padding: 1.4rem 4.5rem;
    background-color: var(--blue1);
    -webkit-box-shadow: 0 3px 6px #00000029;
            box-shadow:  0 3px 6px #00000029;
}

/* Mobile Header */

.navbar-toggle .icon-bar{
	background-color: var(--blue1);
}

@media(max-width: 991px){
	header .nav.navbar-nav a{
		display: block;
	}
	
	header .nav.navbar-nav > li:last-of-type{
		margin-top: 1.5rem;
		text-align: center;
	}

	header .navbar-toggle:not(.collapsed) > span{
		-webkit-transition: -webkit-transform 0.4s ease;
		transition: -webkit-transform 0.4s ease;
		-o-transition: transform 0.4s ease;
		transition: transform 0.4s ease;
		transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	} 

	header .navbar-toggle:not(.collapsed) > span:nth-child(3){
		opacity: 0;
	} 

	header .navbar-toggle:not(.collapsed) > span:nth-child(2){
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
		-webkit-transform-origin: 0 100%;
		    -ms-transform-origin: 0 100%;
		        transform-origin: 0 100%;
	} 

	header .navbar-toggle:not(.collapsed) > span:nth-child(4){
		-webkit-transform: rotate(-45deg);
		    -ms-transform: rotate(-45deg);
		        transform: rotate(-45deg);
		-webkit-transform-origin: 0 0;
		    -ms-transform-origin: 0 0;
		        transform-origin: 0 0;
		margin-top: 8px;
	} 

}

/* Kontakt-Section */

.contactSection {
	background-color: var(--grey2);
}

.contactSection .contactWrap {
	border: 2px solid var(--blue2);
	background-color: var(--white);
	padding: 1.5rem;
	color: var(--blue2);
	font-size: 16px;
	-webkit-box-shadow: 8px 8px 0px #0000001A;
	        box-shadow: 8px 8px 0px #0000001A;
}

.contactSection h3{
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 5rem;
}

.contactSection .contactWrap a{
	color: var(--blue2);
}

.contactSection .contactInfo {
	position: relative;
	font-weight: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.contactSection .contactInfo:before {
	content: '';
	position: relative;
	width: 3rem;
	padding-right: 5rem;
	display: inline-block;
}

.contactSection .contactStreet:before {
	content: url('/wp-content/themes/southvision/assets/images/marker.svg');
}

.contactSection .contactPhone:before {
	content: url('/wp-content/themes/southvision/assets/images/phone.svg');
}

.contactSection .contactFax:before {
	content: url('/wp-content/themes/southvision/assets/images/fax.svg');
}

.contactSection .textWrap{
	padding-top: 4rem;
	padding-bottom: 3rem;
}

.contactSection .contactFormWrap{
	padding-top: 2rem;
}

.contactSection .gmapsWrap{
	height: 100%;
}

.contactSection .gmapsWrap iframe{
	width: 100%;
	height: 100%;
}

@media(min-width: 1200px){
	.contactSection .textWrap{
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

@media(max-width: 767px){
	.contactSection .gmapsWrap{
		height: 350px;
	}
}

/* WP Forms Contactsection */

.contactSection input,
.contactSection textarea{
	border-radius: 0!important;
	border: 2px solid var(--blue2)!important;
}

.contactSection input::-webkit-input-placeholder, .contactSection textarea::-webkit-input-placeholder{
	color: var(--blue2)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

.contactSection input::-moz-placeholder, .contactSection textarea::-moz-placeholder{
	color: var(--blue2)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

.contactSection input:-ms-input-placeholder, .contactSection textarea:-ms-input-placeholder{
	color: var(--blue2)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

.contactSection input::-ms-input-placeholder, .contactSection textarea::-ms-input-placeholder{
	color: var(--blue2)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

.contactSection input::placeholder,
.contactSection textarea::placeholder{
	color: var(--blue2)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

.contactSection button{
	color: var(--white)!important;
	background-color: var(--blue2)!important;
	border-radius: 0!important;
	width: 100%!important;
}

/* WP Forms Blindbewerung */

#wpforms-244 input,
#wpforms-244 textarea{
	border-radius: 0!important;
	border: 2px solid var(--green1)!important;
}

#wpforms-244 input::-webkit-input-placeholder, #wpforms-244 textarea::-webkit-input-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

#wpforms-244 input::-moz-placeholder, #wpforms-244 textarea::-moz-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

#wpforms-244 input:-ms-input-placeholder, #wpforms-244 textarea:-ms-input-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

#wpforms-244 input::-ms-input-placeholder, #wpforms-244 textarea::-ms-input-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

#wpforms-244 input::placeholder,
#wpforms-244 textarea::placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

#wpforms-244 button{
	color: var(--white)!important;
	background-color: var(--green1)!important;
	border-radius: 0!important;
	font-size: 2.4rem!important;
	font-weight: 600!important;
	padding: 1.5rem 3rem!important;
	height: auto!important;
	margin-top: 3rem;
}

/* WP Forms Stelle melden */


#wpforms-310 {
	font-size: 2.5rem!important;
}

#wpforms-310 input,
#wpforms-310 textarea{
	border-radius: 0!important;
	border: 2px solid var(--yellow1)!important;
}

#wpforms-310 input::-webkit-input-placeholder, #wpforms-310 textarea::-webkit-input-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
}

#wpforms-310 input::-moz-placeholder, #wpforms-310 textarea::-moz-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
	font-size: 2rem!important;
}

#wpforms-310 input:-ms-input-placeholder, #wpforms-310 textarea:-ms-input-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
	font-size: 2rem!important;
}

#wpforms-310 input::-ms-input-placeholder, #wpforms-310 textarea::-ms-input-placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
	font-size: 2rem!important;
}

#wpforms-310 input::placeholder,
#wpforms-310 textarea::placeholder{
	color: var(--black1)!important;
	opacity: 1!important;
	font-weight: 600!important;
	font-size: 2rem!important;
}

#wpforms-310 button{
	color: var(--white)!important;
	background-color: var(--yellow1)!important;
	border-radius: 0!important;
	font-size: 2.4rem!important;
	font-weight: 600!important;
	padding: 1.5rem 3rem!important;
	height: auto!important;
	margin-top: 3rem;
}

#wpforms-310 input[type="checkbox"] {
  position: absolute!important;
  opacity: 0!important;
  width: 0!important;
  height: 0!important;
}


#wpforms-310 input[type="checkbox"] + label {
  position: relative;
  padding-left: 42px; 
  cursor: pointer;
  line-height: 32px;
}


#wpforms-310 input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 2px solid #FFCC00;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


#wpforms-310 input[type="checkbox"]:checked + label::after {
  content: "✔";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  color: #FFCC00;
}

#wpforms-310 label,
#wpforms-310 legend {
  font-size: 2.5rem!important;
}

#wpforms-310 legend {
  margin-bottom: 2rem!important;
}


/* Single Job */

.singleJobHero {
	margin-bottom: 6rem;
}

.jobSuchabo{
	background-color: var(--green1);
	margin-top: 6rem;
	margin-bottom: 6rem;
}

.titleContainer {
	background-color: var(--grey2);
	padding-top: 6rem;
}

.jobAnsprechpartner {
	background-color: var(--grey2);
	padding-bottom: 10rem;
}

.ansprechpartnerWrap {
	text-align: center;
}

.jobAnsprechpartner .imgWrap {
	margin-bottom: 3rem;
}

.jobAnsprechpartner .ansprechpartnerPhone {
	color: var(--black1);
	margin-bottom: 2rem;
	font-weight: 500;
}

.jobSuchabo h1,
.jobSuchabo h2,
.jobSuchabo h3,
.jobSuchabo h4,
.jobSuchabo p{
	color: var(--white);
}

.single-job article > section:first-of-type{
	padding-top: 5rem;
}

.single-job article > section:last-of-type{
	padding-bottom: 5rem;
}

/* FOOTER */

footer {
	background-color: var(--blue2);
	color: var(--white);
	padding-top: 10rem;
}

footer > .container .flexRow{
	row-gap: 6rem;
}

footer a{
	color: var(--white);
}

.footerCol1,
.footerCol2{
	border-right: 1px solid var(--white);
}

.footer1 p{
	font-size: 16px;
}

.footer2 p,
.footer3 p{
	font-size: 2.1rem;
}

.footer2 p a,
.footer3 p a{
	text-decoration: underline;
}

footer .textWrap {
	height: 100%;
}

.footer3.textWrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: justify;
	    align-content: space-between;
}

.footer3.textWrap > div{
	width: 100%;
}

.footer3 .socialMediaWrap{
	margin-top: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 2rem;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}

.footer3 .socialMediaWrap img{
	width: 4.8rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.footerContact {
	margin-top: 3rem;
}

@media(min-width: 1200px){
	.footer1{
		padding-right: 6rem;
	}
	.footer2{
		padding-right: 6rem;
		padding-left: 6rem;
	}
	.footer3{
		padding-left: 6rem;
	}
}

@media(max-width: 767px){
	.footerCol1,
	.footerCol2{
		border-right: none;
	}
}

/* Subfooter */

footer .subFooter {
	margin-top: 10rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	color: var(--black1);
	font-size: 13px;
	background-color: var(--grey6);
	font-weight: 700;
}

footer .subFooter a{
	color: var(--black1);
	font-size: 15px;
}

footer .subFooter .container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	row-gap: 3rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

footer .subFooter .container:before,
footer .subFooter .container::after{
	display: none;
}

footer .subFooter .subFooterLinks{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 3rem;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
