@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
    font-family: var(--primary-font);
}

:root {
  --primary-color: #10293f;
  --secondary-color: #081835;
  --primary-color-hover: #1E4363;
  --secondary-color-hover: #31baff;
  --green: #4BB543;
  --yellow: #FDCC0D;
  --border-color: #2470b3;
  --primary-font: "Outfit", serif;;
  --primary-background: #f4f5ff;
  --primary-background-rgba: rgba(49,186,255,0.1);
  --primary-text: #2f2f2f;
  --secondary-text: #a2a2a2;
  --border: #e7e7e7;
  --max-width: 1300px;
}
html {
  font-family: var(--primary-font);
  scroll-behavior: smooth;
}
.wrapper {
  width:92%;
  max-width:1300px;
  margin: 0 auto;
}
/* header start */
header {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom:1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-right {
  display: flex;
  align-items: center;
  gap:25px;
}
.header-right a {
  font-size:16px;
  color:var(--secondary-text);
  text-decoration: none;
  font-weight:300;
}
.header-logo {
  width:50px;
  height:50px;
}
.header-cta {
  background:var(--primary-color);
  color:white!important;
  padding:13px 18px;
  font-size:20px;
  font-weight:300;
  text-decoration: none;
}
.header-cta:hover {
  color:white!important;
}
.header-right-hover:hover, .text-hover {
  color:var(--primary-text)!important;
}
.header-bars {
  visibility: hidden;
  display: none;
}
/*.header-mobile {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  height: calc(100vh - 30px);
  left: -100%;
  width: 90%;
  background: var(--primary-background);
  padding-top: 30px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-direction: column;
  transition: 0.8s all ease;
  overflow-y: auto;
}
.header-mobile-link:last-child {
  margin-bottom: 150px;
}
.header-mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mobile-head p {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 500;
}
.header-mobile-head i {
  font-size: 25px;
  cursor: pointer;
  padding: 10px 0 10px 10px;
}
.header-mobile-link {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-text);
  font-size: 17px;
  padding: 20px 0;
}
.header-mobile-link i {
   position: relative;
   left: 0;
   transition: 0.2s all ease;
 }
.header-mobile-link:hover {
  color: var(--secondary-color);
}
.header-mobile-link:hover> i {
  left: 2px;
  transition: 0.2s all ease;
}*/
/* header end */
/* index start */
.index-banner {
  padding-top: 100px;
  display: flex;
}
.index-left {
  width:50%;
  display: flex;
  flex-direction: column;
  margin-bottom:60px;
}
.stars {
  color:var(--yellow);
  font-size:21px;
  font-weight:800;
  letter-spacing: 1px;
}
h1 {
  font-size:40px;
  font-weight:600;
  color:var(--primary-color);
  line-height:50px;
  margin:20px 0;
}
.index-description {
  font-size:17px;
  color:rgba(0,0,0,0.55);
  line-height:25px;
  margin-bottom:30px;
}
.index-cta {
  padding:13px 20px;
  background:var(--primary-color);
  color:white;
  font-size:20px;
  font-weight:300;
  letter-spacing:1px;
  text-decoration: none;
  width:fit-content;
}
.index-right {
  width:50%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  max-height:450px;
}
.index-right img {
  max-width:80%;
  max-height:80%;
}
/* index end */
/* pie chart start */
.pie-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 80px auto 0 auto;
}
.pie {
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.pie button,
.pie button:focus {
  outline: none;
  background-color: var(--primary-color);
  border: thin solid white;
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 50%;
  bottom: 50%;
  transform-origin: bottom left;
  transition: all 200ms ease-out;
}
.pie button:hover {
  background:var(--primary-color-hover);
}
.pie button .text {
  position: absolute;
  bottom: 110px;
  padding: 0;
  color: white;
  left: 70px;
  font-family:var(--primary-font);
  font-weight:300;
  font-size:25px;
}
.pie button .text2 {
  position: absolute;
  bottom: 100px;
  padding: 0;
  color: white;
  left: -5px;
  font-family:var(--primary-font);
  font-weight:300;
  font-size:25px;
}
/* Logo in der Mitte */
.pie-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Logo klickbar? Entfernen, falls nötig */
  width: 150px; /* anpassen je nach Logo */
  height: 150px;
  border-radius:50%;
  background:white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pie-logo img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

/* pie chart end */
.recht-text {
  line-height:23px;
}
.recht-ol {
  list-style: decimal inside none;
}
.recht-ol>li {
  font-size:25px;
  font-weight:500;
  margin-bottom:20px;
  margin-top:35px;
}
.recht-ol ul li {
  font-size:16px;
  font-weight:400;
  margin:0;
  line-height:23px;
}
.recht-ol ol>li {
  font-size:19px;
  font-weight:500;
  margin-bottom:15px;
  margin-top:25px;
}
/* slider start */
.index-h2 {
  font-size:15px;
  color:var(--secondary-text);
  letter-spacing: 1px;
  text-align: center;
  font-weight:300;
  margin-bottom:40px;
  text-transform: uppercase;
}
.index-banner-sp {
    height: 50px;
    margin: 0 auto 100px auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
}
.index-banner-sp-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
}
.gradient-left {
    left: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.gradient-right {
    right: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.logo-slider-container {
  width: auto;
  overflow-x: auto;
  white-space: nowrap;
}
.logo-slider {
  display: flex;
  flex-wrap: nowrap;
  animation: slide 50s linear infinite;
}
.logo-slider img {
  height: 40px;
  margin: 0 30px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  opacity: 0.5;
}
.logo-slider img:hover {
    filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  opacity: 1;
}
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media screen and (min-width: 900px) {
    .index-banner-sp-gradient {
        width: 150px;
    }
}
.benefits-slider {
  gap:100px;
  animation: slide 110s linear infinite!important;
}
.benefits-slider p {
  font-size: 18px;
  color:var(--primary-color);
  width:max-content;
}
.benefits-slider p i {
  margin-right:8px;
}
.benefits-slider-flex {
  margin: 0 auto;
  padding-top:40px;
}
/* slider stop */
/* old section 3 start */
.section-dark-old {
  width:100%;
  padding:40px 0;
}
.three-item-flex-old {
  display: flex;
  justify-content: space-between;
  gap:30px;
}
.flex-item-old {
  display: flex;
  gap:20px;
  flex-direction: column;
  width:33%;
  background:var(--primary-color);
  padding:20px;
  border-radius:6px;
}
.flex-item-old i {
  width:50px;
  height:50px;
  display: flex;
  font-size:23px;
  justify-content: center;
  align-items: center;
  border-radius:7px;
  color:var(--primary-color);
  background:white;
}
.flex-item-headline-old {
  color:white;
  font-size:23px;
  font-weight:400;
}
.flex-item-text-old {
  font-size:16px;
  line-height:25px;
  color:rgba(255,255,255,0.4);
  font-weight:300;
}
/* olkd section 3 end */
/* quiz page start */
.quiz-center {
    width:90%;
    max-width:750px;
    margin: 0 auto;
    text-align:center;
}
.quiz-logo {
    width:40px;
    height:40px;
    margin:30px 0;
}
.quiz-subheadline {
    margin-top: 25px;
    font-size: 18px;
    color: rgb(10, 35, 95);
    margin-bottom: 10px;
    font-weight: 500;
    margin-left: 15px;
    margin-right: 15px;
    opacity: 0.7;
}
.quiz-h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: rgb(10, 35, 95);
}
.quiz-subtext {
    font-size: 18px;
    opacity:0.9;
    margin-bottom: 50px;
    color: rgb(10, 35, 95);
}
.quiz-text {
    font-size: 23px;
    margin-bottom: 50px;
    color: rgb(10, 35, 95);
    line-height:35px;
}
.quiz-h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: rgb(10, 35, 95);
    font-weight:500;
}
.quiz-form {
    display:flex;
    flex-direction:column;
    border:1px solid var(--border);
    border-radius:8px;
    overflow:hidden;
}
.quiz-form-item-two {
    display:grid;
    grid-template-columns: 1fr 1fr;
}
.quiz-form-item {
    border-bottom:1px solid var(--border);
    position:relative;
}
.quiz-form-item input {
    width:calc(100% - 75px);
    padding: 0px 15px 0px 60px;
    font-family:inherit;
    border:0;
    outline:none;
    height:60px;
    font-size:16px;
    font-weight:300;
}
.quiz-abrechnung {
    display:flex;
    flex-direction:column;
    gap:5px;
}
.quiz-abrechnung label {
    font-size:14px;
    text-align:left;
    padding-left:60px;
    width: calc(100% - 60px);
    margin-top:10px;
    opacity:0.7;
}
.quiz-abrechnung input {
    height:36px!important;
}
.quiz-termin {
    display:flex;
    flex-direction:column;
    gap:5px;
}
.quiz-termin label {
    font-size:14px;
    text-align:left;
    padding-left:60px;
    width: calc(100% - 60px);
    margin-top:10px;
    opacity:0.7;
}
.quiz-termin input {
    height:20px!important;
    margin-bottom:10px!important;
}
.quiz-form-item input:focus {
    background:rgba(0,0,0,0.015);
}
.quiz-form-item  div {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    height:60px;
    width:60px;
    font-size:21px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.quiz-form-checkbox {
  display: flex;
  align-items: center;
  height:60px;
}
.quiz-form-checkbox input {
  margin-right:5px;
}
.quiz-form-checkbox input[type="checkbox"], .quiz-form-checkbox input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 5px;
  background-color: #fff;
  margin:20px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.quiz-form-checkbox input[type="checkbox"]:hover, .quiz-form-checkbox input[type="radio"]:hover {
  border-color: var(--border-color);
}
.quiz-form-checkbox input[type="checkbox"]:checked::after, .quiz-form-checkbox input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top:-1px;
  left: 4px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background-color: transparent;
}
.quiz-form-checkbox input[type="checkbox"]:checked, .quiz-form-checkbox input[type="radio"]:checked {
  background-color: var(--border-color); /* example primary color */
  border-color: var(--border-color);
}
.quiz-form-checkbox input[type="checkbox"]::after, .quiz-form-checkbox input[type="radio"]::after {
  transition: all 0.2s ease-in-out;
}
.quiz-form-checkbox label {
    font-size:15px;
    font-weight:300;
    color:var(--primary-color);
    width:calc(100% - 60px);
    text-align:left;
}
.quiz-center > form > button {
    padding:15px 0;
    font-size:17px;
    font-weight:500;
    border:0;
    outline:none;
    font-family:inherit;
    margin-top:25px;
    border-radius:8px;
    color:white;
    width:100%;
    display:flex;
    justify-content:center;
    background: var(--secondary-color);
    cursor:pointer;
}
.quiz-hr {
    width:60%;
    height:1px;
    background:var(--border);
    margin:80px auto;
}
.quiz-footer {
    margin-top:70px;
    display:flex;
    justify-content:center;
    height:70px;
    align-items:center;
    gap:15px;
}
.quiz-footer a {
    color:var(--primary-color);
    font-size:13px;
}
@media screen and (max-width:410px) {
    .quiz-logo {
        margin: 20px 0 10px 0;
    }
    .quiz-subheadline {
        margin: 10px 0;
    }
    .quiz-h1 {
        font-size:30px;
        margin-bottom:23px;
    }
    .quiz-h2 {
        font-size: 24px;
    }
    .quiz-subtext {
        margin-bottom:35px;
    }
    .quiz-text {
        margin-bottom:35px;
        font-size:21px;
        line-height:32px;
    }
}
/* quiz page end */
/* section dark start */
.section-dark {
  width:100%;
  background:var(--primary-color);
  margin-top:50px;
}
.three-item-flex {
  display: flex;
  justify-content: space-between;
  gap:30px;
  position: relative;
  top:-40px;
}
.flex-item {
  display: flex;
  gap:20px;
  flex-direction: column;
  justify-content: space-between;
  padding:20px;
  border: 2px solid var(--border-color);
  border-radius:7px;
  background:var(--primary-color);
  flex: 1 1 25%;
}
.flex-item i {
  width:50px;
  height:50px;
  display: flex;
  font-size:23px;
  justify-content: center;
  align-items: center;
  border-radius:7px;
  color:var(--border-color);
  background:rgba(36, 112, 179,0.15);
}
.flex-item-headline {
  color:white;
  font-size:23px;
  font-weight:400;
}
.flex-item-text {
  font-size:16px;
  line-height:25px;
  color:var(--secondary-text);
  font-weight:300;
}
.flex-item a {
  text-decoration: none;
  color:white;
  letter-spacing: 1px;
  font-weight:300;
  text-align: center;
  background:var(--border-color);
  padding:10px 14px;
  border-radius:4px;
  width: calc(100% - 28px);
}
.section-left {
  width:50%;
  display: flex;
  flex-direction: column;
}
.section-overheadline {
  font-size:16px;
  font-weight:500;
  color:var(--primary-color);
  text-transform: uppercase;
}
.section-overheadline i {
  margin-right:5px;
  font-size:18px;
}
.section-left h2 {
  margin: 20px 0 25px 0;
  font-size:35px;
  font-weight:600;
}
.section-left a {
  text-decoration: none;
color:var(--border-color);
padding: 8px 12px;
background: rgba(36, 112, 179, 0.15);
border-radius:6px;
width:fit-content;
transition:0.3s ease;
}
.section-left a>i {
  margin-right:5px;
}
.section-left a:hover {
  background: var(--border-color);
  color:white;
  transition:0.3s ease;
}
.section-flex {
  display: flex;
  align-items: center;
  padding:80px 0;
}
.section-div {
  background: rgba(36, 112, 179, 0.15);
  border-radius:6px;
  padding:12px 15px;
  display: flex;
  flex-direction: column;
  gap:20px;
}
.section-description {
  font-size:16px;
  line-height:25px;
  font-weight:300;
  color:var(--primary-color);
}
.section-right {
  width:50%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  max-height:450px;
}
.section-right img {
  width:100%;
  height:100%;
  max-width:400px;
  max-height:400px;
}
/* footer code begins */
footer {
  background: var(--primary-color);
  border-top: 1px solid var(--border);
  width: 100%;
  margin-top: 40px;
}
.footer-wrap {
  width: calc(100% - 60px);
  padding: 0 30px;
  margin: 0 auto;
  max-width: var(--max-width);
  padding-top: 80px;
  display: flex;
}
.footer-column {
  width: 33.33%;
}
.footer-column-one {
  display: flex;
  flex-direction: column;
}
.footer-column-img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.footer-column-p {
  color: white;
}
.footer-column p {
  font-size: 17px;
  margin: 20px 0 8px 0;
  line-height: 24px;
}
.footer-column-info {
  display: inline-block;
  line-height: 24px;
  font-weight:200;
  width: calc(100% - 50px);
  color: white;
  font-size:15px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-top: 20px;
}
.footer-column ul li a {
  text-decoration: none;
  color: var(--secondary-text);
  font-weight:300;
}
.footer-sm-icons {
  display: flex;
  margin-top: 20px;
}
.footer-sm-icons img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  filter: invert(10%) sepia(34%) saturate(13%) hue-rotate(325deg) brightness(95%) contrast(79%);
}
.footer-support-email {
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  color: var(--primary-text);
}
.footer-support-email i {
  font-size: 14px;
  margin-right: 3px;
}
.footer-copyright {
  padding: 15px 0;
  width: 100%;
  text-align: center;
  color: var(--secondary-text);
  font-size: 14px;
  margin-top:50px;
}
.footer-column-subtitle {
  color:white;
}
.footer-column-description {
  font-size:14px;
  font-weight:300;
  color:var(--secondary-text);
  line-height:22px;
}
/* footer end */
/* formular start */
.formular {
    padding:30px 0 30px 0;
}
.formular h2 {
    font-size:35px;
  font-weight:600;
  color:var(--primary-color);
  text-align:center;
  margin:10px 0 35px 0;
}
.formular-flex {
  width:95%;
  max-width:850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap:15px;
}
.formular-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:15px;
}
.formular-item {
  display: flex;
  flex-direction: column;
  gap:6px;
}
.formular-item p, .formular-checkbox p {
  font-size: 16px;
  font-weight:400;
  color:var(--primary-color);
}
.formular-item span {
  color: red;
  font-style: italic;
}
.formular-item input {
  outline: none;
  padding: 10px;
  margin: 0;
  border: 2px solid var(--border);
  border-radius:4px;
  background:rgba(0,0,0,0.05);
  font-family: var(--primary-font);
  font-size:16px;
  font-weight:300;
  color:var(--primary-color);
  width: calc(100% - 24px);
}
.formular-notizen textarea {
  outline: none;
  padding: 10px;
  margin: 0;
  border: 2px solid var(--border);
  border-radius:4px;
  background:rgba(0,0,0,0.05);
  font-family: var(--primary-font);
  font-size:16px;
  line-height:20px;
  font-weight:300;
  color:var(--primary-color);
  width: calc(100% - 24px);
  height:50px;
  resize: vertical;
  max-height:200px;
  min-height:50px;
}
.formular-button {
  outline: 0;
  border: 0;
  text-align: center;
  width:100%;
  padding: 10px 0;
  background: var(--border-color);
  color:white;
  font-size:18px;
  letter-spacing: 1px;
  font-weight:300;
  font-family: var(--primary-font);
  margin-top:20px;
  border-radius:6px;
  cursor: pointer;
}
.success-notification {
  padding:10px;
  border-radius:8px;
  border:1px solid var(--green);
  background: var(--green-background);
  font-size:18px;
  font-weight:400;
  background: rgba(75,181,67.0.2);
  color:var(--green);
  margin-top:20px;
}
.success-notification i {
  margin-right: 5px;
}
/* formular end */
@media screen and (max-width: 330px) {
  .pie-container {
    width:230px;
    height:230px;
  }
  .pie-logo {
    width:80px;
    height:80px;
  }
  .pie-logo img {
    width:70%;
    height:70%;
  }
  .pie button .text {
    font-size:20px;
    bottom: 55px;
    left: 25px;
  }
  .pie button .text2 {
    font-size:16px;
    bottom: 55px;
    left: -13px;
  }
}
@media screen and (min-width:331px) and (max-width: 500px) {
  .pie-container {
    width:300px;
    height:300px;
  }
  .pie-logo {
    width:100px;
    height:100px;
  }
  .pie button .text {
    font-size:20px;
    bottom: 80px;
    left: 45px;
  }
  .pie button .text2 {
    font-size:20px;
    bottom: 75px;
    left: -5px;
  }
}
@media screen and (max-width:400px) {
  .index-banner {
    padding-top:60px;
  }
  h1 {
    font-size:30px;
  }
  .index-description {
    font-size: 15px;
  }
  .index-cta {
    padding: 12px 18px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 700px) {
  .index-right {
    display: none;
    visibility: hidden;
  }
  .index-left {
    width:100%;
    text-align: center;
  }
  .index-cta {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .three-item-flex, .three-item-flex-old {
    justify-content: center;
    flex-wrap:wrap;
    gap:40px;
  }
  .flex-item, .flex-item-old {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .benefits-slider {
    gap:50px;
  }
  .benefits-slider p {
    font-size:17px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1250px) {
  .three-item-flex, .three-item-flex-old {
    justify-content: center;
    flex-wrap:wrap;
  }
  .flex-item, .flex-item-old {
    width: calc(50% - 60px);
  }
}
@media only screen and (max-width: 650px) {
  .section-flex {
    gap:0;
  }
  .section-right {
    display: none;
    visibility: hidden;
  }
  .section-left {
    width:100%;
  }
  .padding-0 {
    padding: 0;
  }
}
@media only screen and (max-width: 750px) {
    .footer-wrap {
        flex-direction: column;
    }
    .footer-column {
        width: 100%;
        margin-bottom: 25px;
    }
    /*.header-right {
      display: none;
      visibility: hidden;
    }
    .header-bars {
      display: block;
      visibility: visible;
      font-size: 25px;
      padding: 10px;
    }*/
    .header-right-hover {
      display:none;
      visibility: hidden;
    }
}
@media only screen and (min-width: 751px) {
  .footer-column-one {
    margin-bottom: 30px;
  }
}
@media screen and (min-width:651px) and (max-width:800px) {
  .section-flex {
    gap:15px;
  }
  .section-left {
    width:65%;
  }
  .section-right {
    width:35%;
  }
}
