* {
  padding: 0;
  border: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --color-blue: #00249f;
  --color-dark-blue: #001358;
  --color-dark-grey: #333;
  --main-font: "Montserrat", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.item-page p {
  font-size: 18px;
}

body {
  font-family: var(--main-font);
}

/* Constants */
.container {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.page-intern {
  margin-top: 50px;
}

.page-intern h1 {
  margin: 20px 0;
}

.page-intern p {
  color: #666;
  font-weight: 500;
  font-size: 17px;
}

#video {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  overflow: hidden;
}

#video video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

header {
  width: 100%;
  height: 200px;
  background-color: var(--color-blue);
  position: relative;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .logo {
  width: 200px;
}

header .logo img {
  width: 100%;
}

header nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 5;
  padding-bottom: 15px;
}

header #country {
  position: relative;
  width: 185px;
  z-index: 10;
}

header #country .active-language {
  margin-bottom: 80px;
  padding: 10px 15px;
  background-color: var(--color-dark-blue);
  color: #fff;
  cursor: pointer;
  position: relative;
}

header #country .active-language .material-icons {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 17px;
}

header #country .active-language span {
  font-size: 12px;
}

header #country .dropdown {
  width: 100%;
  position: absolute;
  top: 35px;
  background-color: var(--color-dark-blue);
  display: none;
}

header #country .dropdown.active {
  display: block;
}

header #country .dropdown a {
  width: 100%;
  display: block;
  padding: 10px;
  color: #fff;
  font-size: 12px;
  transition: all 0.3s;
}

header #country .dropdown a img,
header #country .active-language span img {
  margin-right: 5px;
}

header #country .dropdown a:hover {
  background-color: #00249f;
}

header .menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .menu a {
  color: #fff;
  margin: 0 10px;
  font-weight: bold;
  font-size: 12px;
  padding-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

header .menu a:hover {
  border-color: #fff;
}

header .menu li.parent {
  position: relative;
}

header .menu li.parent > a::after {
  content: "keyboard_arrow_down";
  margin-left: 5px;
  font-family: "Material Icons";
  color: #fff;
  text-transform: initial;
}

header .menu li i {
  color: #fff;
}

header .menu li .nav-child {
  visibility: hidden;
  opacity: 0;
  width: 200px;
  position: absolute;
  top: 37px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: opacity 0.3s;
}

header .menu li.parent:hover .nav-child {
  visibility: visible;
  opacity: 1;
}

header .menu li .nav-child a {
  color: var(--color-dark-grey);
  padding: 10px 20px;
  text-align: left;
  display: block;
  border: 0;
}

.slider {
  width: 100%;
  height: 650px;
}

.slider .slider-content {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.slider .slider-content .slider-item {
  width: 100%;
  height: 650px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: var(--color-dark-grey);
  margin: 0 10px;
}

.owl-dots button.active {
  background-color: var(--color-blue);
}

.news {
  width: 100%;
  padding: 50px 0;
}

.news .news-content {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.news h2 {
  margin-bottom: 50px;
  color: var(--color-dark-grey);
}

.news .owl-item {
  height: 300px;
}

.news .news-content .item {
  width: 100%;
  height: 100%;
  background-color: #333;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin: 0 auto;
}

.news .owl-dots {
  display: none;
}

.news .owl-prev {
  left: -40px;
}

.news .owl-prev,
.news .owl-next {
  position: absolute;
  top: 50%;
  outline: none;
  transform: translateY(-50%);
  z-index: 10;
  background-color: transparent;
  color: var(--color-dark-grey);
}

.news .owl-prev span,
.news .owl-next span {
  font-size: 80px;
}

.news .owl-next {
  right: -40px;
}

footer {
  width: 100%;
  background-color: var(--color-blue);
  text-align: center;
  padding: 40px 0 0;
  position: relative;
  margin-top: 100px;
}

footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
}

footer p {
  color: #fff;
  margin: 5px 0;
}

.footerbar {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background-color: var(--color-dark-blue);
  margin-top: 40px;
}

.footerbar p {
  color: #fff;
  font-size: 14px;
}

footer .work-with-us-button {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

footer .work-with-us-button img {
  max-width: 400px;
  transition: all 0.3s;
}

footer .work-with-us-button img:hover {
  max-width: 420px;
}

.article-banner {
  width: 100%;
  height: 500px;
  display: block;
  background-position: center;
  background-size: cover;
}

#eprivacyModal {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.3s;
}

#eprivacyModal .modal-header {
  margin-bottom: 10px;
}

#eprivacyModal .modal-body p {
  margin-bottom: 10px;
}

#eprivacyModal .modal-body ul {
  margin-bottom: 20px;
}

#eprivacyModal .modal-footer button {
  padding: 10px 20px;
  border: 2px solid #ccc;
  margin-right: 15px;
  cursor: pointer;
}

#eprivacyModal.hide {
  display: none;
}

.plg_system_eprivacy_accepted {
  display: none !important;
}

.mobile-button {
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

.mobile-button i {
  color: #fff;
  font-size: 36px;
}

.hidden-desktop {
  display: none;
}

.social-icons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a img {
  width: 30px;
  margin: 10px;
  height: auto;
}

.error .wrapper {
  margin: 50px 0;
}

.error .wrapper h1 {
  font-size: 42px;
}

.error .wrapper a {
  width: 200px;
  padding: 10px 20px;
  text-align: center;
  background-color: #00249f;
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) and (max-width: 1300px) {
  .hidden-desktop {
    display: block;
  }

  h1 {
    font-size: 24px;
  }

  table {
    width: 90%;
  }
  table h2 {
    font-size: 14px;
  }

  .container {
    width: 90%;
  }

  .menu-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 90px;
    right: -100%;
    background-color: #00249f;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .menu-navigation.active {
    right: 0;
  }

  header .menu li .nav-child {
    visibility: visible;
    position: relative;
    background-color: transparent;
    top: unset;
    margin-top: 10px;
  }

  header .menu li.parent:hover .nav-child {
    top: unset;
  }

  header .menu li .nav-child a {
    color: #fff;
    padding: 0;
    padding-left: 5px;
  }

  .menu-navigation li {
    margin-bottom: 10px;
  }

  header .menu li.parent {
    margin-bottom: 0;
  }

  .mod-languages {
    order: 2;
  }

  header .menu {
    align-items: flex-start;
    flex-direction: column;
    order: 1;
    margin-bottom: 20px;
  }

  header {
    height: 90px;
  }

  header .logo {
    width: 115px;
  }

  .slider {
    height: 400px;
  }

  .slider .slider-content .slider-item {
    height: 400px;
  }

  .news .owl-next {
    right: 0;
  }

  .news .owl-prev {
    left: 0;
  }

  footer .work-with-us-button {
    top: -20px;
  }

  footer .work-with-us-button img {
    max-width: 220px;
  }

  #video {
    display: none;
  }

  iframe {
    height: 190px;
  }

  .page-intern h1 {
    font-size: 24px;
  }

  .article-banner {
    height: 390px;
  }

  .accordion table tr td {
    width: 100% !important;
  }

  .accordion table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .accordion table td img {
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .hidden-desktop {
    display: block;
  }

  h1 {
    font-size: 24px;
  }

  table {
    width: 90%;
  }
  table h2 {
    font-size: 14px;
  }

  .container {
    width: 90%;
  }

  .menu-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 90px;
    right: -100%;
    background-color: #00249f;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .menu-navigation.active {
    right: 0;
  }

  header .menu li .nav-child {
    visibility: visible;
    position: relative;
    background-color: transparent;
    top: unset;
    margin-top: 10px;
  }

  header .menu li.parent:hover .nav-child {
    top: unset;
  }

  header .menu li .nav-child a {
    color: #fff;
    padding: 0;
    padding-left: 5px;
  }

  .menu-navigation li {
    margin-bottom: 10px;
  }

  header .menu li.parent {
    margin-bottom: 0;
  }

  .mod-languages {
    order: 2;
  }

  header .menu {
    align-items: flex-start;
    flex-direction: column;
    order: 1;
    margin-bottom: 20px;
  }

  header {
    height: 90px;
  }

  header .logo {
    width: 115px;
  }

  .slider {
    height: 400px;
  }

  .slider .slider-content .slider-item {
    height: 400px;
  }

  .news .owl-next {
    right: 0;
  }

  .news .owl-prev {
    left: 0;
  }

  footer .work-with-us-button {
    top: -20px;
  }

  footer .work-with-us-button img {
    max-width: 220px;
  }

  #video {
    display: none;
  }

  iframe {
    height: 190px;
  }

  .page-intern h1 {
    font-size: 24px;
  }

  .article-banner {
    height: 160px;
  }

  .accordion table tr td {
    width: 100% !important;
  }

  .accordion table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .accordion table td img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .slider,
  .slider .slider-content .slider-item {
    height: 310px;
  }
}
