@font-face {
  font-family: "Source Sans Pro";
  src: url("/css/fonts/SourceSansPro-ExtraLight.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/css/fonts/SourceSansPro-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/css/fonts/SourceSansPro-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/css/fonts/SourceSansPro-SemiBold.ttf") format("truetype");
  font-weight: 500;
}

:root {
  --darkblue: #002248;
  --blue: #003673;
  --orange: #f09800;
  --darkorange: #a47e3b;
  --darkgray: #242424;
  --header: #18222dce;
  --shadow: rgba(0, 0, 0, 0.215);
  --svg-white: brightness(0) invert(1);
  --svg-orange: invert(54%) sepia(28%) saturate(1690%) hue-rotate(4deg)
    brightness(107%) contrast(101%);

  --toggle-scale: 0.04vw;
  --scroll-bar-width: 0.4vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  background-color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: var(--white);
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: var(--scroll-bar-width);
  height: 1vh;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--shadow);
  border-radius: 1vh;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--darkgray);
  border-radius: 1vh;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
}

div {
  font-weight: 400;
}

h1 {
  font-size: 40px;
  font-weight: 100;
}
h2 {
  font-size: 30px;
  font-weight: 300;
  text-align: center;
}
h3 {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}
h4 {
  font-size: 25px;
  font-weight: 300;
  text-align: left;
  text-decoration: underline;
}
p,
li {
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
}

a {
  text-decoration: none;
  color: var(--darkgray);
}

.container {
  width: 90%;
  margin: 5vh auto;
  overflow: hidden;
}

.glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.249);
  /*background-color: rgba(88, 88, 88, 0.272);*/
  background-image: -o-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.527),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.527),
    rgba(0, 0, 0, 0)
  );
}

.line {
  height: 3px;
  width: 8vw;
  margin: 30px 0;
  background-color: var(--darkorange);
}

.btn,
[type="submit"] {
  font-family: "Source Sans Pro", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 1vw;
  color: var(--orange);
  background-color: white;
  padding: 0.5vw 3vw;
  border-radius: 15px;
  font-weight: 400;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-animation: wiggle 8s infinite;
  animation: wiggle 8s infinite;
  border: none;
}

.btn:disabled {
  background-color: rgba(255, 255, 255, 0.2);
  color: gray;
  -webkit-animation: none;
  animation: none;
}

#btn_container_under .btn {
  background-color: var(--orange);
  color: white;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  6% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  8% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  9% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  6% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  8% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  9% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.btn:hover,
[type="submit"]:hover {
  -webkit-animation: none;
  animation: none;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}
.btn:disabled:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  cursor: default;
}
.infocard {
  font-size: 1vw;
  width: 10vw;
  height: 6vw;
  color: white;
  text-align: center;
}

#btn_container_under .infocard {
  color: var(--darkgray);
}

.infobtn {
  box-sizing: border-box;
  margin: auto;
  background-color: white;
  border-radius: 15px;
  width: 6vw;
  height: 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-bottom: 0.3vw;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.infobtn:hover,
.partner_logo:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}

.infobtn img {
  width: 80%;
}

#btn_container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1vw;
}

#btn_container_under {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 10vw;
}

#btn_container_under .infobtn {
  -webkit-box-shadow: 0 0 10px var(--shadow);
  box-shadow: 0 0 10px var(--shadow);
}
#startpic_insurance {
  background-image: url(/media/jpg/social.jpg);
}
#startpic_child {
  background-image: url(/media/jpg/child.jpg);
}
#startpic_law {
  background-image: url(/media/jpg/law.jpg);
}
#startpic_property {
  background-image: url(/media/jpg/property2.jpg);
}
#startpic_tax {
  background-image: url(/media/jpg/law.jpg);
}
#startpic {
  position: relative;
  background-image: url(/media/jpg/home.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vw;
  z-index: 99;
}
#startpic,
#btn_container {
  height: 9vw;
}
#startpic_under,
#startpic_contact,
.startpic_under {
  position: relative;
  background-image: url(/media/jpg/bsu.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 30vw;
  z-index: 99;
  margin-bottom: 5vw;
}
#startpic_contact {
  background-image: url(/media/jpg/contact.jpg);
  min-height: 90vh;
}

#identity_img {
  z-index: -10;
  width: 100%;
}

#landingcard {
  padding: 1vw;
  position: absolute;
  bottom: 5vw;
  left: 5vw;
}

#landingcard_under {
  width: 100%;
  position: absolute;
  bottom: -5vw;
  z-index: 999;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.dark {
  background-color: var(--darkblue);
}

.dark h1,
.dark h2,
.dark p {
  color: white;
}

#about p {
  margin-bottom: 5vh;
}

#about {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70% 30%;
  grid-template-columns: 70% 30%;
}

#about > .dark {
  padding: 2vw 5vw;
}

#about_text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80% 20%;
  grid-template-columns: 80% 20%;
}

#about_buttons {
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
}

#about_buttons .top {
  position: absolute;
  top: 0;
  right: 0;
}

#about_buttons .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}

.partner_logo {
  margin: auto;
  width: 10vw;
  height: 10vw;
  border-radius: 2vw;
  /*box-shadow: 0 0 10px var(--shadow);*/
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partner_logo img {
  width: 100%;
}
#headline_under {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  margin-top: 10vw;
  font-size: 2vw;
}

.active_card .infobtn {
  border: 3px solid var(--orange);
}

#contact_form {
  min-width: 700px;
  max-width: 90vw;
  width: 50vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-image: -o-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.153)
  );
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.153)
  );
  border: 1px solid rgba(255, 255, 255, 0.062);
  position: absolute;
  top: 20vh;
  left: 10vw;
  border-radius: 2vw;
  padding: 1vw;
}
#contact_form h1 {
  color: white;
  font-weight: 400;
  text-align: center;
  margin: 0 0 1vw 0;
}

#contact_form h3 {
  color: white;
  font-weight: 400;
  text-align: center;
}
#contact_form h5 {
  color: white;
  font-weight: 300;
  text-align: left;
  font-size: 15px;
  margin: 0 0 5px 0;
}
#contact_form p,
#contact_form a {
  color: white;
  font-weight: 300;
  text-align: justify;
  font-size: 15px;
  margin: 5px 0 5px 0;
}
#contact_form a {
  color: var(--orange);
  text-decoration: underline;
}
.form_options,
.form_options_last {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[type="text"],
[type="tel"],
[type="mail"],
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--darkgray);
  font-size: 1vw;
  border: none;
  outline: none;
  padding: 0.3vw 0.5vw;
  border-radius: 0.3vw;
  margin-bottom: 0.2vw;
  border: 2px solid transparent;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
::-webkit-input-placeholder {
  color: var(--shadow);
}
::-moz-placeholder {
  color: var(--shadow);
}
:-ms-input-placeholder {
  color: var(--shadow);
}
::-ms-input-placeholder {
  color: var(--shadow);
}
::placeholder {
  color: var(--shadow);
}
textarea {
  height: 23vh;
  min-height: 23vh;
  max-height: 23vh;
  resize: none;
}
[type="text"]:focus,
[type="tel"]:focus,
[type="mail"]:focus,
textarea:focus {
  border: 2px solid var(--orange);
}
label:not(.toggle, .appointment) {
  color: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  font-size: 25px;
  text-align: center;
  padding: 1vw;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0.9vw;
  margin: 0 15px;
}
label:not(.toggle, .appointment)::before {
  content: "✖";
  color: var(--shadow);
  position: absolute;
  top: 6vw;
  right: 1vw;
  border-radius: 50%;
  height: 1.4vw;
  width: 1.4vw;
  font-size: 1vw;
  z-index: 99;
  background-color: white;
}
input:checked + label:not(.toggle, .appointment)::before {
  content: "✔";
  color: var(--orange);
}
label:not(.toggle, .appointment):hover {
  cursor: pointer;
}
label:not(.toggle, .appointment) img {
  width: 8vw;
  max-width: 8vw;
  height: 8vw;
  max-height: 8vw;
  -webkit-filter: brightness(0%) invert(1);
  filter: brightness(0%) invert(1);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  margin: 0 auto 15px auto;
}
input:checked:not(.appointment) + label:not(.toggle) img,
input[type="radio"]:checked:not(.appointment) + label:not(.toggle) img {
  -webkit-filter: var(--svg-orange);
  filter: var(--svg-orange);
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
[type="checkbox"]:not(.toggle),
[type="radio"] {
  display: none;
}
#privacy {
  display: block;
}
.half {
  width: 50%;
  margin: auto;
}
.full {
  width: 100%;
}
.flex_objects {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.center_div {
  margin-top: 1vw;
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.steps {
  display: none;
}
.btn_reverse {
  margin-top: 15px;
  color: white;
}
.btn_reverse:hover {
  cursor: pointer;
  color: var(--orange);
}
.grid_two {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 1vw auto;
  grid-template-columns: 40% auto;
  -webkit-column-gap: 1vw;
  -moz-column-gap: 1vw;
  column-gap: 1vw;
}
.flexcenter {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.toggle {
  font-size: 25px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.toggle:last-of-type {
  margin: 0;
}
.toggle__input {
  display: block !important;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.toggle__input:disabled + .toggle-track {
  cursor: not-allowed;
  opacity: 0.7;
}
.toggle-track {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-right: calc(12 * var(--toggle-scale));
  border-radius: calc(100 * var(--toggle-scale));
  height: calc(30 * var(--toggle-scale)) !important;
  width: calc(60 * var(--toggle-scale)) !important;
}
.toggle-indicator {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #003673;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  outline: solid 2px transparent;
  position: absolute;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  border-radius: 50%;
  bottom: calc(2 * var(--toggle-scale)) !important;
  height: calc(26 * var(--toggle-scale)) !important;
  left: calc(2 * var(--toggle-scale)) !important;
  width: calc(26 * var(--toggle-scale)) !important;
}
.checkMark {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  fill: #fff;
  overflow: hidden;
  height: calc(26 * var(--toggle-scale)) !important;
  width: calc(26 * var(--toggle-scale)) !important;
  -webkit-transform: translateY(calc(-2 * var(--toggle-scale)));
  -ms-transform: translateY(calc(-2 * var(--toggle-scale)));
  transform: translateY(calc(-2 * var(--toggle-scale)));
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  padding-top: calc(4 * var(--toggle-scale));
}
.checkMark svg {
  width: 80%;
}
.toggle__input:checked + .toggle-track .toggle-indicator {
  background: var(--orange);
  -webkit-transform: translateX(calc(30 * var(--toggle-scale)));
  -ms-transform: translateX(calc(30 * var(--toggle-scale)));
  transform: translateX(calc(30 * var(--toggle-scale)));
}
.toggle__input:checked + .toggle-track .toggle-indicator .checkMark {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.after_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40vh;
}
.lottie_after_form {
  width: 30vw;
  height: 30vh;
  display: block;
  margin: auto;
}

.appointment {
  background-color: white !important;
  border-radius: 1vw;
  border: 2px solid white;
  padding: 0.5vw;
  width: auto;
  margin-right: 1vw !important;
  margin-top: 10px !important;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.appointment h1,
.appointment h2,
.appointment p {
  color: var(--darkgray) !important;
  margin: 0 !important;
  font-weight: 300 !important;
}
.appointment h1 {
}
.appointment h2 {
  text-align: center !important;
}
.appointment p {
  font-weight: 500 !important;
  text-align: center !important;
}
.appointment img {
  display: block;
  border-radius: 50%;
  width: 60%;
  margin: 1vw auto 0 auto !important;
}

.appointment:hover {
  border: 2px solid var(--orange);
  cursor: pointer;
}
input:checked + label.appointment {
  border: 2px solid var(--orange) !important;
  background-color: #fff2dc !important;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
input:checked + label.appointment img {
  -webkit-filter: unset !important;
  filter: unset !important;
}
.horizontal_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: hidden;
  overflow-x: scroll;
  padding: 1vw 0;
}

.vertgrid {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1vw;
}
.no-scrollbar {
  padding: 20px 0;
}

.card_grid {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2vw 1fr 2vw 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2vw;
  width: 100%;
  padding: 20px;
}
.card {
  position: relative;
  border-radius: 1vw;
  -webkit-box-shadow: 3px 6px 10px var(--shadow);
  box-shadow: 3px 6px 10px var(--shadow);
  padding: 1vw;
}
.card h2 {
  margin: 0;
  font-size: 1.5vw;
}
.card img {
  border-radius: 1vw;
  margin: 1vw 0;
  width: 100%;
}
.card p {
  text-align: justify;
  margin: 0 0 1vw 0;
}
.card .btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  text-align: center;
  background-color: transparent;
}

.property {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 2vw auto;
  grid-template-columns: 60% auto;
  -webkit-column-gap: 2vw;
  -moz-column-gap: 2vw;
  column-gap: 2vw;
}
.property div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 80%;
  border-radius: 1vw;
  -webkit-box-shadow: 0 10px 15px rgba(43, 43, 43, 0.32);
  box-shadow: 0 10px 15px rgba(43, 43, 43, 0.32);
  margin: 0 auto 20px auto;
  padding: 30px;
}
.property div h2 {
  margin: 0 0 20px 0;
}
#privacy {
  overflow: hidden;
}
.checkbox_label {
  width: 20%;
  font-size: 1vw !important;
  padding: 0 !important;
}
.checkbox_label > img {
  width: 7vw !important;
  height: 7vw !important;
}
.checkbox_label > h6 {
  margin: 0;
  padding: 0;
  font-size: 0.8vw;
  font-weight: 300;
  height: 2vw;
}
.grid-2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

#privacy {
  font-size: 18px;
  text-align: justify;
}
#privacy li {
  font-size: 18px;
}
#privacy h1 {
  font-size: 35px;
  font-weight: 400;
  text-align: justify;
}
#privacy h2 {
  font-size: 25px;
  font-weight: 400;
  text-align: justify;
}
#privacy h3 {
  font-size: 23px;
  font-weight: 400;
  text-align: justify;
}
#website-field {
  display: none !important;
}
@media only screen and (max-width: 980px) {
  :root {
    --toggle-scale: 0.3vw;
  }
  .active_card .infobtn {
    border: 1vw solid var(--orange);
  }
  .property div {
    width: 90%;
    border-radius: 5vw;
  }

  .checkbox_label {
    width: 35vw !important;
  }
  .checkbox_label > img {
    width: 30vw !important;
    max-width: 30vw !important;
    height: 30vw !important;
    max-height: 30vw !important;
  }
  .checkbox_label > h6 {
    font-size: 5vw;
    height: 15vw;
    font-weight: 400;
  }
  .no-scrollbar {
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }
  .no-scrollbar::-webkit-scrollbar {
    width: 0;
    display: none;
  }
  .line {
    height: 3px;
    width: 20vw;
    margin: 30px 0;
    background-color: var(--darkorange);
  }
  h1 {
    font-size: 7vw;
    font-weight: 400;
  }
  h2 {
    font-size: 5vw;
    font-weight: 400;
  }

  h3 {
    font-size: 5vw;
    font-weight: 400;
    text-align: center;
    margin: 0;
  }

  p,
  li {
    font-size: 4vw;
    font-weight: 300;
  }

  #startpic,
  #btn_container {
    height: auto;
  }
  #headline_under {
    margin-top: 25vh;
    font-size: 8vw;
    font-weight: 400;
    color: var(--darkgray);
  }
  .grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .partner_logo {
    width: 35vw;
    height: 35vw;
  }
  #about {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  #about > .dark {
    padding: 5vw 5vw;
  }
  #about_text {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  #about_buttons {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
    margin-bottom: 5vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #about_buttons .top,
  #about_buttons .bottom {
    position: relative;
    top: unset;
    right: unset;
    left: unset;
    bottom: unset;
  }
  #about_map {
    display: none;
  }
  .btn,
  [type="submit"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 5vw;
    padding: 3vw 10vw;
    border-radius: 5vw;
  }
  #startpic {
    min-height: 85vh;
  }
  #startpic_under,
  .startpic_under {
    min-height: 75vh;
  }
  #landingcard {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 5vw;
    padding: 5vw;
    width: 90%;
    border-radius: 5vw;
  }
  #landingcard_under {
    background-image: -o-linear-gradient(#00000000, #232323);
    background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#00000000),
      to(#232323)
    );
    background-image: linear-gradient(#00000000, #232323);
    bottom: 0;
  }
  #btn_container {
    margin-bottom: 5vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  #btn_container_under {
    margin-top: 5vh;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  #btn_container_under .infocard {
    color: white;
  }
  #getintouch {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 3;
    grid-row: 3;
    margin-bottom: -6vw;
  }
  .infocard {
    margin: auto;
    height: auto;
    font-size: 4vw;
    font-weight: 400;
    width: 100%;
    margin-bottom: 5vw;
  }
  .infobtn {
    width: 25vw;
    height: 25vw;
    border-radius: 5vw;
  }
  .infobtn img {
    width: 17vw;
  }

  #startpic_contact {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 200vh;
    padding: 6vh 0;
  }
  #contact_form {
    min-width: unset !important;
    max-width: 100%;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    top: unset;
    left: unset;
    margin: auto;
    width: 98vw;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 5vw;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3vw;
  }
  .form_options,
  .form_options_last {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .flex_objects {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    row-gap: 6vw;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .grid_two {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -webkit-column-gap: 0vw;
    -moz-column-gap: 0vw;
    column-gap: 0vw;
    row-gap: 2vh;
  }
  .btn_reverse {
    margin-top: 20px;
    font-size: 4vw;
  }
  label:not(.toggle) {
    font-size: 4vw;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;
    padding: 1vw;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0.9vw;
    margin: auto;
    width: 30vw;
  }
  label:not(.toggle) img {
    width: 25vw;
    max-width: 25vw;
    height: 25vw;
    max-height: 25vw;
  }
  label:not(.toggle)::before {
    top: 25vw;
    right: 1vw;
    height: 5vw;
    width: 5vw;
    font-size: 3.6vw;
    padding: 3px;
  }
  #contact_form h3 {
    margin-bottom: 7vw;
  }
  #contact_form p,
  #contact_form h3,
  #contact_form h5,
  #contact_form a {
    font-size: 4vw;
  }
  [type="text"],
  [type="tel"],
  [type="mail"],
  textarea {
    font-size: 5vw;
    padding: 0.8vw 2vw;
    border-radius: 3vw;
    margin-bottom: 1vw;
  }
  .toggle {
    font-size: 7vw;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    margin-top: 2vw !important;
  }
  .lottie_after_form {
    width: 50vw;
    height: 50vw;
  }
  .appointment {
    width: 40vw !important;
    margin-right: 4vw !important;
    margin-bottom: 5vw !important;
    border-radius: 5vw !important;
  }
  .appointment h1,
  .appointment h2,
  .appointment p {
    color: var(--darkgray) !important;
    margin: 0 !important;
    font-weight: 300 !important;
  }
  .appointment h1 {
  }
  .appointment h2 {
    text-align: center !important;
  }
  .appointment p {
    font-weight: 500 !important;
    text-align: center !important;
  }
  .center_div {
    margin-top: 3vw;
  }
  .card {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5vw;
  }
  .card_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 5vw;
    width: 90vw;
    padding: 0px;
  }
  .card h2 {
    font-size: 7vw;
    margin-top: 3vw;
  }
  .card p {
    padding: 0 10px;
  }
  .card img {
    border-radius: 3vw;
    margin: 3vw 0;
  }
  .property {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
