@charset "UTF-8";
/*!
  * Milligram v1.4.1
  * https://milligram.io
  *
  * Copyright (c) 2020 CJ Patoilo
  * Licensed under the MIT license
 */
*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  color: #000000;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.6em;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

blockquote {
  border-left: 0.3rem solid #d1d1d1;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}

blockquote *:last-child {
  margin-bottom: 0;
}

.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  background-color: #B91112 !important;
  border: 0.1rem solid #B91112 !important;
  border-radius: 3rem !important;
  color: #fff !important;
  cursor: pointer !important;
  display: flex !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  height: 3.8rem !important;
  letter-spacing: 0.1rem !important;
  line-height: 3.8rem !important;
  padding: 0 3rem !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.button:focus, .button:hover,
button:focus,
button:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit]:focus,
input[type=submit]:hover {
  background-color: #606c76;
  border-color: #606c76;
  color: #fff;
  outline: 0;
}

.button[disabled],
button[disabled],
input[type=button][disabled],
input[type=reset][disabled],
input[type=submit][disabled] {
  cursor: default;
  opacity: 0.5;
}

.button[disabled]:focus, .button[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type=button][disabled]:focus,
input[type=button][disabled]:hover,
input[type=reset][disabled]:focus,
input[type=reset][disabled]:hover,
input[type=submit][disabled]:focus,
input[type=submit][disabled]:hover {
  background-color: #B91112;
  border-color: #B91112;
}

.button.button-outline,
button.button-outline,
input[type=button].button-outline,
input[type=reset].button-outline,
input[type=submit].button-outline {
  background-color: transparent;
  color: #B91112;
}

.button.button-outline:focus, .button.button-outline:hover,
button.button-outline:focus,
button.button-outline:hover,
input[type=button].button-outline:focus,
input[type=button].button-outline:hover,
input[type=reset].button-outline:focus,
input[type=reset].button-outline:hover,
input[type=submit].button-outline:focus,
input[type=submit].button-outline:hover {
  background-color: transparent;
  border-color: #606c76;
  color: #606c76;
}

.button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover,
button.button-outline[disabled]:focus,
button.button-outline[disabled]:hover,
input[type=button].button-outline[disabled]:focus,
input[type=button].button-outline[disabled]:hover,
input[type=reset].button-outline[disabled]:focus,
input[type=reset].button-outline[disabled]:hover,
input[type=submit].button-outline[disabled]:focus,
input[type=submit].button-outline[disabled]:hover {
  border-color: inherit;
  color: #B91112;
}

.button.button-clear,
button.button-clear,
input[type=button].button-clear,
input[type=reset].button-clear,
input[type=submit].button-clear {
  background-color: transparent;
  border-color: transparent;
  color: #B91112;
}

.button.button-clear:focus, .button.button-clear:hover,
button.button-clear:focus,
button.button-clear:hover,
input[type=button].button-clear:focus,
input[type=button].button-clear:hover,
input[type=reset].button-clear:focus,
input[type=reset].button-clear:hover,
input[type=submit].button-clear:focus,
input[type=submit].button-clear:hover {
  background-color: transparent;
  border-color: transparent;
  color: #606c76;
}

.button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
button.button-clear[disabled]:focus,
button.button-clear[disabled]:hover,
input[type=button].button-clear[disabled]:focus,
input[type=button].button-clear[disabled]:hover,
input[type=reset].button-clear[disabled]:focus,
input[type=reset].button-clear[disabled]:hover,
input[type=submit].button-clear[disabled]:focus,
input[type=submit].button-clear[disabled]:hover {
  color: #B91112;
}

code {
  background: #f4f5f6;
  border-radius: 0.4rem;
  font-size: 86%;
  margin: 0 0.2rem;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

pre {
  background: #f4f5f6;
  border-left: 0.3rem solid #B91112;
  overflow-y: hidden;
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

hr {
  border: 0;
  border-top: 0.1rem solid #f4f5f6;
  margin: 3rem 0;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
input[type=week],
input:not([type]),
textarea,
select {
  background-color: transparent;
  border: 0.1rem solid #d1d1d1;
  border-radius: 0.4rem;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 1rem 0.7rem;
  width: 100%;
}

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=week]:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
  border-color: #B91112;
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23d1d1d1" d="M0,0l6,8l6-8"/></svg>') center right no-repeat;
  padding-right: 3rem;
}

select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%239b4dca" d="M0,0l6,8l6-8"/></svg>');
}

select[multiple] {
  background: none;
  height: auto;
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
}

.container {
  margin: 0 auto;
  max-width: 125rem;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}

.container-fluid {
  margin: 0 auto;
  max-width: 150rem;
  padding: 0;
  position: relative;
  width: 100%;
}

.row {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
}

.row.row-no-padding {
  padding: 0;
}

.row.row-no-padding > .column {
  padding: 0;
}

.row.row-wrap {
  flex-wrap: wrap;
}

.row.row-top {
  align-items: flex-start;
}

.row.row-bottom {
  align-items: flex-end;
}

.row.row-center {
  align-items: center;
}

.row.row-stretch {
  align-items: stretch;
}

.row.row-baseline {
  align-items: baseline;
}

.row .column {
  display: block;
  flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}

.row .column.column-offset-10 {
  margin-left: 10%;
}

.row .column.column-offset-20 {
  margin-left: 20%;
}

.row .column.column-offset-25 {
  margin-left: 25%;
}

.row .column.column-offset-33, .row .column.column-offset-34 {
  margin-left: 33.3333%;
}

.row .column.column-offset-40 {
  margin-left: 40%;
}

.row .column.column-offset-50 {
  margin-left: 50%;
}

.row .column.column-offset-60 {
  margin-left: 60%;
}

.row .column.column-offset-66, .row .column.column-offset-67 {
  margin-left: 66.6666%;
}

.row .column.column-offset-75 {
  margin-left: 75%;
}

.row .column.column-offset-80 {
  margin-left: 80%;
}

.row .column.column-offset-90 {
  margin-left: 90%;
}

.row .column.column-10 {
  flex: 0 0 10%;
  max-width: 10%;
}

.row .column.column-20 {
  flex: 0 0 20%;
  max-width: 20%;
}

.row .column.column-25 {
  flex: 0 0 25%;
  max-width: 25%;
}

.row .column.column-33, .row .column.column-34 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.row .column.column-40 {
  flex: 0 0 40%;
  max-width: 40%;
}

.row .column.column-50 {
  flex: 0 0 50%;
  max-width: 50%;
}

.row .column.column-60 {
  flex: 0 0 60%;
  max-width: 60%;
}

.row .column.column-66, .row .column.column-67 {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}

.row .column.column-75 {
  flex: 0 0 75%;
  max-width: 75%;
}

.row .column.column-80 {
  flex: 0 0 80%;
  max-width: 80%;
}

.row .column.column-90 {
  flex: 0 0 90%;
  max-width: 90%;
}

.row .column .column-top {
  align-self: flex-start;
}

.row .column .column-bottom {
  align-self: flex-end;
}

.row .column .column-center {
  align-self: center;
}

.row.wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 60rem) {
  .row.wrap {
    display: block;
  }
  .row.wrap .column {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 60rem) {
  .row {
    display: block;
  }
  .row .column {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 60rem) {
  .row {
    flex-direction: row;
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
  .row .column {
    margin-bottom: inherit;
    padding: 0 1rem;
  }
}
a {
  color: #B91112;
  text-decoration: none;
}

a:focus, a:hover {
  color: #606c76;
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: circle inside;
}

.button,
button,
dd,
dt,
li {
  margin-bottom: 1rem;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

table {
  border-spacing: 0;
  display: block;
  overflow-x: auto;
  text-align: left;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #e1e1e1;
  padding: 1.2rem 1.5rem;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

td:last-child,
th:last-child {
  padding-right: 0;
}

@media (min-width: 40rem) {
  table {
    display: table;
    overflow-x: initial;
  }
}
b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

h1 {
  font-size: 4.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -0.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}


@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  src: url("../font/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100 900;
  src: url("../font/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
body {
  padding-top: 150px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

h2 {
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 4rem);
  margin-bottom: clamp(1.5rem, 4vw, 4rem);
  letter-spacing: 0.5px;
}

h3 {
  font-weight: bold;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

#content h1 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 4rem);
  margin-bottom: clamp(1.5rem, 4vw, 4rem);
  letter-spacing: 0.5px;
}

p.medium-font, ol.medium-font, li.medium-font {
  font-weight: 400;
}
p.smaller-font, ol.smaller-font, li.smaller-font {
  font-size: clamp(14px, 1.8vw, 1.3rem);
}
p, ol, li {
  font-size: clamp(14px, 2vw, 19.2px);
  font-weight: 500;
}

.row {
  position: relative;
}
.row .column {
  position: relative;
}

.logo {
  max-width: 150px;
}
.logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

a.skip-link {
  display: inline-block;
  color: #555;
  background: #fff;
  padding: 0.5em;
  position: absolute;
  left: -99999rem;
  z-index: 100;
}

a.skip-link:focus {
  left: 0;
}

.t-small {
  font-size: 1.5rem;
}
.t-small p {
  font-size: 1.5rem;
}

.t-x-small {
  font-size: 1.5rem;
}
.t-x-small p {
  font-size: 1.35rem;
}

.t-bold {
  font-weight: bold;
}

@media (min-width: 40rem) {
  .t-center {
    text-align: center;
  }
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.flex-dir-col {
  flex-direction: column;
}

.pb-5 {
  padding-bottom: clamp(1.5rem, 5vw, 10rem);
}

.mb-1 {
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
}

.mb-2 {
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

.mt-2 {
  margin-top: clamp(1.5rem, 5vw, 3rem);
}

.mt-3 {
  margin-top: clamp(1.5rem, 5vw, 4rem);
}

.mb-3 {
  margin-bottom: clamp(1.5rem, 5vw, 4rem);
}

.pb-5 {
  padding-bottom: clamp(1.5rem, 5vw, 10rem) !important;
}

.pt-5 {
  padding-top: clamp(1.5rem, 5vw, 10rem);
}

.px-5.mobile-px-5 {
  padding-right: clamp(1.5rem, 5vw, 5rem);
  padding-left: clamp(1.5rem, 5vw, 5rem);
}
@media (min-width: 60rem) {
  .px-5 {
    padding-right: clamp(1.5rem, 5vw, 5rem);
    padding-left: clamp(1.5rem, 5vw, 5rem);
  }
}

.py-2 {
  padding-top: clamp(1.5rem, 5vw, 3rem) !important;
  padding-bottom: clamp(1.5rem, 5vw, 3rem) !important;
}

.py-5 {
  padding-top: clamp(1.5rem, 5vw, 5rem) !important;
  padding-bottom: clamp(1.5rem, 5vw, 5rem) !important;
}

.t-color-white * {
  color: white !important;
}

.j-c-center img {
  object-fit: contain;
}
@media (min-width: 40rem) {
  .j-c-center {
    display: flex !important;
    flex-wrap: wrap !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
    align-content: flex-start !important;
  }
  .j-c-center.space-between {
    align-content: space-between !important;
    align-content: last baseline !important;
  }
}
.j-c-center.mobile-and-desktop {
  display: flex !important;
  flex-wrap: wrap !important;
  -webkit-box-pack: center !important;
  justify-content: center !important;
  align-content: flex-start !important;
}
.j-c-center.mobile-and-desktop img {
  object-fit: contain;
}

.center-vertically {
  align-content: center;
}
.center-vertically.r-top-10 {
  margin-top: -10%;
}

.gap-1 {
  gap: clamp(0.5rem, 2vw, 1.5rem);
  justify-content: space-evenly !important;
}

.heading-min-h-d h3 {
  min-height: 1.2rem;
}

.bl-red {
  border-left: 3px solid #B91112;
}

.bg-red {
  background-color: #B91112;
}

.read-more-link a {
  border-bottom: 3px solid #B91112;
  color: #B91112 !important;
  font-weight: 600;
  display: inline-block;
}
.read-more-link a:after {
  content: "›";
  margin-left: 10px;
}

img.icon {
  max-width: 100%;
  height: auto;
}

.bg-from-left {
  background-image: url("/wp-content/themes/novaservo/static/graphics/general/bg-from-right.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}
.bg-from-left .container {
  z-index: 2;
}
.bg-from-left:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.24) 25%, rgba(255, 255, 255, 0) 41%);
  background-repeat: no-repeat;
}
.bg-from-left:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.24) 24%, rgba(255, 255, 255, 0) 41%);
}

.bg-from-right {
  background-image: url("/wp-content/themes/novaservo/static/graphics/general/bg-from-left-new.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.bg-from-right .container {
  z-index: 2;
}
.bg-from-right:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 50%;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.24) 25%, rgba(255, 255, 255, 0) 41%);
}
.bg-from-right:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 50%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.24) 25%, rgba(255, 255, 255, 0) 41%);
}

.btn-general {
  background: #B91112;
  border: none;
  color: white;
  border-radius: 3rem;
  font-size: 1.5rem;
  padding: 1px 40px;
  display: flex;
  justify-self: center;
  margin-top: 30px;
}

a.btn-general {
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
a.btn-general:hover {
  color: white;
  background: rgb(161.646039604, 14.853960396, 15.7277227723);
}

.fancy-list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 40rem) {
  .fancy-list {
    justify-content: center;
  }
}
.fancy-list li {
  max-width: 100%;
  margin: 15px;
  padding: 20px;
  padding-right: 2px;
  list-style-type: none;
  background-image: url("/wp-content/themes/novaservo/static/graphics/general/check.svg");
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: 0 5px;
  padding-left: 50px;
  text-align: left;
  color: #b91012;
  font-weight: bold;
}
@media (min-width: 40rem) {
  .fancy-list li {
    max-width: 30.5%;
  }
}

.reference-column {
  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.1215686275);
  max-width: 100% !important;
  width: 100% !important;
  margin-right: 3%;
  padding: 4rem !important;
  flex-wrap: wrap !important;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.937);
}
.reference-column a {
  border-bottom: 2px solid #B91112 !important;
  padding-bottom: 3px;
}
.reference-column .logo-container {
  display: block;
  margin-bottom: 1.5rem;
}
.reference-column .logo-container img.reference-logo {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 80px;
}
@media (min-width: 50rem) {
  .reference-column {
    max-width: 47% !important;
  }
}
.reference-column ul li::marker {
  color: #b91012;
  font-size: 1.5em;
}
.reference-column li, .reference-column p {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
.reference-column li {
  list-style-position: outside;
  padding-right: 1rem;
  padding-left: 0.5rem;
  margin-left: 2rem;
  list-style-type: disc !important;
}
.reference-column h3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#main-content ul li::marker {
  color: #b91012;
  font-size: 1.8rem;
}
#main-content li, #main-content p {
  font-size: 1.8rem;
}
#main-content p {
  line-height: 2.7rem;
  font-size: 1.8rem;
}
#main-content li {
  list-style-position: outside;
  padding-right: 1rem;
  padding-left: 0.5rem;
  margin-left: 2rem;
  list-style-type: disc !important;
}
#main-content a {
  border-bottom: 1px solid #B91112 !important;
}

.reference-img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.reference-img img {
  margin-bottom: 20px;
}
@media (min-width: 40rem) {
  .reference-img img {
    margin-bottom: 50px;
  }
}

.pagination-block {
  display: flex;
  justify-content: center;
}
.pagination-block ul.pagination {
  display: flex;
}
.pagination-block li {
  margin: 5px !important;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.pagination-block li .page-number {
  display: flex;
  min-width: 40px;
  height: 40px;
  border: 2px solid #B91112;
  justify-content: center;
  align-items: center;
  border-radius: 0 !important;
  color: #222;
  margin: 5px !important;
  transition: all ease-in-out 0.18s;
}
.pagination-block li .page-number.current {
  background: #B91112;
  color: white;
  border: 1px solid #B91112;
}
.pagination-block li .page-number:hover {
  background: #B91112;
  color: white;
  transition: all ease-in-out 0.18s;
  border: 1px solid #B91112;
}

@media (min-width: 55rem) {
  .fixed-top {
    padding-left: 30px;
    padding-right: 30px;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 29%, rgba(0, 0, 0, 0) 100%);
  }
  .nav-main-cont {
    display: flex;
    align-content: center;
  }
  #nav-main {
    display: flex;
    justify-content: end;
  }
  #nav-main a {
    color: #fff;
  }
  #nav-main > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  #nav-main > ul > li {
    margin: 0;
  }
  #nav-main > ul > li a {
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: all ease-in 0.4s;
  }
  #nav-main > ul > li a:hover {
    border-bottom: 2px solid white;
    width: 100%;
    transition: all ease-in 0.05s;
  }
}
@media (max-width: 54.99rem) {
  .menu-toggle {
    display: block !important;
    width: 40px;
    height: 40px;
    background-size: contain;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
  }
  .menu-toggle.closed {
    background-image: url("/wp-content/themes/novaservo/static/graphics/icon/menu-btn-open.png");
  }
  .menu-toggle.opened {
    background-image: url("/wp-content/themes/novaservo/static/graphics/icon/menu-btn-close.png");
  }
  .fixed-top {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 1rem;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    background: #000000;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 29%, rgba(0, 0, 0, 0) 100%);
  }
  #nav-main {
    display: none;
  }
  #nav-main.opened {
    display: block;
  }
  #nav-main {
    background-color: black;
    padding: 2rem;
    margin-top: 15px;
  }
  #nav-main a {
    color: #fff;
  }
  #nav-main > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  #nav-main > ul > li {
    margin: 0;
    margin-bottom: 1rem;
  }
  #nav-main > ul > li a {
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: all ease-in 0.4s;
  }
  #nav-main > ul > li a:hover {
    border-bottom: 2px solid white;
    width: 100%;
    transition: all ease-in 0.05s;
  }
}
@media (max-width: 39.999rem) {
  .desktop-hero {
    display: none !important;
  }
}
@media (min-width: 40rem) {
  .desktop-hero {
    display: flex !important;
  }
}
.desktop-hero {
  margin-top: -150px;
  min-height: clamp(500px, 75vw, 850px);
  display: flex;
  align-items: center;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.desktop-hero .content {
  text-align: center;
}
.desktop-hero .content h1 {
  font-size: clamp(1.5rem, 5vw, 7rem);
  font-weight: 900;
  color: white;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
.desktop-hero .content p {
  color: white;
}
.desktop-hero.low {
  min-height: clamp(500px, 75vw, 50px);
}

@media (max-width: 39.999rem) {
  .mobile-hero {
    display: flex !important;
  }
}
@media (min-width: 40rem) {
  .mobile-hero {
    display: none !important;
  }
}
.mobile-hero {
  margin-top: -150px;
  min-height: clamp(500px, 75vw, 850px);
  display: flex;
  align-items: center;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.mobile-hero .content {
  text-align: center;
}
.mobile-hero .content h1 {
  font-size: clamp(1.5rem, 5vw, 7rem);
  font-weight: 900;
  color: white;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
.mobile-hero .content p {
  color: white;
}

@media (min-width: 40rem) {
  .product-content {
    padding: 0 1rem 3rem 4rem;
  }
}
.product-content .product-logo {
  max-width: 300px;
  position: relative;
}
.product-content .product-logo:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid red;
}

.cooperation-icon {
  display: block;
  width: 150px;
  max-height: 55px;
  max-width: 100%;
}

@media (min-width: 40rem) {
  .testimonials .item {
    padding: 0 5rem 0 5rem;
  }
  .testimonials .item p {
    font-size: clamp(1rem, 4vw, 1.7rem);
  }
}

.contact-card .name {
  font-size: 2rem;
  color: #B91112;
}
.contact-card .title,
.contact-card .field {
  font-weight: bold;
  font-size: 1.5rem;
}
.contact-card .mail {
  line-break: anywhere;
}

input:not([type=submit]),
textarea {
  border-radius: 0 !important;
  border: 1px solid #B91112 !important;
  background: rgba(255, 255, 255, 0.6) !important;
  text-align: left !important;
}

.gform-theme--foundation .gfield--width-full {
  grid-row-gap: 0 !important;
  row-gap: 0 !important;
}

.gform-theme--foundation .gform_fields {
  row-gap: 1.5rem !important;
}

div#gform_confirmation_wrapper_1 {
  padding: 33px;
  color: #b91112;
  background: rgba(255, 255, 255, 0.5019607843);
  border: 1px solid #b91112;
}

.news-date {
  color: #B91112;
  padding-bottom: 0.5rem;
}

.news-container {
  flex-wrap: wrap;
}

.news-column {
  max-width: 33.32% !important;
  flex-wrap: wrap;
  padding-right: 1rem !important;
}

.justify-news-center {
  justify-content: center;
}
.justify-news-center .column {
  display: flex;
  flex-direction: column;
}

.tease-post {
  display: block;
  width: 100%;
}
.tease-post img.teaser-thumbnail {
  display: block;
  float: right;
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 1rem;
}
@media (min-width: 40rem) {
  .tease-post img.teaser-thumbnail {
    float: right;
    max-width: 40%;
    margin: 10px 10px 10px 50px;
  }
}
.tease-post h2, .tease-post p {
  display: block;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

#footer {
  background-color: #4B4B4B;
  color: white;
  min-height: 450px;
  margin-top: 50px;
}
#footer h2,
#footer h3,
#footer h4 {
  font-size: 2.5rem;
  font-weight: 300;
}
#footer p {
  font-size: 1.5rem;
}
#footer a {
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 0.5rem;
}
/*# sourceMappingURL=styles.css.map */
