:root {
  --red: rgb(255, 0, 51);
  --red-link: rgb(227, 6, 19);
  --light-red: rgb(214, 69, 65);
  --dark-red: rgb(112, 24, 29);
  --blue: rgb(10, 34, 57);
  --dark-blue: rgb(8, 29, 48);
  --button-hover: rgb(166, 40, 40);
  --green: rgb(59, 147, 118);
  --yellow: rgb(255, 165, 0);
  --grey: rgb(157, 167, 176);
  --dark-grey: rgb(108, 122, 136);
  --light-grey: rgb(206, 211, 215);
  --lighter-grey: rgb(241, 243, 241);
  --cream: rgb(250, 248, 244);
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);
  --color: var(--dark-grey);
  --light-color: (--light-grey);
  --main-color: var(--red);
  --main-shade-color: #a62828;
  --main-tint-color: color-mix(in srgb, var(--white), var(--main-color), 15%);
  --secondary-color: var(--blue);
  --secondary-shade-color: color-mix(in srgb, var(--black), var(--secondary-color), 25%);
  --secondary-tint-color: color-mix(in srgb, var(--white), var(--secondary-color), 15%);
  --border: var(--light-grey);
  --shadow: rgb(206, 211, 215);
  --default-text-color: #262626;
  --sec-light-grey: rgb(220, 221, 222);
  --sec-grey: rgb(138, 140, 142);
  --sec-dark-grey: rgb(99, 100, 102);
  --sec-cream: rgb(138, 140, 142);
  --sec-shade-cream: color-mix(in srgb, var(--black), var(--sec-cream), 25%);
  --sec-orange: rgb(255, 132, 0);
  --sec-shade-orange: color-mix(in srgb, var(--black), var(--sec-orange), 25%);
  --sec-yellow: rgb(255, 198, 0);
  --sec-shade-yellow: color-mix(in srgb, var(--black), var(--sec-yellow), 25%);
  --sec-blue: rgb(35, 96, 147);
  --sec-shade-blue: color-mix(in srgb, var(--black), var(--sec-blue), 25%);
  --sec-violet: rgb(133, 51, 118);
  --sec-shade-violet: color-mix(in srgb, var(--black), var(--sec-violet), 25%);
  --sec-green: rgb(66, 172, 130);
  --sec-shade-green: color-mix(in srgb, var(--black), var(--sec-green), 25%);
  --be-red: #ed002f;
  --be-dark-red: #930722;
  --be-light-grey: #f4f4f4;
  --be-dark-grey: #707070;
  --be-white: #FFFFFF;
  --red-black-gradient: linear-gradient(205deg, #3f000b 0%, #ec173c 100%);
  --red-black-gradient-reverse: linear-gradient(205deg, #ec173c 0%, #3f000b 100%);
  --grey-gradient: linear-gradient(205deg, #2d2d2d 0%, #b3b3b3 100%);
  --gradient-red: linear-gradient(90deg, var(--be-red) 50%, var(--dark-red) 150%);
  --gradient-red-reverse: linear-gradient(270deg, var(--be-red) 50%, var(--dark-red) 150%);
  --red-gradient: var(--gradient-red);
  --vPadding: min(3rem, 6vw);
  --hPadding: min(5rem, 10vw);
  --hvPadding: calc(var(--vPadding) / 2);
  --hhPadding: calc(var(--hPadding) / 2);
  --linePadding: 1rem;
}

@font-face {
  font-family: "Fira sans";
  src: url("https://www.verisure.be/themes/custom/da_vinci/fonts/FiraSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira sans";
  src: url("https://www.verisure.be/themes/custom/da_vinci/fonts/FiraSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Fira Sans', sans-serif !important;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
  background-color: rgb(229, 229, 229);
}

*,
*::before,
*::after,
::placeholder {
  font-variant-ligatures: none !important;
  font-feature-settings: "liga" 0 !important;
}

.hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: .5rem !important;
}

.btn {
  margin-top: 20px !important;
  padding: 10px 20px !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  border: 1px solid transparent !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: center !important;
  border-radius: 20px !important;
  justify-content: center !important;
  color: white !important;
}

a.btn.btn-primary.offer-button::after,
button.btn.btn-primary.offer-button::after {
  display: inline-block !important;
  height: 26px;
  width: 26px;
  background: transparent url("https://www.verisure.be/themes/custom/bootstrap_securitas/images/icons/svg/goto_alt.svg") no-repeat center;
  background-size: contain;
  content: '';
  margin-left: 10px;
}

a.btn.btn-primary.offer-button,
#quote-form a.btn.btn-primary.offer-button {
  display: inline-flex;
  justify-items: center;
  align-items: center;
  font-size: 24px !important;
  vertical-align: middle !important;
  margin: 0px !important;
  border-radius: 20px !important;
}

.absolute-top {
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  z-index: 1;
}

.centered-image-responsive {
  height: 500px;
  width: auto;
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  border: 0;
}

.btn-be-red {
  background-color: var(--be-red);
}

.btn-be-red:focus,
.btn-be-red:focus-visible {
  outline: 0;
  box-shadow: unset;
}

.btn-be-red:hover {
  background-color: var(--be-dark-red);
}

.bg-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

form input[type='password'],
form input[type='search'],
form input[type='email'],
form input[type='text'],
form input[type='tel'] {
  background-color: white;
  border: 1px solid #ced3d7;
  font-size: 0.875rem;
  max-width: 100%;
  padding: .5rem;
  width: 100%;
}

form .fieldset-legend,
form label {
  color: #ced3d7;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.card {
  border-radius: 30px;
}

a:not([href]):not([class]),
a {
  color: var(--be-red);
  cursor: pointer;
  text-decoration: none;
  transition: color .2s;
  background-color: transparent;
}

a:not([href]):not([class]) {
  transition: none;
}

a:active,
a:hover {
  outline: 0;
}

a:hover {
  color: #ff2652;
  text-decoration: underline;
}

strong {
  font-weight: 500;
}

.hero:not(.hero-small):not(.hero-tiny) .hero-title {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
}

:is(.hero, .columns, .new) :is(h1, h2),
:is(.hero, .columns, .new) :is(h1, h2, h3, h4, h5, p):is(.h1, .h2) {
  font-size: clamp(2.6rem, 4vw, 3.8rem) !important;
  font-weight: 500;
}

:is(.hero, .columns, .new) :is(h1, h2, h3, h4, h5),
:is(.hero, .columns, .new) :is(h1, h2, h3, h4, h5, p):is(.h1, .h2, .h3, .h4, .h5) {
  line-height: normal;
  margin-bottom: var(--linePadding);
  margin-top: 0;
}

.text-white,
.text-white p,
p.text-white {
  color: #fff !important;
}

.hero .hero-title {
  position: absolute;
  z-index: 2;
  padding-top: 111px;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.padded {
  padding: var(--vPadding, 48px) var(--hPadding, 80px);
}

.text-glow {
  text-shadow: white 0px 0px 10px;
}

:is(.hero, .columns, .new) :is(h1, h2, h3, h4, h5, h6).thinner,
:is(.hero, .columns, .new) :is(h1, h2, h3, h4, h5, h6, p):is(.h1, .h2, .h3, .h4, .h5, .h6).thinner {
  font-weight: 300 !important;
  letter-spacing: -2px;
}

.new,
.new p:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  --border-radius: 25px;
  color: #262626;
}

:is(.hero, .columns, .new) h5,
:is(.hero, .columns, .new) :is(h1, h2, h3, h4, h5, h6, p).h5 {
  font-size: clamp(1.1rem, 2vw, 2rem) !important;
  font-weight: 500;
}

:is(.columns, .hero, .new) :is(p, li, p > a) {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.hero p,
.hero li {
  color: rgb(255, 255, 255);
  margin-bottom: unset;
}

:is(.columns, .hero, .new) p {
  margin-bottom: 1rem;
}

.text-white,
.text-white p,
p.text-white {
  color: rgb(255, 255, 255) !important;
}

.object-fit-cover,
.object-fit-cover img {
  object-fit: cover;
  object-position: center center;
}

.phone-wrapper {
  margin: 8px;
  background: linear-gradient(205deg, #00a37d 0%, #00bf9e 100%);
  padding: 8px 16px;
  color: white;
  border-radius: 999px;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 95%;
  justify-content: center;
}

@media (min-width: 991px) {
  .hero {
    height: 75vh;
  }

  .text-lg-left {
    text-align: left !important;
  }

  .menu-anchor .inner_section_title .title {
    font-size: 26px !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
}

@media (min-width: 768px) {
  .hero {
    height: max(90vh, 700px);
    max-height: min(1000px, 90vh);
  }

  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
}

@media (min-width: 576px) {
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

@media all and (max-width: 450px) {
  .bottom-fix-wrapper-desktop {
    width: 90% !important;
    min-width: unset !important;
    margin: auto;
    bottom: 2% !important;
  }
}
