@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.white {
  color: white;
}
.blue {
  color: #003463;
}
.green {
  color: #598948;
}
.headline {
  font: normal normal bold 63px/73px Open Sans;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 1439px) {
  .headline {
    font: normal normal bold 48px/59px Open Sans;
    margin-bottom: 18px;
  }
}
@media (max-width: 599px) {
  .headline {
    font: normal normal bold 26px/32px Open Sans;
  }
}
.headline-medium {
  font: normal normal bold 63px/73px 'Open Sans', sans-serif;
}
@media (max-width: 1919px) {
  .headline-medium {
    font: normal normal bold 48px/59px 'Open Sans', sans-serif;
  }
}
@media (max-width: 1299px) {
  .headline-medium {
    font: normal normal bold 40px/50px 'Open Sans', sans-serif;
  }
}
@media (max-width: 999px) {
  .headline-medium {
    font: normal normal bold 26px/31px 'Open Sans', sans-serif;
  }
}
.subline {
  font: normal normal bold 48px/59px Open Sans;
}
@media (max-width: 1439px) {
  .subline {
    font: normal normal bold 40px/50px Open Sans;
  }
}
@media (max-width: 599px) {
  .subline {
    font: normal normal bold 32px/42px Open Sans;
  }
}
.content-container {
  width: 100%;
  margin: 0 auto;
}
a {
  font-weight: 700;
  color: #003463;
  text-decoration: none;
  transition: .2s ease-in-out;
}
a:hover {
  opacity: .7;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html body {
  font: normal normal normal 16px/22px Open Sans;
  color: #ffffff;
  overflow-x: hidden;
}
html body .popup {
  display: none;
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body .popup .popup-content {
  width: 1080px;
  max-width: 90%;
  padding: 50px 180px;
  text-align: center;
  background-color: #01071E;
  color: white;
  border-radius: 5px;
  box-shadow: 1px 3px 10px #01071E48;
}
html body .popup .popup-content .popup-icon {
  margin-bottom: 15px;
}
html body .popup .popup-content p {
  margin-bottom: 50px;
  line-height: 24px;
}
html body .popup .popup-content .popup-close {
  width: 260px;
  font-weight: bold;
  background: white;
  color: #01071E;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: 0;
  border-radius: 5px;
  padding: 19px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: .2s ease-in-out;
}
html body .popup .popup-content .popup-close:hover {
  opacity: .8;
}
html body .popup.show {
  display: flex;
}
@media (max-width: 999px) {
  html body .popup .popup-content {
    width: 90%;
    padding: 40px 50px;
  }
  html body .popup .popup-content .headline {
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}
@media (max-width: 599px) {
  html body .popup .popup-content .popup-close {
    width: 100%;
  }
}
html body nav {
  transition: .6s ease-in-out;
  position: fixed;
  padding: 27px 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
html body nav .nav-background-image,
html body nav .nav-background-image-mobile {
  opacity: 0;
  transition: .6s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
html body nav .nav-background-image-mobile {
  display: none;
}
html body nav .nav-container {
  display: flex;
  width: 100%;
}
html body nav .nav-container .logo-container {
  width: 33%;
  display: flex;
  align-items: center;
}
html body nav .nav-container .logo-container .logo {
  max-height: 37px;
  transition: .6s ease-in-out;
}
html body nav .nav-container .logo-container:nth-child(1) {
  justify-content: flex-start;
}
html body nav .nav-container .logo-container:nth-child(2) {
  justify-content: center;
}
html body nav .nav-container .logo-container:nth-child(3) {
  justify-content: flex-end;
}
html body nav.scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
}
html body nav.scrolled .nav-background-image {
  opacity: 1;
}
html body nav.scrolled .nav-container .logo-container .logo {
  max-height: 29px;
}
html body nav.scrolled .nav-container .logo-container:nth-child(2) .logo {
  max-height: 12px;
}
@media (max-width: 1919px) {
  html body nav .nav-container .logo-container {
    width: 33%;
    display: flex;
    align-items: baseline;
  }
}
@media (max-width: 1439px) {
  html body nav {
    padding: 15px 140px;
  }
  html body nav .nav-container .logo-container .logo {
    max-height: 20px;
  }
  html body nav .nav-container .logo-container:nth-child(2) .logo {
    max-height: 8px;
  }
  html body nav.scrolled {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  html body nav.scrolled .nav-container .logo-container .logo {
    max-height: 21px;
  }
  html body nav.scrolled .nav-container .logo-container:nth-child(2) .logo {
    max-height: 9px;
  }
}
@media (max-width: 1299px) {
  html body nav.scrolled .nav-background-image {
    height: 11vw;
    object-fit: cover;
  }
}
@media (max-width: 1099px) {
  html body nav {
    padding: 12px 36px;
  }
  html body nav .nav-container .logo-container .logo {
    max-height: 15px;
  }
  html body nav.scrolled {
    padding: 12px 36px;
  }
  html body nav.scrolled .nav-background-image {
    height: 13vw;
  }
  html body nav.scrolled .nav-container .logo-container .logo {
    max-height: 15px;
  }
}
@media (max-width: 799px) {
  html body nav.scrolled .nav-background-image {
    height: 14vw;
  }
}
@media (max-width: 599px) {
  html body nav .nav-background-image {
    display: none;
  }
  html body nav .nav-background-image-mobile {
    display: block;
    opacity: 1;
  }
}
html body .header {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 0;
}
html body .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100vh + 300px);
  background: transparent radial-gradient(closest-side at 50% 50%,#003463 0%,#01071E 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}
html body .header #header-stars {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
html body .header #header-stars svg {
  width: auto !important;
}
html body .header #header-tree {
  height: 357px;
  margin: 50px 0;
  width: 100%;
  transition: .9s ease-in-out .7s;
}
html body .header .headline-container {
  max-width: 620px;
  text-align: center;
}
html body .header .headline-container .headline {
  transition: .9s ease-in-out 1.1s;
}
html body .header .headline-container .text {
  padding: 0 34px;
  margin-bottom: 40px;
  transition: .9s ease-in-out 1.5s;
}
html body .header .headline-container #header-scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 10px;
  height: 80px;
  box-sizing: content-box;
  padding: 0 20px;
  margin: 0 auto 40px;
  cursor: pointer;
  text-decoration: none;
  transition: .9s ease-in-out 1.5s;
}
html body .header .headline-container #header-scroll-down:after {
  content: "scroll";
  position: relative;
  text-transform: uppercase;
  font: normal normal bold 14px/14px Open Sans;
  margin-top: 15px;
  color: white;
}
html body .header.anim .headline,
html body .header.anim .text,
html body .header.anim #header-scroll-down {
  opacity: 0;
}
@media (max-width: 1439px) {
  html body .header .headline-container .text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 599px) {
  html body .header #header-tree {
    height: 250px;
    margin-top: 0;
  }
  html body .header #header-stars {
    height: 270px;
  }
}
@media (max-height: 899px) {
  html body .header .headline-container #header-scroll-down {
    display: none;
  }
}
html body section {
  background-color: white;
  position: relative;
}
html body section.energy {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 70px;
  background-color: white;
  color: #598948;
  padding-top: 50px;
}
html body section.energy .energy-icons-headline {
  width: 67%;
  max-width: 650px;
  font-size: 24px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  transition: .9s ease-in-out .7s;
}
html body section.energy .energy-icon-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 44px 50px 55px;
  max-width: 1160px;
}
html body section.energy .energy-icon-container .energy-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  width: 100%;
  text-align: center;
}
html body section.energy .energy-icon-container .energy-icon-box:nth-child(1) {
  transition: .9s ease-in-out .9s;
}
html body section.energy .energy-icon-container .energy-icon-box:nth-child(2) {
  transition: .9s ease-in-out 1.1s;
}
html body section.energy .energy-icon-container .energy-icon-box:nth-child(3) {
  transition: .9s ease-in-out 1.3s;
}
html body section.energy .energy-icon-container .energy-icon-box:nth-child(4) {
  transition: .9s ease-in-out 1.6s;
}
html body section.energy .energy-icon-container .energy-icon-box .icon {
  margin-bottom: 13px;
}
html body section.energy .energy-icon-container .energy-icon-box .icon-headline {
  font-weight: 700;
}
html body section.energy.anim .energy-icons-headline,
html body section.energy.anim .energy-icon-box {
  opacity: 0;
}
@media (max-width: 1439px) {
  html body section.energy .energy-icons-headline {
    font-size: 22px;
  }
}
@media (max-width: 999px) {
  html body section.energy .energy-icons-headline {
    font-size: 20px;
  }
  html body section.energy .energy-icon-container .energy-icon-box .icon-name {
    font-size: 14px;
  }
}
@media (max-width: 839px) {
  html body section.energy .energy-icons-headline {
    font-size: 17px;
    line-height: 27px;
    padding: 15px 25px;
  }
  html body section.energy .energy-icon-container {
    flex-wrap: wrap;
  }
  html body section.energy .energy-icon-container .energy-icon-box {
    margin-bottom: 40px;
    min-width: 50%;
  }
  html body section.energy .energy-icon-container .energy-icon-box .icon-name {
    max-width: 179px;
  }
}
@media (max-width: 599px) {
  html body section.energy {
    margin-top: 40px;
  }
  html body section.energy .energy-icons-headline {
    width: 80%;
    padding: 10px 15px;
  }
  html body section.energy .energy-icon-container {
    justify-content: center;
  }
}
@media (max-width: 420px) {
  html body section.energy {
    margin-top: 20px;
  }
  html body section.energy .energy-icons-headline {
    height: 70px;
    top: -70px;
  }
}
html body section.lottery {
  position: relative;
  background: transparent;
  padding-top: 250px;
}
html body section.lottery::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent radial-gradient(closest-side at 50% 50%,#003463 0%,#01071E 100%) 0% 0% no-repeat padding-box;
  z-index: -5;
}
html body section.lottery .clouds {
  width: 100%;
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  z-index: -2;
}
html body section.lottery .clouds .clouds-image {
  width: 101%;
  height: auto;
}
html body section.lottery #lottery-snow-layer1 {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 2000px;
  transform: translateX(-50%);
  z-index: -1;
}
html body section.lottery #lottery-snow-layer2 {
  position: absolute;
  top: -10px;
  left: 50%;
  display: block;
  width: 2000px;
  transform: translateX(-49%);
  z-index: -2;
}
html body section.lottery .lottery-intro {
  position: relative;
  max-width: 810px;
  width: 100%;
  margin: 0 auto 60px;
  text-align: center;
}
html body section.lottery .lottery-intro.lottery-client {
  margin: 0 auto 30px;
}
html body section.lottery .lottery-intro .headline {
  transition: .9s ease-in-out .7s;
}
html body section.lottery .lottery-intro .text {
  margin-bottom: 15px;
  transition: .9s ease-in-out 1.1s;
}
html body section.lottery .lottery-intro #sound-on {
  text-align: center;
  width: 100px;
  padding: 35px 0 0;
  margin: 0 auto;
  overflow: hidden;
  transition: .9s ease-in-out 1.5s;
}
html body section.lottery .lottery-wheel {
  position: relative;
  padding-bottom: 120px;
}
html body section.lottery .lottery-wheel .lottery-wheel-container {
  width: 600px;
  margin: 0 auto;
}
html body section.lottery .lottery-wheel .lottery-wheel-container #lottery-container-win,
html body section.lottery .lottery-wheel .lottery-wheel-container #lottery-container-lose {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body section.lottery .lottery-wheel .lottery-wheel-container #lottery-container-win .lottie-start-banner,
html body section.lottery .lottery-wheel .lottery-wheel-container #lottery-container-lose .lottie-start-banner {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-70%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 163px;
  border-radius: 50%;
  z-index: 1;
  background-color: #AE1F25;
  font: normal normal bold 14px/14px 'Open Sans', sans-serif;
  text-transform: uppercase;
  transition: .6s ease-in-out;
}
html body section.lottery .lottery-wheel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/lottery-background-landscape.svg) no-repeat center center;
  background-size: 80vw;
  z-index: -3;
}
html body section.lottery .lottery-wheel::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/seperator-white-lottery.svg) no-repeat top center;
  background-size: cover;
  z-index: -4;
}
html body section.lottery .lottery-wheel.clicked .lottery-wheel-container #lottery-container-lose .lottie-start-banner,
html body section.lottery .lottery-wheel.clicked .lottery-wheel-container #lottery-container-win .lottie-start-banner {
  opacity: 0;
}
html body section.lottery .lottery-form {
  width: 100%;
  display: none;
  margin: 0 0 120px;
  background-color: white;
}
html body section.lottery .lottery-form .lottery-form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body section.lottery .lottery-form .lottery-form-content .headline {
  max-width: 900px;
  text-align: center;
}
html body section.lottery .lottery-form .lottery-form-content .text {
  max-width: 710px;
  text-align: center;
}
html body section.lottery .lottery-form .lottery-form-content .warning {
  margin-top: 15px;
  font-weight: bold;
}
html body section.lottery .lottery-form .lottery-form-content form {
  margin-top: 35px;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 536px;
  width: 100%;
}
html body section.lottery .lottery-form .lottery-form-content form label {
  display: flex;
  width: 100%;
}
html body section.lottery .lottery-form .lottery-form-content form label input {
  width: 100%;
  height: 60px;
  border: 2px solid #598948;
  border-radius: 5px;
  font: normal normal bold 16px/22px 'Open Sans', sans-serif;
  padding: 15px 19px;
}
html body section.lottery .lottery-form .lottery-form-content form label input::placeholder {
  color: #598948;
}
html body section.lottery .lottery-form .lottery-form-content form #lottery-form-submit {
  cursor: pointer;
  margin-top: 38px;
  width: 260px;
  height: 60px;
  background-color: #598948;
  color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal bold 16px/22px 'Open Sans', sans-serif;
}
html body section.lottery .lottery-form.show {
  display: block;
}
html body section.lottery .snow-dome {
  position: relative;
  padding-bottom: 120px;
}
html body section.lottery .snow-dome .snow-dome-container {
  width: 760px;
  margin: 0 auto;
}
html body section.lottery .snow-dome .snow-dome-container #snow-dome-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body section.lottery .snow-dome .snow-dome-container #snow-dome-box .lottie-start-banner {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -82px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 163px;
  border-radius: 50%;
  z-index: 1;
  background-color: #AE1F25;
  font: normal normal bold 14px/14px 'Open Sans', sans-serif;
  text-transform: uppercase;
  box-shadow: 5px 10px 6px #00000029;
}
html body section.lottery .snow-dome .snow-dome-container #snow-dome-box .lottie-start-banner.desktop {
  display: none;
}
@media (min-width: 999px) {
  html body section.lottery .snow-dome .snow-dome-container #snow-dome-box .lottie-start-banner.desktop {
    display: flex;
  }
}
html body section.lottery .snow-dome .snow-dome-container #snow-dome-box .lottie-start-banner.mobile {
  display: none;
}
@media (max-width: 999px) {
  html body section.lottery .snow-dome .snow-dome-container #snow-dome-box .lottie-start-banner.mobile {
    display: flex;
  }
}
html body section.lottery .snow-dome::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/lottery-background-landscape.svg) no-repeat center center;
  background-size: 80vw;
  z-index: -3;
}
html body section.lottery .snow-dome::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/seperator-white-lottery.svg) no-repeat top center;
  background-size: cover;
  z-index: -4;
}
html body section.lottery.anim .headline,
html body section.lottery.anim .text,
html body section.lottery.anim #sound-on {
  opacity: 0;
}
@media (max-width: 999px) {
  html body section.lottery .lottery-intro {
    padding: 0 50px;
  }
  html body section.lottery .lottery-wheel {
    padding-bottom: 50px;
  }
  html body section.lottery .lottery-wheel .lottery-wheel-container {
    width: 500px;
  }
  html body section.lottery .lottery-wheel::after {
    padding-bottom: calc(200px - 10vw);
  }
  html body section.lottery .lottery-wheel::before {
    background-position: top center;
    height: 200px;
    top: 9vw;
  }
  html body section.lottery .lottery-form {
    padding: 0 50px;
  }
  html body section.lottery .snow-dome {
    padding-bottom: 50px;
  }
  html body section.lottery .snow-dome .snow-dome-container {
    width: 500px;
  }
  html body section.lottery .snow-dome .snow-dome-container #snow-dome-box .lottie-start-banner {
    margin-top: -52px;
    width: 133px;
    height: 133px;
  }
  html body section.lottery .snow-dome::after {
    padding-bottom: calc(200px - 10vw);
  }
  html body section.lottery .snow-dome::before {
    background-position: top center;
    height: 200px;
    top: 9vw;
  }
}
@media (max-width: 599px) {
  html body section.lottery .lottery-intro {
    padding: 0 25px;
  }
  html body section.lottery .lottery-intro #sound-on {
    width: 80px;
  }
  html body section.lottery .lottery-wheel {
    padding-top: 78px;
    padding-bottom: 100px;
  }
  html body section.lottery .lottery-wheel .lottery-wheel-container {
    width: 300px;
  }
  html body section.lottery .lottery-wheel .lottery-wheel-container #lottery-container-win .lottie-start-banner,
  html body section.lottery .lottery-wheel .lottery-wheel-container #lottery-container-lose .lottie-start-banner {
    width: 113px;
    height: 113px;
  }
  html body section.lottery .lottery-wheel::after {
    padding-bottom: calc(200px + 10vw);
  }
  html body section.lottery .lottery-wheel::before {
    background-position: top center;
    height: 200px;
    top: 0;
  }
  html body section.lottery .lottery-form {
    padding: 0 25px;
  }
  html body section.lottery .snow-dome {
    padding-top: 26vw;
    padding-bottom: 16vw;
  }
  html body section.lottery .snow-dome .snow-dome-container {
    width: 300px;
  }
  html body section.lottery .snow-dome .snow-dome-container::after {
    padding-bottom: 200px;
  }
  html body section.lottery .snow-dome .snow-dome-container::before {
    background-position: top center;
    height: 200px;
    top: 0;
  }
  html body section.lottery .snow-dome .snow-dome-container #snow-dome-box .lottie-start-banner {
    margin-top: -32px;
    width: 103px;
    height: 103px;
  }
}
html body section.greeting {
  position: relative;
  background: transparent radial-gradient(closest-side at 50% 50%,#003463 0%,#01071E 100%) 0% 0% no-repeat padding-box;
  z-index: 0;
}
html body section.greeting:before,
html body section.greeting:after {
  content: "";
  width: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
}
html body section.greeting:before {
  height: 20vw;
  background-image: url(/assets/images/separator-white-top.svg);
  background-position: top -1px center;
}
html body section.greeting:after {
  height: 30vw;
  background-image: url(/assets/images/separator-white-bottom.svg);
  background-position: bottom -1px center;
}
html body section.greeting .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
html body section.greeting .content-container .logo-container {
  display: flex;
  flex-direction: column;
  max-width: 177px;
  margin-bottom: 35px;
  transition: .9s ease-in-out .7s;
}
html body section.greeting .content-container .logo-container .logo-icon {
  margin-bottom: 15px;
}
html body section.greeting .content-container .logo-container .logo-icon:last-child {
  margin-bottom: 0;
}
html body section.greeting .content-container .text-container {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  transition: .9s ease-in-out 1.1s;
}
html body section.greeting #footer-shamrock {
  text-align: center;
  width: 1200px;
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
html body section.greeting.anim .logo-container,
html body section.greeting.anim .text-container {
  opacity: 0;
}
@media (max-width: 1919px) {
  html body section.greeting .content-container .logo-container {
    max-width: 118px;
  }
  html body section.greeting .content-container .text-container {
    max-width: 755px;
  }
  html body section.greeting #footer-shamrock {
    bottom: 180px;
    width: 1000px;
  }
}
@media (max-width: 1439px) {
  html body section.greeting #footer-shamrock {
    bottom: 140px;
    width: 800px;
  }
}
@media (max-width: 999px) {
  html body section.greeting .content-container {
    max-width: 500px;
  }
  html body section.greeting #footer-shamrock {
    bottom: 90px;
    width: 600px;
  }
}
@media (max-width: 599px) {
  html body section.greeting:before {
    height: 30vw;
    background-image: url(/assets/images/separator-white-top-mobile.svg);
  }
  html body section.greeting:after {
    height: 40vw;
    background-image: url(/assets/images/separator-white-bottom-mobile.svg);
  }
  html body section.greeting .content-container .logo-container {
    max-width: 91px;
  }
  html body section.greeting .content-container .text-container {
    max-width: 318px;
  }
  html body section.greeting #footer-shamrock {
    bottom: 50px;
    width: 500px;
  }
}
html body footer {
  background-color: white;
  color: #598948;
  padding: 200px 0 46px;
}
html body footer .headline {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
}
html body footer .logos-wrapper {
  margin: 88px auto 200px;
  width: 1640px;
}
html body footer .logos-wrapper .logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -2% -60px;
}
html body footer .logos-wrapper .logos-container .logos-box {
  width: 16%;
  margin: 0 2% 60px;
}
html body footer .logos-wrapper .logos-container .logos-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html body footer .footer-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  color: #003463;
  font-size: 14px;
}
html body footer .footer-menu li {
  margin: 0 20px;
}
@media (max-width: 1919px) {
  html body footer .logos-wrapper {
    width: 1360px;
  }
}
@media (max-width: 1439px) {
  html body footer .logos-wrapper {
    width: 1080px;
  }
}
@media (max-width: 1299px) {
  html body footer .logos-wrapper {
    width: 930px;
  }
}
@media (max-width: 999px) {
  html body footer .logos-wrapper {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
  html body footer .logos-wrapper .logos-container .logos-box {
    width: 27.333%;
    margin: 0 3% 10px;
  }
}
@media (max-width: 839px) {
  html body footer .logos-wrapper {
    margin-top: 40px;
  }
  html body footer .logos-wrapper .logos-container .logos-box {
    width: 42%;
    margin: 0 4% 20px;
  }
}
@media (max-width: 839px) {
  html body footer {
    padding: 80px 0 46px;
  }
  html body footer .logos-wrapper .logos-container {
    flex-direction: column;
    align-items: center;
  }
  html body footer .logos-wrapper .logos-container .logos-box {
    width: 211px;
    margin: 0 0 10px;
  }
}
