@charset "UTF-8";
:root {
  --light-600: #D1D1CF;
  --light-500: #E6E3E3;
  --light-400: #F0F0F0;
  --dark-600: #000000;
  --dark-500: #524F4B;
  --dark-400: #8F8B86;
  --column-width: 18.25rem;
  --scale-1: 14%;
  --scale-2: 30%;
  --scale-3: 50%;
  --scale-4: 62.9%;
  --scale-6: 95.5% ;
}

#backBtn, div[aria-label=breadcrumbs] ul li a {
  text-decoration: none;
  color: #000;
}

.moduletable_menu li.active a:after, .moduletable_menu li a:hover:after {
  width: 99%;
  opacity: 1;
}

@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 62.5%;
}

body {
  background-color: var(--light-400);
  font-family: "Cera Pro";
  font-style: normal;
  font-weight: 400;
  /* overflow-x: hidden; */
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 1.6rem;
  line-height: 1.4;
  padding-top: 25.6rem;
}

.container {
  max-width: 100%;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #000;
  transition: color 0.5s ease;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a.arrow_link {
  text-decoration: none;
  display: flex !important;
  align-items: center;
}
a.arrow_link:after {
  content: "";
  display: inline-block;
  background-image: url("../../img/submit-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transition: 0.4s margin;
}
a.arrow_link:hover:after {
  margin-left: 15px;
}

strong, b {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote {
  display: block;
  background-color: #f9f9f9;
  border-left: 5px solid #ccc;
  padding: 10px 20px 5px;
  margin: 10px 0;
}
blockquote p {
  font-style: italic;
}

.moduletable_menu li a:after {
  content: " ";
  width: 0;
  display: block;
  transition: all 0.4s;
  opacity: 0;
  background-color: #000;
  position: relative;
}

dd {
  display: block;
  margin: 0px;
}

label.asterix-ancor.visCSSlabel,
.tooltip,
.star {
  display: none !important;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
.btn,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: block;
  text-transform: lowercase;
  background-color: var(--light-500);
  color: #000;
  text-decoration: none;
  transition: all 0.5s ease;
  border: none;
  position: relative;
  font-weight: 700;
  padding: 0;
  font-family: "Cera Pro", sans-serif;
  cursor: pointer;
  font-size: 1.6rem;
}
.button:after,
.btn:after,
button:after,
input[type=submit]:after,
input[type=reset]:after,
input[type=button]:after {
  content: "";
  background-image: url("../../img/submit-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transition: 0.4s margin;
  position: relative;
  top: 4px;
}
.button:hover:after,
.btn:hover:after,
button:hover:after,
input[type=submit]:hover:after,
input[type=reset]:hover:after,
input[type=button]:hover:after {
  margin-left: 15px;
}

.button:hover a, .button:focus a {
  color: #F0F0F0 !important;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  color: #000;
  background-color: #F0F0F0;
  border-color: #000;
}
.button.button-primary:hover, .button.button-primary:focus,
button.button-primary:hover,
button.button-primary:focus,
input[type=submit].button-primary:hover,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:hover,
input[type=reset].button-primary:focus,
input[type=button].button-primary:hover,
input[type=button].button-primary:focus {
  color: #000;
  background-color: #F0F0F0;
  border-color: #4700bc;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.visform textarea,
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  height: 40px;
  padding: 6px 15px;
  background-color: var(--light-500);
  border: 1px solid #4f4f4f !important;
  width: 100%;
  box-shadow: none;
  box-sizing: border-box;
  font-family: "Cera Pro", sans-serif;
  letter-spacing: 0.03em;
  width: 100% !important;
}
.visform textarea:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: 1px solid #4700bc;
  outline: 0;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

label,
legend {
  display: block;
}

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

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

.custom-radio,
.custom-checkbox {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #000;
  background: #F0F0F0;
  transition: 0.4s all;
  margin-right: 9px;
  margin-top: -3px;
}
.custom-radio span,
.custom-checkbox span {
  display: block;
  background-color: #000;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0);
  transition: 0.1s transform;
}
.custom-radio input[type=radio],
.custom-radio input[type=checkbox],
.custom-checkbox input[type=radio],
.custom-checkbox input[type=checkbox] {
  height: inherit;
  width: inherit;
  border-radius: inherit;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  display: block;
}
.custom-radio input[type=radio]:checked + span,
.custom-radio input[type=checkbox]:checked + span,
.custom-checkbox input[type=radio]:checked + span,
.custom-checkbox input[type=checkbox]:checked + span {
  transform: scale(0.65);
}

.custom-checkbox {
  border-radius: 5px;
}
.custom-checkbox span {
  border-radius: 5px;
}

.radio-inline,
.checkbox-inline {
  cursor: pointer;
}
.radio-inline:hover .custom-radio,
.radio-inline:hover .custom-checkbox,
.checkbox-inline:hover .custom-radio,
.checkbox-inline:hover .custom-checkbox {
  background: #2ad064;
}

label > .label-body {
  display: inline-block;
  margin-left: 10px;
  font-weight: normal;
}

.invalid {
  border-color: #c60e0e !important;
}

.required {
  position: relative;
}

.errorcontainer {
  position: absolute;
  right: 0;
  top: -71px;
  width: 250px;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0 0 15px 0;
}

li {
  margin-bottom: 10px;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 20px 5px;
  margin: 0 2px;
  font-size: 90%;
  white-space: nowrap;
  background: #fafafa;
  border: 1px solid #000;
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 10px 15px;
  white-space: pre;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
  padding: 0 0 0 40px;
  border-spacing: 4px 2px;
  border-collapse: separate;
  margin: auto;
}

tr:first-child td {
  color: #F0F0F0;
  background: #4700bc;
  padding: 17px 40px;
  border: 0;
  font-size: 13px;
}

th,
td {
  border: 0;
  background: #4f4f4f;
  padding: 7px 24px 7px 15px;
  vertical-align: top;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #4700bc;
}

td:first-child {
  text-align: left;
  padding-left: 38px;
  font-size: 13px;
  font-weight: 700;
  color: #fafafa;
}

tr td {
  background: #4f4f4f;
}

a.close {
  font-size: 18px;
  position: absolute;
  right: 10px;
  top: 3px;
}

.alert {
  position: relative;
  padding: 30px 35px;
  background-color: #65CB0D;
  margin: 0 auto 60px;
  color: white;
  max-width: 98%;
}
.alert a.close {
  top: 14px;
  color: white;
  font-size: 28px;
  right: 22px;
  cursor: pointer;
}
.alert h4 {
  color: white;
}
.alert.warning {
  background-color: #FFB300;
}
.alert.error {
  background-color: #FF1200;
}

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

ul {
  margin: 0 0 15px 0;
  padding: 0;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 30px;
  margin-bottom: 35px;
  border-width: 0;
  border-top: 1px solid #4700bc;
}

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  z-index: 1;
}
header #header-menu-btn {
  text-decoration: none;
  position: absolute;
  right: 1.8rem;
  top: 1rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  #header-logo {
    width: var(--column-width);
    height: auto;
  }
}

#page-title-container {
  z-index: 1;
  position: fixed;
  display: flex;
  top: 2rem;
  left: calc(3rem + 438px);
}

nav {
  height: 100%;
  width: 0;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
  top: 0;
  right: 0;
  background-color: var(--light-500);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 6rem;
}
nav #sidebar-close-btn {
  text-decoration: none;
  position: absolute;
  right: 1.8rem;
  top: 1rem;
  cursor: pointer;
  width: 11rem;
  text-align: right;
}
nav #sidebar-link-container {
  display: flex;
  height: fit-content;
  margin-right: 7.9rem;
  cursor: pointer;
  flex-wrap: wrap;
}
nav #sidebar-link-container > div {
  width: 100%;
}
nav .mod-languages {
  text-align: right;
  width: 100px;
  bottom: 1rem;
  right: 1.8rem;
  position: absolute;
  order: 9999;
}
nav .mod-languages ul li {
  margin: 0;
}
nav .mod-languages ul li.lang-active {
  background: none !important;
}
nav .mod-languages ul li:first-child::after {
  content: "/";
  font-size: 3.2rem;
  display: inline-block;
  font-family: "Cera Pro";
  font-weight: 700;
}
@media only screen and (max-width: 1090px) {
  nav .mod-languages ul li:first-child::after {
    font-size: 2.4rem;
  }
}
nav .mod-languages ul li a {
  margin: 0;
  padding: 0;
  text-transform: lowercase;
  display: inline-block;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li + li {
  margin-top: 3.2rem;
}
nav a {
  text-decoration: none;
  display: block;
  transition: 0.5s;
  word-break: keep-all;
}
nav a span {
  word-break: keep-all;
  display: block;
}
nav #language-change-btn-link {
  position: absolute;
  bottom: 2rem;
}

@media only screen and (max-width: 460px) {
  nav {
    justify-content: flex-start;
  }
  nav #sidebar-link-container {
    margin-right: 0;
    margin-left: 2rem;
  }
  nav #language-change-btn-link {
    bottom: 2rem;
  }
}
@media only screen and (max-width: 940px) {
  header {
    padding: 2rem 2rem 0 2rem;
  }
  #page-title-container {
    position: static;
    display: flex;
    flex-direction: column;
    margin-bottom: 8.4rem;
    margin-left: 2rem;
  }
}
.slider ul {
  height: 407px !important;
  min-height: 407px !important;
}

.slider img {
  height: 407px !important;
  -o-object-fit: none !important;
  object-fit: none !important;
  width: 100%;
  max-width: initial;
}

.slider .slide-content a.qx-btn {
  border-color: white;
  border-radius: 0;
  border: 3px solid white;
  padding: 30px 20px;
}

.page-header {
  z-index: 1;
  position: fixed;
  display: flex;
  top: 0;
  left: calc(3rem + 438px);
}
@media (max-width: 991px) {
  .page-header {
    position: unset;
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }
}

#menuIcon {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 11px 9px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  height: 41px;
}
#menuIcon > div {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
}
#menuIcon > div > span {
  top: 50%;
  display: block;
  margin-top: -4px;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.22s;
}
#menuIcon > div > span:after, #menuIcon > div > span:before, #menuIcon > div > span {
  background-color: #000;
  position: absolute;
  width: 21px;
  height: 3px;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: transform;
}
#menuIcon > div > span:after, #menuIcon > div > span:before {
  display: block;
  content: "";
}
#menuIcon > div > span:before {
  top: -8px;
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}
#menuIcon > div > span:after {
  bottom: -8px;
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#menuIcon.active span {
  left: -2px;
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(225deg);
}
#menuIcon.active span:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}
#menuIcon.active span:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}

#_desktop_menu_items {
  text-align: center;
}

.moduletable_menu ul {
  margin: 0;
  display: flex;
}
@media (min-width: 1600px) {
  .moduletable_menu ul {
    display: inline-block;
    margin: 0 auto;
  }
}
.moduletable_menu li {
  list-style: none;
  margin: 0 45px 0 0;
  display: inline-block;
}
@media (min-width: 992px) {
  .moduletable_menu li {
    margin: 0 55px 0 0;
  }
}
@media (min-width: 1600px) {
  .moduletable_menu li {
    margin: 0 32px 0 25px;
  }
}
.moduletable_menu li a {
  display: block;
  padding: 16px 0;
  z-index: 999;
  transition: all 0.5s ease;
  text-align: center;
  text-indent: 0;
  text-transform: uppercase;
}
.moduletable_menu li a:after {
  top: 1px;
  height: 2px;
}
@media (min-width: 768px) {
  .moduletable_menu li a:after {
    height: 3px;
  }
}
@media (min-width: 992px) {
  .moduletable_menu li a:after {
    height: 3px;
  }
}
@media (min-width: 1600px) {
  .moduletable_menu li a:after {
    height: 4px;
  }
}
#_mobile_menu {
  flex-wrap: wrap;
  display: flex;
  height: calc(100vh - 75px);
  font-size: 17px;
  text-align: left;
  position: fixed;
  width: 100%;
  align-content: flex-start;
  z-index: 990;
  background: #fff;
  overflow: auto;
  top: 79px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
}
#_mobile_menu a {
  text-decoration: none;
  color: #000;
  display: block;
}
#_mobile_menu #_mobile_menu_items {
  width: 100%;
  text-align: center;
}
#_mobile_menu.active {
  opacity: 1;
  visibility: visible;
}
#_mobile_menu .nav {
  list-style: none;
  margin: 30px 0 0;
}
#_mobile_menu .nav li a {
  font-size: 22px;
  font-weight: 700;
  padding: 20px 0;
}

#phoneHeader {
  display: block;
  text-align: right;
}
@media (max-width: 991px) {
  #phoneHeader {
    text-align: center;
    margin-top: 5px;
  }
}
#phoneHeader i {
  font-size: 22px;
}

.language-block {
  position: relative;
}

#langSwitcher {
  list-style: none;
  margin: 0;
  text-align: left;
}
#langSwitcher li {
  margin: 0;
  padding-left: 9px;
}

#_desktop_languages #langSwitcher {
  left: 0;
  position: absolute;
  right: 0;
  top: 30px;
  visibility: hidden;
  z-index: 2;
  background: white;
  padding-bottom: 6px;
  opacity: 0;
  transition: 0.4s all;
}
#_desktop_languages #langSwitcher .lang-active {
  display: none;
}
#_desktop_languages.active #langSwitcher {
  visibility: visible;
  opacity: 1;
}
#_desktop_languages #activeLang a {
  text-align: left;
  padding-left: 9px;
}

#activeLang {
  text-align: center;
}

#_mobile_languages {
  width: 100%;
  margin-top: 20px;
}
#_mobile_languages #langSwitcher {
  width: 100%;
  text-align: center;
}
#_mobile_languages li {
  display: inline-block;
  margin: 0 20px;
}
#_mobile_languages li a {
  padding: 15px;
}

/* Breadcrumb
–––––––––––––––––––––––––––––––––––––––––––––––––– */
div[aria-label=breadcrumbs] .divider {
  font-size: 7px;
  display: inline-block;
  position: relative;
  top: -1px;
}
@media (max-width: 575px) {
  div[aria-label=breadcrumbs] .divider {
    margin-left: 4px;
  }
}
div[aria-label=breadcrumbs] ul {
  list-style: none;
  margin: 16px 0 50px;
}
@media (max-width: 575px) {
  div[aria-label=breadcrumbs] ul {
    margin: 8px 0;
  }
}
div[aria-label=breadcrumbs] ul li {
  display: inline-block;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 575px) {
  div[aria-label=breadcrumbs] ul li {
    font-size: 11px;
  }
}
div[aria-label=breadcrumbs] ul li a {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.03em;
}
@media (max-width: 575px) {
  div[aria-label=breadcrumbs] ul li a {
    letter-spacing: 0.06em;
  }
}
div[aria-label=breadcrumbs] ul li span {
  text-transform: lowercase;
}

#backBtn {
  top: 24px;
  position: absolute;
  font-size: 24px;
  left: 30px;
}
@media (max-width: 575px) {
  #backBtn {
    left: 10px;
    font-size: 18px;
  }
}

.view-contact #backBtn {
  top: 52px;
}
@media (min-width: 768px) {
  .view-contact #backBtn {
    top: 107px;
  }
}
@media (max-width: 575px) {
  .view-contact {
    top: 24px;
  }
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  margin-top: 19.2rem;
}
footer #footer-right {
  justify-content: flex-end;
}
footer #footer-left {
  align-items: flex-end;
}
footer #footer-left img {
  display: block;
  line-height: 1;
}
footer section {
  width: 50%;
  display: flex;
}
@media (max-width: 991px) {
  footer section {
    width: 100%;
  }
}
footer #footer-logo {
  justify-self: center;
  align-self: center;
  width: 185px;
  height: auto;
  margin-right: 2rem;
}
@media (max-width: 575px) {
  footer #footer-logo {
    width: 130px;
  }
}
footer #footer-copyright {
  margin: 0;
}

.footer-right-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 2rem;
  max-width: 235px;
  width: 100%;
}
.footer-right-label:last-of-type {
  display: flex;
  align-self: flex-end;
  flex-direction: row;
}
.footer-right-label a {
  text-decoration: none;
}
.footer-right-label #footer-menu-btn {
  cursor: pointer;
  margin-bottom: 1.6rem;
}
.footer-right-label #footer-instagram-icon {
  position: relative;
  top: 2px;
}

@media (max-width: 991px) {
  footer {
    padding: 0 2rem 2rem 2rem;
    flex-direction: column-reverse;
    margin-top: 6.4rem;
  }
}
@media (max-width: 991px) {
  footer .footer-right-label:last-of-type {
    align-self: flex-start;
  }
}

@media (max-width: 991px) {
  #footer-right {
    padding-right: 0;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .footer-space {
    margin: 4rem 0;
  }
}

.full-image {
  overflow: hidden;
  position: relative;
}
.full-image h1 {
  color: #F0F0F0;
}
@media (max-width: 991px) {
  .full-image h1 {
    width: 100%;
    margin-bottom: 2rem;
    font-size: 3.6rem;
  }
}
.full-image .desc {
  position: absolute;
  bottom: 5vh;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 991px) {
  .full-image .desc {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .full-image .desc {
    bottom: 10vh;
  }
}
.full-image .desc a {
  color: #F0F0F0;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.full-image .desc a:after {
  content: "";
  display: inline-block;
  background-image: url("../../img/submit-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  position: relative;
  left: 0;
  transition: 0.4s left;
}
.full-image .desc a:hover:after {
  left: 5px;
}

.home .full-image {
  margin-top: -25.6rem;
  margin-left: -2rem;
  margin-right: -2rem;
  height: 100vh;
}
.home .full-image img {
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 991px) {
  .home .page-header {
    display: none;
  }
}
.home #realizations {
  margin-top: 10rem;
}

.item-page > div {
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .item-page > div > div {
    margin-bottom: 2rem;
  }
}
.item-page img, .item-page video {
  width: 100%;
  height: auto;
}

#realizations > div {
  margin-bottom: 4rem;
}
#realizations img {
  width: 100%;
  height: auto;
}
#realizations .title-realization {
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 150%;
  font-size: 2rem;
}
@media (max-width: 991px) {
  #realizations .title-realization {
    font-size: 1.6rem;
  }
}
#realizations a {
  text-decoration: none;
  display: block;
}

#realization_items {
  margin-top: 20rem;
}
#realization_items > div {
  margin-bottom: 4rem;
}

/* Transition pages
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.loader {
  margin: auto;
  display: table;
}

#wrapper,
.header-banner {
  opacity: 1;
  transition: 0.9s ease;
}

#wrapper.animCont,
.header-banner.animCont {
  opacity: 0;
}

.itemid-102 {
  background-color: var(--light-500);
}

.form-control-feedback {
  display: none !important;
}

.view-contact {
  background-color: var(--light-500);
}
.view-contact #jform_spacer-lbl, .view-contact .visually-hidden, .view-contact .field-spacer, .view-contact #jform_captcha-lbl {
  display: none;
}
.view-contact legend {
  display: none;
}
.view-contact .com-contact__container {
  margin-bottom: 4rem;
  max-width: 450px;
  width: 100%;
}

.control-group {
  margin-bottom: 2rem;
}

#text_article {
  max-width: 800px;
}
#text_article p {
  margin-bottom: 1rem;
}

.itemid-104 .item-page h2 {
  line-height: 1;
  margin: 0 0 25px 0;
}

.com-contact__address span, .com-contact__address p, .com-contact__address {
  font-size: 2rem;
  font-family: "Cera Pro";
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 992px) {
  .com-contact__address span, .com-contact__address p, .com-contact__address {
    font-size: 3.2rem;
  }
}

.btn-prev,
.btn-next {
  background: none;
}
@media (max-width: 575px) {
  .btn-prev,
  .btn-next {
    margin-right: 0 !important;
  }
}
.btn-prev:after,
.btn-next:after {
  position: absolute;
}

.btn-next {
  padding-right: 31px;
  text-align: right;
}
.btn-next:after {
  right: 0;
}

.btn-prev {
  margin-right: 25px;
  padding-left: 31px;
}
.btn-prev:after {
  transform: rotate(180deg);
  left: 0;
  margin: 0;
}
.btn-prev:hover:after {
  margin: 0 !important;
}

.cookie-notification {
  background: #F0F0F0;
  position: fixed;
  bottom: 12px;
  border: 1px solid #E6E3E3;
  border-radius: 0;
  right: 32px;
  transition: all 0.8s ease;
  font-size: 12px;
  z-index: 99;
  display: none;
}
@media (max-width: 575px) {
  .cookie-notification {
    left: 20px;
    right: 20px;
  }
}
.cookie-notification.active {
  bottom: 20px;
  display: block;
}
.cookie-notification .cookie-notfication__wrapper {
  padding: 20px;
  text-align: left;
  max-width: 388px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .cookie-notification .cookie-notfication__wrapper {
    max-width: 100%;
  }
}
.cookie-notification .cookie__buttons {
  display: flex;
}
.cookie-notification .cookie__content {
  color: black;
  margin-bottom: 20px;
}
.cookie-notification .btn {
  margin-right: 5px;
  padding: 10px 20px;
  font-size: 14px;
  background: black;
  color: #F0F0F0;
  border-radius: 0;
}
.cookie-notification .btn:after {
  display: none;
}
@media (max-width: 575px) {
  .cookie-notification .ghost {
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .contact-form {
    margin: 0 0 0 20%;
    width: 40%;
  }
}
.contact-form .btn-primary {
  background: #000;
  color: white;
  padding: 2px 10px 7px;
}
.contact-form .btn-primary:after {
  filter: invert(1);
  margin: 0 0 0 5px;
  position: relative;
  left: 0;
  transition: 0.4s all;
}
.contact-form .btn-primary:hover:after {
  left: 5px;
}/*# sourceMappingURL=template.css.map */