*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

@font-face {
  font-family: "Hero New";
  src: url("/static/fonts/Hero New/Hero New Thin.otf") format("opentype");
  font-style: normal;
  font-weight: 100;
}

@font-face {
  font-family: "Hero New";
  src: url("/static/fonts/Hero New/Hero New UltraLight.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Hero New";
  src: url("/static/fonts/Hero New/Hero New Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Hero New";
  src: url("/static/fonts/Hero New/Hero New Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Hero New";
  src: url("/static/fonts/Hero New/Hero New Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Hero New";
  src: url("/static/fonts/Hero New/Hero New Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Hero New";
  src: url("/static/fonts/Hero New/Hero New ExtraBold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Altissimo";
  src: url("/static/fonts/Altissimo/Altissimo Thin.otf") format("opentype");
  font-style: normal;
  font-weight: 100;
}

@font-face {
  font-family: "Altissimo";
  src: url("/static/fonts/Altissimo/Altissimo ExtraLight.otf")
    format("opentype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Altissimo";
  src: url("/static/fonts/Altissimo/Altissimo Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Altissimo";
  src: url("/static/fonts/Altissimo/Altissimo.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Altissimo";
  src: url("/static/fonts/Altissimo/Altissimo Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Altissimo";
  src: url("/static/fonts/Altissimo/Altissimo Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Altissimo";
  src: url("/static/fonts/Altissimo/Altissimo ExtraBold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex__column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex__row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex__align--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex__align--start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex__align--end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex__justify--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex__justify--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex__justify--evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.flex__justify--between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.primary-button {
  background-color: #ba2229;
  padding: 1.7rem 1.4rem;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "Altissimo";
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.4rem;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.primary-button svg {
  margin-left: 1rem;
}

.primary-input {
  background-color: #ba2229;
  padding: 1.6rem;
  color: #1a1919;
  font-size: 1.4rem;
  font-family: "Altissimo";
  display: inline-block;
  border-radius: 0.4rem;
  border: 0.1rem solid #1a1919;
  background-color: #fdfdfd;
  letter-spacing: 0.08em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
.primary-input:-ms-input-placeholder {
  color: #1a1919;
  opacity: 1;
}
.primary-input::-ms-input-placeholder {
  color: #1a1919;
  opacity: 1;
}
.primary-input::placeholder,
.primary-input:-ms-input-placeholder,
.primary-input::-ms-input-placeholder {
  color: #1a1919;
  opacity: 1;
}
.primary-input svg {
  margin-left: 1rem;
}

.footer {
  /*background-color: rgba(234, 234, 234, 0.3);
  -webkit-box-shadow: inset 0px 1px 0px rgba(158, 158, 158, 0.3);
  box-shadow: inset 0px 1px 0px rgba(158, 158, 158, 0.3);
  padding-top: 10.4rem;
  padding-bottom: 5.6rem;*/
  background: #1a1919;
  padding-bottom: 81px;
  position: relative;
}

.footer .year-experience {
  position: absolute;
  top: 0;
  max-width: 404px;
  top: -85px;
  left: 8.5%;
}

.template-homepage .footer .year-experience {
  display: none;
}

.footer .year-experience h2 {
  font-family: "Altissimo";
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: 80px;
  color: #1a1919;
}

.footer .year-experience h2 span {
  color: #ba2229;
}

.footer .year-experience h2 span.white {
  color: #fff;
  display: block;
}

.footer .grid-wrapper {
  position: relative;
  width: 100%;
  display: block;
  /*margin-bottom: 96px;*/
}

.footer .container {
  width: 100%;
  max-width: none;
}

.footer__content {
  position: relative;
  max-width: 1575px;
  margin: 0 auto;
  width: 90%;
  padding-top: 105px;
}

.footer__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 74px;
}
.footer__logo {
  display: inline-block;
}
.footer__logo__img {
  display: block;
  width: 100%;
  max-width: 300px;
}
.footer__navigation-wrapper {
  display: grid;
  grid-template-columns: 16% 16% 16% 16% 16% 16%;
  grid-gap: 96px 0.8%;
  /*grid-template-columns: 14.92% 14.92% 14.92% 14.92% 14.92% 14.92%;
  grid-gap: 0 2.1%;*/
}

.footer .grid-wrapper .footer__navigation:last-child {
  display: flex;
  grid-column: 1 / 7;
  padding-bottom: 40px;
  position: relative;
  margin-bottom: 40px;
  box-shadow: inset 0px -1px 0px rgb(255 255 255 / 10%);
}

.footer
  .grid-wrapper
  .footer__navigation:last-child
  .footer__navigation__title {
  font-family: "Altissimo";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  margin-right: 8px;
  min-width: 130px;
  margin-bottom: 0;
}

.footer .grid-wrapper .footer__navigation:last-child .footer__navigation__link {
  text-decoration: inherit;
  font-family: "Hero New";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #eaeaea;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*.footer__navigation {
  grid-column: span 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "Altissimo";
  margin-left: 6.3rem;
}*/

.footer__navigation:first-child {
  margin-left: 0;
}

.footer__navigation__title {
  font-family: "Altissimo";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 32px;
  color: #ffffff;
}

.footer__navigation__item:not(:last-child) {
  margin-bottom: 20px;
}
.footer__navigation__link {
  text-decoration: inherit;
  font-family: "Hero New";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #eaeaea;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__navigation__link:hover {
  color: #ba2229;
}

.footer__details {
  display: block;
  position: relative;
}
.footer__details__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0px 0px 40px;
  box-shadow: inset 0px -1px 0px rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.details-title {
  font-family: "Altissimo";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  margin-right: 8px;
  min-width: 130px;
}

.footer__social-wrapper {
  display: flex;
  padding: 0px 0px 40px;
  box-shadow: inset 0px -1px 0px rgb(255 255 255 / 10%);
  margin-bottom: 72px;
}

.footer__details__link {
  text-decoration: inherit;
  font-family: "Hero New";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #eaeaea;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__details__link:hover {
  color: #ba2229;
}

.footer__details__item {
  margin-right: 56px;
}

.footer__details__item:last-child {
  margin-right: 0;
}

.footer__copyright {
  font-family: "Altissimo";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #ffffff;
}
.footer__social-wrapper > div > ul > li > a > svg {
  color: #ffffff;
}

.social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social__item:not(:last-child) {
  margin-right: 6.1rem;
}

.social__link {
  display: flex;
  text-decoration: none;
}

.social__link span {
  font-family: "Hero New";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #eaeaea;
  margin-left: 12px;
}

.social__icon {
  display: block;
  fill: currentColor;
  width: 2.4rem;
  height: 2.4rem;
}

.accordion {
  color: #2d2c2c;
  font-family: "hero-new";
  font-size: 1.6rem;
}
.accordion__toggle {
  cursor: pointer;
  color: #2d2c2c;
  font-size: 1.6rem;
  padding-bottom: 2rem;
  margin: 2rem 0 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  border-bottom: 0.1rem solid transparent;
}
.accordion__toggle__icon {
  color: #2d2c2c;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion__content-wrapper {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion__content-wrapper__content {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.accordion--active .accordion__content-wrapper__content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.accordion--active .accordion__toggle {
  border-bottom-color: #eaeaea;
}
.accordion--active .accordion__toggle__icon {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: transparent;
}

.white-bar-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.active--submenu .white-bar-menu {
  opacity: 1;
}

/*.navbar.active--submenu {
  background-color: #fff;
}*/

/*@supports (
  (-webkit-backdrop-filter: blur(0.8rem)) or (backdrop-filter: blur(0.8rem))
) {
  
}*/

.navbar--scrolled {
  background-color: #fff;
  box-shadow: 0 -10px 32px 0 rgb(0 0 0 / 10%);
}

.navbar--scrolled .navbar__navigation__item--active,
.navbar--scrolled .navbar__navigation__item:hover {
  color: #ba2229;
}

.navbar--scrolled .navbar__navigation__item--active::after,
.navbar--scrolled .navbar__navigation__item:hover::after {
  background-color: #ba2229;
}
.navbar--scrolled .navbar__logo-box {
  width: auto;
}

.navbar--scrolled .navbar__logo-box .navbar__logo {
  max-width: 200px;
  height: 36px;
}

.navbar--scrolled .navbar__social-wrapper {
  opacity: 0;
  -webkit-transform: translateY(-2rem);
  transform: translateY(-2rem);
}
.navbar__logo-box {
  /*margin: 2rem 3.2rem 1.9rem 0rem;*/
  padding: 23px 0;
  display: block;
  width: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar__logo-box-mobile {
  display: none;
}
.navbar__logo {
  width: 100%;
  /*min-width: 6rem;*/
  max-width: 279px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 50px;
}
.navbar__logo-container {
  position: relative;
  width: 100%;
  background: transparent;
  box-shadow: inset 0px -1px 0px rgba(255, 255, 255, 0.2);
  max-width: 1579px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.white-bg .navbar__logo-container {
  box-shadow: none;
}

/*.navbar--scrolled .navbar__logo-container {
  background: #fff;
}*/

.navbar__reserved-area {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
}

.navbar__reserved-area .reserved-area {
  font-family: "Altissimo";
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #9e9e9e;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar__reserved-area .register {
  font-family: "Altissimo";
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar__reserved-area .register:hover {
  color: #ba2229;
}

.navbar--scrolled .navbar__reserved-area .register,
.active--submenu .navbar__reserved-area .register,
.white-bg .navbar__reserved-area .register {
  color: #1a1919;
}

.navbar--scrolled .navbar__reserved-area .register:hover,
.active--submenu .navbar__reserved-area .register:hover,
.white-bg .navbar__reserved-area .register:hover {
  color: #ba2229;
}

.navbar--scrolled .navbar__reserved-area .login,
.active--submenu .navbar__reserved-area .login,
.white-bg .navbar__reserved-area .login {
  background: #1a1919;
  color: #fff;
}

.navbar--scrolled .navbar__reserved-area .login:hover,
.active--submenu .navbar__reserved-area .login:hover {
  background: #ba2229;
}

.template-carrers .navbar__reserved-area .login:hover {
  background: #fff;
  color: #1a1919;
}

.template-carrers .navbar__reserved-area .register:hover {
  color: #ffffff;
}

.template-carrers .navbar--scrolled .navbar__reserved-area .register:hover,
.template-carrers .active--submenu .navbar__reserved-area .register:hover {
  color: #ba2229;
}

.template-carrers .navbar--scrolled .navbar__reserved-area .login:hover,
.template-carrers .active--submenu .navbar__reserved-area .login:hover {
  background: #ba2229;
  color: #fff;
}

.navbar--scrolled .language-selector__selected,
.active--submenu .language-selector__selected {
  border-color: #1a1919;
}

.navbar--scrolled .language-selector__text,
.active--submenu .language-selector__text {
  color: #1a1919;
}

.navbar--scrolled .navbar__shortcut svg,
.active--submenu .navbar__shortcut svg {
  fill: #1a1919;
}

.navbar__reserved-area .login {
  font-family: "Altissimo";
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #1a1919;
  padding: 12px 36px;
  background: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar__reserved-area .login:hover {
  background: #ba2229;
  color: #fff;
}

.navbar__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 1579px;
  margin: 0 auto;
  width: 90%;
  align-items: center;
}

.active--submenu .navbar__logo-container,
.navbar--scrolled .navbar__logo-container {
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.1),
    inset 0px 2px 0px rgba(0, 0, 0, 0.1);
}

.navbar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar__shortcuts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.4rem;
  margin-right: 8.5vw;
  display: none;
}
.navbar__shortcut {
  position: relative;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.navbar__shortcut:not(:last-child) {
  margin-right: 5rem;
}
.navbar__shortcut__text {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 0.8rem;
}
.navbar__shortcut__icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  fill: currentColor;
}
.navbar__shortcut__hamburguer {
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.navbar__shortcut__hamburguer,
.navbar__shortcut__hamburguer::before,
.navbar__shortcut__hamburguer::after {
  display: inline-block;
  width: 1.75rem;
  height: 0.2rem;
  border-radius: 2rem;
  background: currentColor;
}
.navbar__shortcut__hamburguer::before,
.navbar__shortcut__hamburguer::after {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.navbar__shortcut__hamburguer::before {
  top: -0.7rem;
}
.navbar__shortcut__hamburguer::after {
  bottom: -0.7rem;
}
.navbar__shortcut:hover .navbar__shortcut__hamburguer::before,
.navbar__shortcut:focus .navbar__shortcut__hamburguer::before,
.navbar__shortcut:active .navbar__shortcut__hamburguer::before {
  top: -1rem;
}
.navbar__shortcut:hover .navbar__shortcut__hamburguer::after,
.navbar__shortcut:focus .navbar__shortcut__hamburguer::after,
.navbar__shortcut:active .navbar__shortcut__hamburguer::after {
  bottom: -1rem;
}
.navbar__language-wrapper {
  min-width: 7.2rem;
}
.navbar__search-icon {
  display: flex;
  margin-left: auto;
  margin-right: 26px;
}
.navbar__navigation {
  font-family: "Altissimo";
}
.navbar__navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar__navigation__item {
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /*padding-bottom: 24px;
  padding-top: 24px;*/
}
.navbar__navigation__item:not(:last-child) {
  margin-right: 64px;
}
/*.navbar__navigation__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  margin-top: 2.2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}*/
.navbar__navigation__item--active {
  font-weight: 700;
}
.navbar__navigation__item--active::after,
.navbar__navigation__item--dropdown-active::after,
.navbar__navigation__item:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.navbar__navigation__link {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 32px 0;
  display: block;
}

.navbar__navigation__item--active .navbar__navigation__link,
.navbar__navigation__link:hover,
.navbar--scrolled .navbar__navigation__item--active .navbar__navigation__link,
.navbar--scrolled .navbar__navigation__link:hover,
.active--submenu .navbar__navigation__item--active .navbar__navigation__link,
.active--submenu .navbar__navigation__link:hover,
.white-bg .navbar__navigation__link:hover,
.white-bg .navbar__navigation__item--active .navbar__navigation__link {
  color: #ba2229;
}

.template-carrers .navbar__navigation__item--active .navbar__navigation__link {
  color: #ffff;
}

.template-carrers
  .navbar--scrolled
  .navbar__navigation__item--active
  .navbar__navigation__link,
.template-carrers
  .active--submenu
  .navbar__navigation__item--active
  .navbar__navigation__link {
  color: #ba2229;
}

.template-carrers .navbar--scrolled .navbar__navigation__link,
.template-carrers .active--submenu .navbar__navigation__link {
  color: #1a1919;
}

.navbar--scrolled .navbar__navigation__link,
.active--submenu .navbar__navigation__link,
.white-bg .navbar__navigation__link {
  color: #1a1919;
}

.navbar__navigation__dropdown-wrapper {
  /* position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-color: #ffffff;
  overflow: hidden;
  height: 0;*/
  position: fixed;
  left: 0;
  width: 100%;
  top: 176px;
  /*display: none;*/
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar--scrolled .navbar__navigation__dropdown-wrapper {
  top: 161px;
}

/*.navbar__navigation__dropdown-wrapper--hidden {
  -webkit-transition: none;
  transition: none;
}*/
.navbar__navigation__dropdown-wrapper__dropdown {
  display: flex;
  /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
  padding: 40px 0 40px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 1579px;
  margin: 0 auto;
  width: 90%;
  align-items: center;
}

.navbar__navigation__dropdown-wrapper__dropdown .menu--intro {
  position: relative;
  display: block;
  width: 23.8%;
  margin-right: 10%;
}

.navbar__navigation__dropdown-wrapper__dropdown .menu--intro h3 {
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: "Altissimo";
}

.navbar__navigation__dropdown-wrapper__dropdown .menu--intro p {
  font-family: "Hero New";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1a1919;
}

.grid--menus-itens {
  width: auto;
  display: grid;
  grid-gap: 20px 24px;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
}

.active--submenu .navbar__navigation__dropdown-wrapper__dropdown {
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.1),
    inset 0px 1px 0px rgba(0, 0, 0, 0.1);
  max-width: 1579px;
  margin: 0 auto;
  width: 90%;
}

.navbar__navigation__dropdown-wrapper__dropdown__item {
  font-family: "Hero New";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #1a1919;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 300px;
}
.navbar__navigation__dropdown-wrapper__dropdown__item--active,
.navbar__navigation__dropdown-wrapper__dropdown__item:hover {
  color: #ba2229;
}
.navbar__social-wrapper {
  display: inline-block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar__social-wrapper > div > ul > li > a > svg {
  color: #ffffff;
}

body.white-bg .navbar:not(.navbar--scrolled) {
  color: #2d2c2c;
}
body.white-bg .navbar:not(.navbar--scrolled) svg,
body.white-bg .navbar:not(.navbar--scrolled) p,
body.white-bg .navbar:not(.navbar--scrolled) span {
  color: #2d2c2c;
}
body.white-bg .navbar:not(.navbar--scrolled) .navbar__navigation__item::after {
  background-color: #2d2c2c;
}
body.white-bg .navbar:not(.navbar--scrolled) .language-selector__selected {
  border-color: #2d2c2c;
}
body.white-bg .navbar:not(.navbar--scrolled) .navbar__logo-box img,
.navbar--scrolled .navbar__logo-box img,
.active--submenu .navbar__logo-box img {
  content: url("/static/svg/vini-portugal-logo.svg");
}

body.white-bg .navbar .navbar__navigation__item {
  -webkit-transition-duration: 50ms;
  transition-duration: 50ms;
}

.menu {
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5000;
  background: #ba2229;
  width: 100%;
  height: 100%;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu--active {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.menu__content-wrapper {
  height: auto;
  min-height: 100%;
  display: grid !important;
}
.menu__content {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  align-self: center;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu__logo-box {
  display: inline-block;
  text-decoration: none;
  grid-column: 1 / span 2;
  align-self: center;
  justify-self: flex-end;
}
.menu__top .menu__logo-box {
  display: none;
  justify-self: start;
}
.menu__top .menu__logo-box .menu__logo {
  max-height: 8rem;
}
.menu__logo {
  display: block;
}
.menu__navigation {
  margin: 3.2rem 0;
  grid-column: 4 / -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu__list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-row-gap: clamp(4rem, 6.6666vh, 7.2rem);
  grid-column-gap: clamp(6.4rem, 6.6666vh, 7.2rem);
}
.menu__list--inner {
  display: grid;
  grid-row-gap: clamp(1.6rem, 2.222vh, 2.4rem);
  grid-template-columns: 1fr;
  justify-items: start;
}
.menu__list--mobile {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 1.6rem;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  row-gap: 4rem;
}
.menu__list--mobile .accordion__toggle {
  margin: 0;
  padding: 0;
  border: none;
  margin-left: 2.4rem;
}
.menu__list--mobile .accordion__toggle__icon {
  color: #ffffff;
}
.menu__list--mobile .menu__link {
  margin-bottom: 0;
}
.menu__item,
.menu__item.menu__item--accordion {
  font-size: clamp(1.6rem, 2.222vh, 2.4rem);
  font-weight: 500;
  color: #ffffff;
  font-family: "Altissimo";
}
.menu__item--inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-1.1rem);
  transform: translateX(-1.1rem);
  font-size: clamp(1.2rem, 1.48vh, 1.6rem);
  font-weight: 400;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu__item--inner::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  margin-right: 0.5rem;
  border-radius: 2rem;
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.menu__item--inner:hover {
  text-decoration: underline;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu__item--inner:hover::before {
  opacity: 1;
}
.menu__link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 1.4rem;
  margin-bottom: 1.6rem;
  border-bottom: 0.1rem solid #ffffff;
}
.menu__link {
  text-decoration: none;
  color: inherit;
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin-bottom: 2.8rem;
  display: block;
}
.menu__item--inner .menu__link {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 0;
}
.menu__bottom {
  grid-column: 1 / -1;
  grid-row: 4;
  align-self: end;
  justify-self: end;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: clamp(3.2rem, 5.185vh, 5.6rem);
  color: #ffffff;
}
.menu__bottom__navigation {
  margin-right: 10rem;
  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;
}
.menu__bottom__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu__bottom__item {
  font-size: 1.4rem;
}
.menu__bottom__item:not(:last-child) {
  margin-right: 2.4rem;
}
.menu__bottom__link {
  color: inherit;
  text-decoration: none;
}
.menu__social-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu__social-wrapper > div > ul > li > a > svg {
  color: #ffffff;
}
.menu__top {
  width: 100%;
  align-self: start;
  /*position: sticky;*/
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  top: 0;
  z-index: 1;
  background-color: #ba2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1.6rem;
  padding-top: 7.6rem;
}
.menu__top--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu__close {
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.menu__close__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: clamp(2.4rem, 3.7vh, 4rem);
  height: clamp(2.4rem, 3.7vh, 4rem);
}
.menu__close__icon::before,
.menu__close__icon::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: clamp(2.4rem, 3.7vh, 4rem);
  position: absolute;
  background-color: #ffffff;
  border-radius: 0.02rem;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.menu__close__icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu__close__icon::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu__close:hover .menu__close__icon::before,
.menu__close:active .menu__close__icon::before,
.menu__close:focus .menu__close__icon::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu__close:hover .menu__close__icon::after,
.menu__close:active .menu__close__icon::after,
.menu__close:focus .menu__close__icon::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu__lettering-background {
  position: absolute;
  left: -2.5rem;
  bottom: clamp(4rem, 6.48vh, -7rem);
  font-family: "Altissimo";
  font-weight: 800;
  font-size: clamp(16rem, 22.222vh, 24rem);
  line-height: clamp(20.26rem, 28.148vh, 30.4rem);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.1);
  -webkit-text-stroke: 1px #f0c3c5;
  opacity: 0.4;
}
.menu__language-wrapper {
  margin-right: 6.4rem;
}

.search-wrapper {
  font-family: "hero-new";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(26, 25, 25, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 4000;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}
.search-wrapper--active {
  opacity: 1;
}
.search-wrapper__close {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-block;
  position: absolute;
  right: 17.8rem;
  top: 7.7rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.search-wrapper__close:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.search-wrapper__close:before,
.search-wrapper__close:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: #ffffff;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.search-wrapper__close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.search-wrapper__close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search-wrapper__content {
  width: 70%;
  max-width: 63.8rem;
  padding: 2.4rem 1.6rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.search-wrapper__content__input-wrapper {
  cursor: text;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #ffffff;
}
.search-wrapper__content__input-wrapper__input {
  font-size: 2.4rem;
  color: #ffffff;
  background: none;
  outline: none;
  border: none;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: 2.4rem;
  width: 1rem;
}
.search-wrapper__content__input-wrapper__input::-webkit-input-placeholder {
  color: #ffffff;
}
.search-wrapper__content__input-wrapper__input::-moz-placeholder {
  color: #ffffff;
}
.search-wrapper__content__input-wrapper__input:-ms-input-placeholder {
  color: #ffffff;
}
.search-wrapper__content__input-wrapper__input::-ms-input-placeholder {
  color: #ffffff;
}
.search-wrapper__content__input-wrapper__input::placeholder {
  color: #ffffff;
}
.search-wrapper__content__input-wrapper__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 3rem;
  flex: 0 0 3rem;
  height: 3rem;
  width: 3rem;
  fill: #ffffff;
  cursor: pointer;
}
.search-wrapper__content__instructions {
  font-size: 1.4rem;
  color: #9e9e9e;
  margin-top: 1.6rem;
}

.search-enabled {
  overflow: hidden;
}

@-webkit-keyframes growDown {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  80% {
    -webkit-transform: scaleY(1.1);
    transform: scaleY(1.1);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes growDown {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  80% {
    -webkit-transform: scaleY(1.1);
    transform: scaleY(1.1);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.language-selector {
  position: relative;
  cursor: pointer;
}
.language-selector__text {
  font-family: "Altissimo";
  font-size: 1.2rem;
  font-weight: 700;
  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;
  margin-left: 0.8rem;
  color: #ffffff;
  line-height: 1em;
}
.language-selector__text__icon {
  display: inline-block;
  width: 2.4rem;
  height: 1.6rem;
  margin-right: 0.8rem;
}
.language-selector__text--dropdown {
  color: #1a1919;
}
.language-selector__selected {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 17px;
  border: 1px solid #ffffff;
  border-radius: 32px;
}

.language-selector__selected img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.language-selector__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-perspective: 100rem;
  perspective: 100rem;
  z-index: 10;
  -webkit-animation: growDown 300ms ease-in-out forwards;
  animation: growDown 300ms ease-in-out forwards;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  display: none;
}
.language-selector__dropdown__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 1.2rem 0;
}
.language-selector:hover .language-selector__dropdown,
.language-selector:focus-within .language-selector__dropdown {
  display: block;
}

.cookies {
  position: fixed;
  bottom: clamp(2.4rem, 4.44vh, 4.8rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 104rem;
  padding: 1.6rem 3.2rem 1.6rem 4rem;
  margin: 0 auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 14rem;
  display: none;
}
.cookies--hide {
  display: none;
}
.cookies__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cookies__img {
  display: block;
  width: 4rem;
  height: 4rem;
  margin-right: 2.4rem;
}
.cookies__description {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-right: 2.4rem;
}
.cookies__description b {
  font-family: "hero-new";
  font-weight: 700;
  color: #ba2229;
}
.cookies__description span {
  font-weight: 600;
}
.cookies__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cookies__button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "hero-new";
  color: #9e9e9e;
  text-decoration: inherit;
  background-color: transparent;
  border: 1px solid #9e9e9e;
  border-radius: 16rem;
  width: 10.3rem;
  height: 4rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 0.8rem;
}
.cookies__button:hover {
  color: #ffffff;
  background-color: #9e9e9e;
}
.cookies__button--fill {
  background-color: #ba2229;
  color: #ffffff;
  border: none;
  margin: 0;
  border-top-right-radius: 16rem;
  border-bottom-right-radius: 16rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cookies__button--fill:hover {
  background-color: #8e181d;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "hero-new";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1a1919;
}

body,
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  /*overflow-x: hidden;*/
}

.grid-wrapper {
  max-width: 157.6rem;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -webkit-column-gap: 3.2rem;
  -moz-column-gap: 3.2rem;
  column-gap: 3.2rem;
  margin: 0 auto;
}

.container {
  max-width: 157.6rem;
  width: 90%;
  display: block;
  margin: 0 auto;
}

.error {
  color: #000;
}
.error__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  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;
  padding: 0 2.4rem;
}
.error__title {
  font-family: "Altissimo";
  font-size: clamp(8rem, 6.25vh, 12rem);
  line-height: clamp(8rem, 6.25vh, 12rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.error__description {
  font-size: 2.4rem;
  line-height: 3.2rem;
  max-width: 50rem;
  text-align: center;
  margin-bottom: 4rem;
}
.error__button {
  display: inline-block;
  text-decoration: initial;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-family: "Altissimo";
  background-color: #ba2229;
  padding: 1.7rem 3.2rem;
}
.error__button:hover {
  background-color: #8e181d;
}
.error__img-box {
  display: block;
  width: 100vw;
  height: 100vh;
  position: relative;
}
.error__img-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(186, 34, 41, 0) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
}
.error__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(26, 25, 25, 0.8);
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
  padding: 30px;
}

.popup .clicable-area {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  cursor: pointer;
}

.popup .popup-inner {
  position: relative;
  background: #ba2229;
  margin: 0 auto;
  width: 100%;
  padding: 80px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: none;
  opacity: 1;
  z-index: 10;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  overflow: auto;
}

.popup.hide .popup-inner {
  transform: translateY(50px);
  opacity: 0;
}

.popup .popup-inner .popup__image_header {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.popup .popup-inner .popup__image_header img {
  margin: 0 auto;
  max-width: 200px;
}

.popup .popup-inner .popup-content {
  position: relative;
  display: block;
  overflow: hidden;
  /*max-width: 695px;
  max-width: 870px;*/
  margin: 0 auto;
}

.popup .popup-inner .popup-content * {
  text-align: center;
}

.popup .popup-inner .popup-content * {
  color: #000;
  margin: 0 auto;
}

.popup .popup-inner.white-color .popup-content * {
  color: #fff;
}

.popup .popup-wrapper {
  position: relative;
  width: 80%;
  height: 80%;
}

.popup .close-popup {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -13px;
  right: -13px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: black;
  cursor: pointer;
  z-index: 11;
}

.popup .close-popup::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 0.2rem;
  background-color: #ffffff;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup .close-popup::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 0.2rem;
  background-color: #ffffff;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup .popup-inner .popup-content h2 {
  font-size: 40px;
  margin-bottom: 2%;
  line-height: 140%;
  font-weight: 600;
}

.popup .popup-inner .popup-content h3 {
  font-size: 30px;
  line-height: 1.1em;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}

.popup .popup-inner .popup-content h4 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 400;
}

.popup .popup-inner .popup-content hr {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.popup .popup-inner .popup-content p a:hover,
.popup .popup-inner .popup-content p a:hover * {
  color: #ba2229;
}

.popup .btn-holder {
  position: relative;
  text-align: center;
}

.popup .popup-inner .popup-content p {
  margin-bottom: 16px;
}

.popup .popup-inner .popup-content p:last-child {
  margin-bottom: 0;
}

.popup .popup-inner .popup-content p,
.popup .popup-inner .popup-content p * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup .go-back-to-site {
  position: relative;
  font-family: "Altissimo";
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #1a1919;
  padding: 12px 36px;
  background: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #1a1919;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  margin-top: 40px;
}

.popup .go-back-to-site:hover {
  background: #ba2229;
  color: #fff;
}

.popup .go-back-to-site a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
}

@media only screen and (max-width: 112.5em) and (max-width: 75em) {
  .navbar__shortcut:not(:last-child) {
    margin-right: 5rem;
  }
}
@media only screen and (max-width: 112.5em) and (max-width: 37.5em) {
  .navbar__shortcut:not(:last-child) {
    margin-right: 1.9rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .navbar__shortcut:not(:last-child) {
    margin-right: 2.4rem;
  }
  .navbar__navigation__item:not(:last-child) {
    margin-right: 4rem;
  }
}
@media only screen and (max-width: 1540px) {
  .navbar__shortcuts {
    margin-right: 3.4rem;
  }
  .navbar__navigation__item {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 1300px) {
  .navbar__navigation__item:not(:last-child) {
    margin-right: 2.3rem;
  }
}

@media only screen and (max-width: 1120px) {
  .navbar__content {
    display: none;
  }

  .navbar__content-wrapper {
    min-height: 80px;
  }

  .navbar__shortcuts {
    display: flex;
    margin-right: 19px;
  }

  .navbar--scrolled {
    background-color: #1a1919;
  }

  body.white-bg .navbar {
    background-color: #1a1919;
  }

  .white-bar-menu {
    background-color: #1a1919;
  }
  /*.active--submenu .navbar__logo-container,
  .navbar--scrolled .navbar__logo-container {
    background-color: #1a1919;
  }*/

  body.white-bg .navbar:not(.navbar--scrolled) .navbar__logo-box img,
  .navbar--scrolled .navbar__logo-box img,
  .active--submenu .navbar__logo-box img {
    content: "";
  }

  .navbar--scrolled .navbar__reserved-area .register,
  .active--submenu .navbar__reserved-area .register,
  .white-bg .navbar__reserved-area .register {
    color: #ffffff;
  }

  .navbar--scrolled .navbar__reserved-area .login,
  .active--submenu .navbar__reserved-area .login,
  .white-bg .navbar__reserved-area .login {
    color: #1a1919;
    background: #ffffff;
  }

  .navbar--scrolled .navbar__shortcut__hamburguer,
  .navbar--scrolled .navbar__shortcut__hamburguer::before,
  .navbar--scrolled .navbar__shortcut__hamburguer::after,
  .white-bg .navbar__shortcut__hamburguer,
  .white-bg .navbar__shortcut__hamburguer::before,
  .white-bg .navbar__shortcut__hamburguer::after {
    background: #ffffff;
  }

  .navbar--scrolled .navbar__shortcut__text,
  body.white-bg .navbar__shortcut__text {
    color: #fff;
  }

  body.white-bg .navbar:not(.navbar--scrolled) svg,
  body.white-bg .navbar:not(.navbar--scrolled) p,
  body.white-bg .navbar:not(.navbar--scrolled) span {
    color: #fff;
  }

  .navbar--scrolled .language-selector__selected,
  .active--submenu .language-selector__selected,
  .white-bg .language-selector__selected {
    border-color: #ffffff !important;
  }

  .navbar--scrolled .language-selector__text,
  .active--submenu .language-selector__text,
  .white-bg .language-selector__text {
    color: #fff;
  }

  .navbar--scrolled .navbar__shortcut svg,
  .active--submenu .navbar__shortcut svg,
  .white-bg .navbar__shortcut svg {
    fill: #ffffff;
  }
}

@media only screen and (max-width: 1000px) {
  .popup .popup-inner {
    padding: 30px;
    width: 100%;
  }

  .navbar__content {
    display: none;
  }

  .navbar__content-wrapper {
    min-height: 80px;
  }

  .navbar__shortcuts {
    display: flex;
    margin-right: 19px;
  }

  .navbar--scrolled {
    background-color: #1a1919;
  }

  body.white-bg .navbar {
    background-color: #1a1919;
  }

  .white-bar-menu {
    background-color: #1a1919;
  }
  /*.active--submenu .navbar__logo-container,
  .navbar--scrolled .navbar__logo-container {
    background-color: #1a1919;
  }*/

  body.white-bg .navbar:not(.navbar--scrolled) .navbar__logo-box img,
  .navbar--scrolled .navbar__logo-box img,
  .active--submenu .navbar__logo-box img {
    content: "";
  }

  .navbar--scrolled .navbar__reserved-area .register,
  .active--submenu .navbar__reserved-area .register,
  .white-bg .navbar__reserved-area .register {
    color: #ffffff;
  }

  .navbar--scrolled .navbar__reserved-area .login,
  .active--submenu .navbar__reserved-area .login,
  .white-bg .navbar__reserved-area .login {
    color: #1a1919;
    background: #ffffff;
  }

  .navbar--scrolled .navbar__shortcut__hamburguer,
  .navbar--scrolled .navbar__shortcut__hamburguer::before,
  .navbar--scrolled .navbar__shortcut__hamburguer::after,
  .white-bg .navbar__shortcut__hamburguer,
  .white-bg .navbar__shortcut__hamburguer::before,
  .white-bg .navbar__shortcut__hamburguer::after {
    background: #ffffff;
  }

  .navbar--scrolled .navbar__shortcut__text,
  body.white-bg .navbar__shortcut__text {
    color: #fff;
  }

  body.white-bg .navbar:not(.navbar--scrolled) svg,
  body.white-bg .navbar:not(.navbar--scrolled) p,
  body.white-bg .navbar:not(.navbar--scrolled) span {
    color: #fff;
  }

  .navbar--scrolled .language-selector__selected,
  .active--submenu .language-selector__selected,
  .white-bg .language-selector__selected {
    border-color: #ffffff !important;
  }

  .navbar--scrolled .language-selector__text,
  .active--submenu .language-selector__text,
  .white-bg .language-selector__text {
    color: #fff;
  }

  .navbar--scrolled .navbar__shortcut svg,
  .active--submenu .navbar__shortcut svg,
  .white-bg .navbar__shortcut svg {
    fill: #ffffff;
  }
}

@media only screen and (max-width: 768px) {
  .footer__logo-box {
    justify-content: center;
  }

  .popup .popup-inner .popup-content h2 {
    font-size: 36px;
  }

  .popup .popup-inner .popup-content h3 {
    font-size: 24px;
  }

  .popup .popup-inner .popup-content h4 {
    font-size: 18px;
  }

  .popup .popup-inner .close-popup {
    position: fixed;
    top: 10px;
    right: 10px;
  }

  .popup,
  .popup .popup-inner {
    padding: 10px;
  }
}

@media only screen and (max-width: 75em) {
  .footer .year-experience {
    left: 0;
    top: -40px;
  }

  .footer .year-experience h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
  }

  /*.footer {
    padding-top: 6rem;
  }*/

  .footer__content {
    padding-top: 60px;
  }

  .footer__content__menu-items {
    display: none !important;
  }
  .footer__logo-box {
    margin-bottom: 9.3rem;
  }
  .footer__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__details__list {
    margin: 2.4rem 0 4.4rem;
  }
  .footer__copyright {
    margin: 0;
  }
  .navbar .navbar__navigation__item--active,
  .navbar .navbar__navigation__item:hover {
    color: #ba2229;
  }
  .navbar .navbar__navigation__item--active::after,
  .navbar .navbar__navigation__item:hover::after {
    background-color: #ba2229;
  }

  .navbar .navbar__social-wrapper {
    opacity: 0;
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem);
  }
  .navbar__content {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .navbar__shortcuts {
    margin-bottom: 0;
  }
  .navbar__language-wrapper {
    margin-left: 0;
    margin-bottom: 0;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .menu__logo-box {
    grid-column: 1 / span 3;
  }
  .menu__navigation {
    grid-column: 5 / -1;
  }
  .menu__list {
    display: none;
  }
  .menu__list--inner {
    display: grid;
  }
  .menu__list--mobile {
    display: grid;
  }
  .menu__link {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .menu__bottom {
    padding: 0 !important;
    padding-bottom: 3.7rem !important;
  }
  .menu__top {
    padding-top: 4rem;
  }
  .menu__language-wrapper {
    margin-right: 3.7rem;
  }
  .search-wrapper__close {
    right: 10rem;
  }
  .cookies {
    max-width: initial;
    width: 90vw;
  }
  .cookies__description {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .grid-wrapper {
    width: 100%;
    padding: 0 8.2rem;
  }
  .menu__content-wrapper.grid-wrapper {
    padding: 0;
    width: 90%;
  }
  .container {
    width: 100%;
    padding: 0 8.2rem;
  }
}

@media only screen and (max-width: 700px) {
  .navbar__reserved-area .reserved-area {
    display: none;
  }
}

@media only screen and (max-width: 62.3em) {
  .menu__logo-box {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }
  .menu__navigation {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  .menu__bottom {
    padding-bottom: 5.2rem !important;
    justify-self: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu__bottom__navigation {
    margin-right: 0;
    margin-bottom: 3.6rem;
  }
  .menu__bottom__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu__bottom__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.6rem;
  }
  .search-wrapper__close {
    right: 7.7rem;
  }
  .search-wrapper__content {
    width: 100%;
    max-width: 53rem;
  }
  .cookies {
    border-radius: 0.8rem;
    padding: 1.6rem;
  }
  .cookies__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cookies__img {
    display: none;
  }
  .cookies__description {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
  .cookies__button {
    font-size: 1.2rem;
    width: 9rem;
    height: 3.6rem;
  }
  .grid-wrapper {
    padding: 0 6.4rem;
  }
  .menu__content-wrapper.grid-wrapper {
    padding: 0;
    width: 90%;
  }
  .container {
    padding: 0 6.4rem;
  }
  .error__title {
    font-size: 7.2rem;
    line-height: 7.2rem;
  }
  .error__description {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 3.2rem;
  }
  .error__button {
    padding: 1.2rem 2.4rem;
  }

  .footer .container {
    padding: 0;
  }
}

@media only screen and (max-width: 480px) {
  .footer__logo__img {
    max-width: 200px;
  }

  .footer__details__list {
    margin: 2.4rem 0 2.4rem;
  }

  .footer__details__list {
    padding-bottom: 24px;
  }

  .footer__social-wrapper {
    padding-bottom: 24px;
    margin-bottom: 48px;
    flex-direction: column;
  }

  .social__list {
    flex-direction: column;
  }

  .footer__social-wrapper .details-title {
    margin-bottom: 24px;
  }

  .social__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 24px;
  }

  .footer {
    padding-bottom: 56px;
  }

  .navbar .navbar__logo-box {
    display: none;
  }

  .navbar__content-wrapper {
    min-height: auto;
    padding-bottom: 26px;
  }

  .footer__logo-box {
    margin-bottom: 36px;
  }

  /*body.white-bg .navbar:not(.navbar--scrolled) .navbar__logo-box-mobile img,
  .navbar--scrolled .navbar__logo-box-mobile img {
    content: url("/static/svg/vini-portugal-logo.svg");
  }*/

  .navbar__search-icon {
    margin-right: 0;
  }

  .navbar__language-wrapper {
    display: none;
  }

  .navbar .navbar__logo-box-mobile {
    display: block;
    max-width: 190px;
  }

  .navbar .navbar__logo-box-mobile img {
    height: 34px;
  }

  .navbar__logo-container {
    padding: 20px 0;
    justify-content: end;
    box-shadow: none;
  }

  .navbar__logo-container .navbar__reserved-area {
    margin-left: auto;
  }

  .active--submenu .navbar__logo-container,
  .navbar--scrolled .navbar__logo-container {
    box-shadow: none;
  }
}

@media only screen and (max-width: 37.5em) {
  .footer__details__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
  .footer__details__item {
    margin: 1.6rem 0 0 !important;
  }
  .footer__copyright {
    text-align: center;
  }

  .navbar .navbar__logo-box {
    margin-right: 1.5rem;
  }
  .navbar__shortcuts {
    margin-right: 1.9rem;
  }
  .menu__content-wrapper {
    grid-template-columns: 1fr;
  }
  .menu__top .menu__logo-box {
    display: none;
  }
  .menu__top .menu__logo-box .menu__logo {
    max-width: 9rem;
  }
  .menu__list--mobile {
    grid-template-columns: 1fr;
    row-gap: 3.2rem;
  }
  .menu__bottom {
    padding-bottom: 8.3rem !important;
  }
  .menu__social-wrapper .social__icon {
    width: 3rem;
    height: 3rem;
  }
  .menu__language-wrapper {
    margin-right: 2.8rem;
  }
  .search-wrapper__close {
    top: 3.2rem;
    right: 3.2rem;
  }
  .cookies__description {
    font-size: 1.2rem;
    text-align: center;
  }
  .grid-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 2.4rem;*/
  }
  .container {
    padding: 0 2.4rem;
  }
  .error__title {
    font-size: 5.6rem;
    line-height: 5.6rem;
  }
  .error__description {
    margin-bottom: 2.4rem;
  }
}
