@keyframes top-to-bottom {
  49% {
    transform: translateY(50%);
  }
  50% {
    transform: translateY(-50%);
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
}
@keyframes arrow-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes arrow-left {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(225, 37, 27, 0);
    background-color: #e1251b;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(225, 37, 27, 0);
  }
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    height: 100%;
  }
}
@media (min-width: 1390px) {
  .container {
    max-width: 1360px;
  }
}
@media (min-width: 1760px) {
  .container {
    max-width: 1730px;
  }
}
.container--relative {
  position: relative;
}
.container--fluid {
  padding: 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  margin: 0;
}
html ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track {
  background: #ffffff;
}
html ::-webkit-scrollbar-thumb {
  background: #1d3a69;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #285091;
}

body {
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  margin: 0 !important;
  overflow-x: hidden;
  padding: 0 !important;
  text-transform: uppercase;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button {
  border: none;
}

svg {
  display: block;
  height: auto;
  width: 100%;
}
svg path {
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  z-index: 1030;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .navbar {
    position: absolute;
  }
}
@media (min-width: 1390px) {
  .navbar::after, .navbar::before {
    content: "";
    background-color: #e8ebf0;
    height: 1px;
    width: 41%;
    position: absolute;
    top: 40px;
    z-index: -1;
    transition: opacity 0.2s ease;
  }
  .navbar::before {
    left: 0;
  }
  .navbar::after {
    right: 0;
  }
}
.navbar.scrolled .container::after {
  opacity: 0;
}
@media (max-width: 991px) {
  .navbar.scrolled {
    background: #ffffff;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.1);
    padding: 0;
  }
}
.navbar.open .icon-hamburger {
  background: #e1251b;
}
.navbar.open .icon-hamburger::after, .navbar.open .icon-hamburger::before {
  background: #e1251b;
}
.navbar .container {
  min-height: 60px;
  transition: min-height 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.navbar .container::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: #e8ebf0;
  width: 90%;
  transition: opacity 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .navbar .container::after {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar .container {
    max-width: 1730px;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1390px) {
  .navbar .container {
    min-height: 180px;
  }
}
.navbar .submenu {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out 0s;
}
@media (min-width: 992px) {
  .navbar .submenu {
    overflow: hidden;
    position: absolute;
    max-height: unset;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    left: 50%;
    transform: translate(-50%);
    top: calc(100% + 5px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 10px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    transition: opacity 0.3s ease-in-out 0s, visibility 0.3s ease-in-out 0s;
  }
}
.navbar .submenu__item {
  padding: 16px;
  border-top: 1px solid #1d3a69;
}
.navbar .submenu__item:first-child {
  margin-top: 16px;
}
.navbar .submenu__item:last-child {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .navbar .submenu__item {
    width: 100%;
    padding: 15px 20px;
    margin-left: 0px;
    border-top: none;
    white-space: nowrap;
  }
  .navbar .submenu__item:first-child {
    margin-top: 0;
  }
  .navbar .submenu__item:last-child {
    padding-bottom: 16px;
  }
}
.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  width: 240px;
  height: 80px;
  margin: auto;
  z-index: 1030;
  display: none;
}
.navbar .logo svg {
  display: block;
}
@media (min-width: 992px) {
  .navbar .logo {
    display: none;
  }
}
@media (min-width: 1390px) {
  .navbar .logo {
    display: block;
    width: 240px;
    top: 20px;
    transition: transform 0.2s ease;
  }
}

.menu-hamburger {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: flex-start;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 30px;
  height: 30px;
  z-index: 1050;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .menu-hamburger {
    display: none;
  }
}
.menu-hamburger .icon-hamburger {
  width: 17px;
  height: 3px;
  background: #1d3a69;
  transition: all 0.3s ease-in-out;
}
.menu-hamburger .icon-hamburger::after, .menu-hamburger .icon-hamburger::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 3px;
  background: #1d3a69;
  transition: all 0.3s ease-in-out;
}
.menu-hamburger .icon-hamburger::after {
  transform: translateY(5px);
}
.menu-hamburger .icon-hamburger::before {
  transform: translateY(-5px);
}
.menu-hamburger.open .icon-hamburger {
  transform: translateX(-50px);
  background: transparent;
}
.menu-hamburger.open .icon-hamburger::before {
  transform: rotate(45deg) translate(35px, -35px);
}
.menu-hamburger.open .icon-hamburger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}

@media (max-width: 991px) {
  .hamburger-wrapper {
    height: 60px;
    position: fixed;
    width: 100%;
    z-index: 1050;
    transition: all 0.3s ease-in-out;
  }
  .hamburger-wrapper.open {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}

.text-hamburger {
  font-size: 2.2rem;
  line-height: 18px;
  color: #1d3a69;
  font-weight: 800;
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 1050;
  transform: translate(84%, -50%);
}
@media (min-width: 992px) {
  .text-hamburger {
    display: none;
  }
}

.nav {
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 110px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: calc(100vh + 80px);
  transform: translateX(-105%);
  opacity: 0;
  overflow-y: auto;
  padding-bottom: 200px;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}
@media (min-width: 992px) {
  .nav {
    position: relative;
    padding-top: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: unset;
    transform: unset;
    box-shadow: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
    opacity: 1;
    padding-bottom: 0;
    overflow-y: visible;
  }
}
.nav.nav-open {
  z-index: 200;
  transform: translateX(0);
  opacity: 1;
}
.nav__list {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: unset;
    gap: 16px;
    padding: 0;
  }
}
@media (min-width: 1760px) {
  .nav__list {
    gap: 35px;
  }
}
.nav__list-item {
  position: relative;
  list-style: none;
  padding: 16px 0;
  border-bottom: 1px solid #1d3a69;
}
.nav__list-item--logo {
  display: none;
}
@media (min-width: 992px) {
  .nav__list-item {
    flex-shrink: 0;
    border-bottom: none;
  }
  .nav__list-item:last-child {
    margin-right: 0;
  }
}
.nav__list-item--home {
  display: none;
}
@media (min-width: 992px) {
  .nav__list-item--home {
    border-radius: 50%;
    border: 1px solid #e8ebf0;
    display: flex;
    justify-self: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 9px;
  }
  .nav__list-item--home svg {
    transform: translateX(2px);
  }
  .nav__list-item--home:hover svg path {
    stroke: #e1251b;
  }
}
@media (min-width: 992px) {
  .nav__list-item--submenu {
    top: -1px;
  }
}
.nav__list-item:hover, .nav__list-item:focus-within {
  cursor: pointer;
}
.nav__list-item:hover .submenu, .nav__list-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
}
.nav__list-link {
  color: #1d3a69;
  position: relative;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 17px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (min-width: 992px) {
  .nav__list-link {
    font-size: 2rem;
  }
}
@media (min-width: 1390px) {
  .nav__list-link {
    font-size: 2.2rem;
  }
}
.nav__list-link.active, .nav__list-link:hover {
  color: #e1251b;
}
.nav__list-link.active .nav__indicator svg, .nav__list-link:hover .nav__indicator svg {
  transform: scale(1, -1);
}
.nav__list-link.active .nav__indicator svg path, .nav__list-link:hover .nav__indicator svg path {
  fill: #e1251b;
}
.nav__list-link span {
  position: relative;
}
.nav__indicator {
  position: absolute;
  right: -20px;
  width: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.nav__indicator svg {
  transform: scale(1);
  transition: transform 0.2s ease;
}
@media (min-width: 992px) {
  .nav .socials {
    display: none;
  }
}

.socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transition: opacity 0.2s ease;
}
@media (min-width: 992px) {
  .socials {
    position: absolute;
    top: 13px;
    right: 15px;
    margin-top: 0;
    gap: 40px;
  }
}
.socials--main {
  display: none;
}
@media (min-width: 992px) {
  .socials--main {
    display: flex;
  }
}
.socials__link {
  font-family: "Albert Sans", sans-serif;
  font-size: 1.6rem;
  color: #626d80;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}
@media (min-width: 992px) {
  .socials__link {
    font-size: 1.1rem;
  }
}
.socials__link svg {
  width: 16px;
}
.socials__link:hover {
  color: #e1251b;
}
.socials__link:hover:first-child svg path {
  fill: #e1251b;
}
.socials__link:hover:not(:first-child) svg path {
  stroke: #e1251b;
}

.section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .section {
    padding-bottom: 80px;
  }
}
.section__title {
  color: #ffffff;
  position: relative;
  font-weight: 800;
  font-size: 4rem;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .section__title {
    font-size: 8rem;
    line-height: 68px;
    text-align: left;
  }
}
@media (min-width: 992px) and (min-height: 1100px) {
  .section__title {
    font-size: 9rem;
    line-height: 72px;
  }
}
.section__title--red {
  color: #e1251b;
}
.section__title--blue {
  color: #1d3a69;
}
@media (min-width: 1390px) {
  .section__title--big {
    font-size: 11rem;
    line-height: 92px;
    text-align: left;
  }
}
@media (min-width: 1390px) and (min-height: 1100px) {
  .section__title--big {
    font-size: 12rem;
    line-height: 96px;
  }
}

.button {
  position: relative;
  background-color: #e1251b;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 21px 40px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  z-index: 1000;
}
@media (min-width: 992px) {
  .button {
    font-size: 2rem;
  }
}
.button:hover {
  color: #ffffff;
  background-color: #9d1a13;
}

.btn-to-section {
  cursor: pointer;
  background-color: #9d1a13;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(225, 37, 27, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  animation: pulse 1.5s infinite;
  transition: background-color 0.2s ease, -webkit-backdrop-filter 0.2s ease;
  transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
  transition: background-color 0.2s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
}
.btn-to-section:hover {
  background-color: #e1251b;
}
.btn-to-section:hover svg {
  animation: top-to-bottom 0.6s forwards;
}
@media (min-width: 992px) {
  .btn-to-section {
    display: flex;
  }
}
.btn-to-section svg {
  width: 18px;
}
.btn-to-section--red {
  display: flex;
}
.btn-to-section--center {
  margin: auto;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 11;
}
.btn-to-section--footer {
  bottom: 12px;
}
@media (min-width: 1390px) {
  .btn-to-section--footer {
    bottom: 0;
  }
}
.btn-to-section--reversed {
  transform: rotate(180deg);
}

.section-buttons-wrapper {
  display: none;
}
@media (min-width: 992px) {
  .section-buttons-wrapper {
    display: flex;
    justify-content: center;
    margin: auto;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 11;
    opacity: 0;
  }
  .section-buttons-wrapper button:first-child {
    margin-left: 20px;
  }
}

.yt-link {
  color: #e1251b;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .yt-link {
    justify-content: flex-start;
  }
}
.yt-link--white {
  color: #ffffff;
}
.yt-link svg {
  width: 16px;
  margin-right: 7px;
}
.yt-link span {
  text-decoration: underline;
}

.info {
  text-transform: uppercase;
}
.info__heading {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 48px;
}
@media (min-width: 992px) {
  .info__heading {
    font-size: 7rem;
    line-height: 56px;
  }
  .info__heading--small {
    font-size: 6rem;
    line-height: 48px;
  }
}
.info__heading--big {
  font-size: 6rem;
}
.info__text {
  font-size: 2rem;
  line-height: 18px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .info__text {
    font-size: 2.4rem;
    line-height: 22px;
    margin-bottom: 0;
  }
}

.hidden {
  display: none !important;
}

.scroll {
  overflow: hidden;
}
@media (min-width: 992px) {
  .scroll {
    overflow: auto;
  }
}

@media (max-width: 991px) {
  .webp .hero-section {
    background-image: url("../img/webp/hero/hero-mobile.webp");
  }
}
@media only screen and (max-width: 991px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-resolution: 1.25dppx), (max-width: 991px) and (-webkit-min-device-pixel-ratio: 0.75), (max-width: 991px) and (min-resolution: 72dpi) {
  .webp .hero-section {
    background-image: url("../img/webp/hero/hero-mobile@2x.webp");
  }
}
.webp .about-us-section {
  background-image: url("../img/webp/backgrounds/about-us-bg-mobile.webp");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 1.25dppx), (-webkit-min-device-pixel-ratio: 0.75), (min-resolution: 72dpi) {
  .webp .about-us-section {
    background-image: url("../img/webp/backgrounds/about-us-bg-mobile@2x.webp");
  }
}
@media (max-width: 991px) {
  .webp .blue-wrapper {
    background-image: url("../img/webp/backgrounds/blue-bg-mobile.webp");
  }
}
@media only screen and (max-width: 991px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-resolution: 1.25dppx), (max-width: 991px) and (-webkit-min-device-pixel-ratio: 0.75), (max-width: 991px) and (min-resolution: 72dpi) {
  .webp .blue-wrapper {
    background-image: url("../img/webp/backgrounds/blue-bg-mobile@2x.webp");
  }
}
.webp .capabilities-section {
  background-image: url("../img/webp/backgrounds/capabilities-bg-mobile.webp");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 1.25dppx), (-webkit-min-device-pixel-ratio: 0.75), (min-resolution: 72dpi) {
  .webp .capabilities-section {
    background-image: url("../img/webp/backgrounds/capabilities-bg-mobile@2x.webp");
  }
}
@media (min-width: 992px) {
  .webp .capabilities-section {
    background-image: url("../img/webp/backgrounds/capabilities-bg.webp");
  }
}
@media only screen and (min-width: 992px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-width: 992px) and (min-device-pixel-ratio: 1.25), only screen and (min-width: 992px) and (min-resolution: 1.25dppx), (min-width: 992px) and (-webkit-min-device-pixel-ratio: 0.75), (min-width: 992px) and (min-resolution: 72dpi) {
  .webp .capabilities-section {
    background-image: url("../img/webp/backgrounds/capabilities-bg@2x.webp");
  }
}

@media (max-width: 991px) {
  .no-webp .hero-section {
    background-image: url("../img/hero/hero-mobile.png");
  }
}
@media only screen and (max-width: 991px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-resolution: 1.25dppx), (max-width: 991px) and (-webkit-min-device-pixel-ratio: 0.75), (max-width: 991px) and (min-resolution: 72dpi) {
  .no-webp .hero-section {
    background-image: url("../img/hero/hero-mobile@2x.png");
  }
}
.no-webp .about-us-section {
  background-image: url("../img/backgrounds/about-us-bg-mobile.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 1.25dppx), (-webkit-min-device-pixel-ratio: 0.75), (min-resolution: 72dpi) {
  .no-webp .about-us-section {
    background-image: url("../img/backgrounds/about-us-bg-mobile@2x.png");
  }
}
@media (max-width: 991px) {
  .no-webp .blue-wrapper {
    background-image: url("../img/backgrounds/blue-bg-mobile.png");
  }
}
@media only screen and (max-width: 991px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-device-pixel-ratio: 1.25), only screen and (max-width: 991px) and (min-resolution: 1.25dppx), (max-width: 991px) and (-webkit-min-device-pixel-ratio: 0.75), (max-width: 991px) and (min-resolution: 72dpi) {
  .no-webp .blue-wrapper {
    background-image: url("../img/backgrounds/blue-bg-mobile@2x.png");
  }
}
.no-webp .capabilities-section {
  background-image: url("../img/backgrounds/capabilities-bg-mobile.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 1.25dppx), (-webkit-min-device-pixel-ratio: 0.75), (min-resolution: 72dpi) {
  .no-webp .capabilities-section {
    background-image: url("../img/backgrounds/capabilities-bg-mobile@2x.png");
  }
}
@media (min-width: 992px) {
  .no-webp .capabilities-section {
    background-image: url("../img/backgrounds/capabilities-bg.png");
  }
}
@media only screen and (min-width: 992px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-width: 992px) and (min-device-pixel-ratio: 1.25), only screen and (min-width: 992px) and (min-resolution: 1.25dppx), (min-width: 992px) and (-webkit-min-device-pixel-ratio: 0.75), (min-width: 992px) and (min-resolution: 72dpi) {
  .no-webp .capabilities-section {
    background-image: url("../img/backgrounds/capabilities-bg@2x.png");
  }
}

.hero-section {
  margin: auto;
  padding-top: 225px;
  padding-bottom: 55px;
  text-align: center;
  background-position: center bottom -240px;
  background-size: 1025px;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .hero-section {
    background-position: center bottom -365px;
    background-size: 1300px;
  }
}
@media (min-width: 992px) {
  .hero-section {
    background-size: cover;
    background-position: center bottom;
    padding-top: 220px;
  }
}
@media (min-width: 1390px) {
  .hero-section {
    padding-top: 150px;
  }
}
.hero-section .container {
  height: 100%;
}
.hero-section .hero-bg {
  display: none;
}
@media (min-width: 992px) {
  .hero-section .hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
}
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.hero-section .content {
  position: relative;
  color: #1d3a69;
  font-weight: 800;
  height: 100%;
}
.hero-section .content__logo {
  position: absolute;
  top: -136px;
  right: 50%;
  width: 185px;
  transform: translateX(50%);
}
@media screen and (min-height: 780px) {
  .hero-section .content__logo {
    width: 240px;
  }
}
@media (min-width: 1390px) {
  .hero-section .content__logo {
    display: none;
  }
}
.hero-section .content__title {
  font-size: 5rem;
  line-height: 40px;
  padding-bottom: 85px;
}
@media (min-width: 576px) {
  .hero-section .content__title {
    font-size: 7rem;
    line-height: 60px;
  }
}
@media (min-width: 992px) {
  .hero-section .content__title {
    font-size: 8rem;
    line-height: 64px;
    transform: translateY(-55px);
  }
}
@media screen and (min-width: 992px) and (min-height: 780px) {
  .hero-section .content__title {
    font-size: 9rem;
    line-height: 72px;
    transform: translateY(0px);
  }
}
@media (min-width: 1390px) {
  .hero-section .content__title {
    font-size: 11rem;
    line-height: 90px;
  }
}
@media screen and (min-width: 1390px) and (min-height: 900px) {
  .hero-section .content__title {
    font-size: 15rem;
    line-height: 120px;
    margin-top: 18px;
  }
}
.hero-section .content__btn-down {
  margin: 30px auto 0;
  bottom: 430px;
}
@media (min-width: 576px) {
  .hero-section .content__btn-down {
    margin: 50px auto 0;
  }
}
@media (min-width: 992px) {
  .hero-section .content__btn-down {
    margin: auto;
    bottom: 30px;
  }
}
.hero-section .content__logos {
  display: none;
}
@media (min-width: 576px) {
  .hero-section .content__logos {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 20px;
    width: 53px;
  }
}
@media (min-width: 992px) {
  .hero-section .content__logos {
    left: 0;
    bottom: 20px;
  }
}
@media (min-width: 1390px) {
  .hero-section .content__logos {
    left: 45px;
    bottom: 100px;
  }
}
.hero-section .content__text-wrapper {
  display: flex;
  text-align: center;
  flex-direction: column;
  margin: 270px auto 0;
}
@media (min-width: 992px) {
  .hero-section .content__text-wrapper {
    bottom: 60px;
    transform: translateX(159%);
    position: absolute;
    right: 50%;
    flex-direction: row;
    text-align: left;
    margin: 0;
    max-width: 280px;
    gap: 25px;
  }
}
.hero-section .content__arrow {
  width: 30px;
  flex-shrink: 0;
  margin: 0 auto 10px;
  animation: arrow-up 1s infinite;
}
.hero-section .content__arrow svg {
  transform: translateX(-30px) scaleX(-1) rotate(-260deg);
}
@media (min-width: 992px) {
  .hero-section .content__arrow svg {
    transform: rotate(-90deg);
  }
}
@media (min-width: 992px) {
  .hero-section .content__arrow {
    margin-top: 25px;
    margin-left: 0;
    animation: arrow-left 1s infinite;
  }
  .hero-section .content__arrow svg {
    transform: unset;
  }
}
.hero-section .content__text {
  font-size: 3rem;
  line-height: 24px;
}

.about-us-section {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding-bottom: 104px;
  position: relative;
  z-index: 6;
}
.about-us-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 992px) {
  .about-us-section::after {
    display: none;
  }
}
@media (min-width: 992px) {
  .about-us-section {
    text-align: left;
    padding-top: 25px;
  }
}
@media screen and (min-width: 992px) and (min-height: 900px) {
  .about-us-section {
    padding-top: 80px;
  }
}
.about-us-section .container {
  z-index: 10;
}
@media (min-width: 992px) {
  .about-us-section .break {
    display: none;
  }
}
@media (min-width: 1760px) {
  .about-us-section .content {
    padding-left: 30px;
  }
}
.about-us-section .content__line {
  width: 51px;
  margin: 83px auto 43px;
}
@media (min-width: 992px) {
  .about-us-section .content__line {
    display: none;
  }
}
@media screen and (min-width: 992px) and (min-height: 890px) {
  .about-us-section .content__line {
    display: block;
    width: 40px;
    margin: 20px 0;
  }
}
@media screen and (min-width: 992px) and (min-height: 1100px) {
  .about-us-section .content__line {
    width: 53px;
    margin: 50px 0 37px;
  }
}
.about-us-section .content__duda {
  font-size: 3rem;
  font-weight: 800;
  line-height: 27px;
}
@media (min-width: 992px) {
  .about-us-section .content__duda {
    margin-top: 20px;
  }
}
.about-us-section .content__duda svg {
  width: 156px;
  margin: 20px auto 0;
}
@media (min-width: 992px) {
  .about-us-section .content__duda svg {
    margin: 20px 0 0;
  }
}
.about-us-section .content__link {
  display: none;
}
@media (min-width: 992px) {
  .about-us-section .content__link {
    position: absolute;
    display: flex;
    right: 45px;
    bottom: 0;
  }
}
.about-us-section .video-background {
  position: relative;
  display: none;
}
.about-us-section .video-background__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.about-us-section .video-background__placeholder.hide {
  opacity: 0;
  visibility: hidden;
}
.about-us-section .video-background__picture {
  width: 100%;
  height: 100%;
}
.about-us-section .video-background__picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .about-us-section .video-background {
    display: block;
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    inset: 0;
  }
}
.about-us-section .video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 16/9) {
  .about-us-section .video-background iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .about-us-section .video-background iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
.about-us-section iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blue-wrapper {
  background-color: #1d3a69;
  background-repeat: no-repeat;
  background-position: center top 608px;
  background-size: 600px;
  padding-bottom: 45px;
}
@media (min-width: 992px) {
  .blue-wrapper {
    width: 100%;
    height: 100%;
    background-color: #1d3a69;
    padding-bottom: 0;
    position: fixed;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 6;
  }
}
.blue-wrapper__img-container {
  display: none;
}
@media (min-width: 992px) {
  .blue-wrapper__img-container {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
  }
}
.blue-wrapper__img-container .images-wrapper {
  position: absolute;
  transform: scale(1);
  left: 50%;
  width: 2000px;
  bottom: -800px;
  transform: translateX(-38%);
}
@media screen and (min-height: 1000px) {
  .blue-wrapper__img-container .images-wrapper {
    width: 2500px;
    bottom: -960px;
  }
}
@media (min-width: 1760px) {
  .blue-wrapper__img-container .images-wrapper {
    right: -710px;
    bottom: -1110px;
    width: 2830px;
  }
}
@media screen and (min-width: 1760px) and (min-height: 1000px) {
  .blue-wrapper__img-container .images-wrapper {
    width: 3300px;
    bottom: -1370px;
  }
}
.blue-wrapper__img-container .img-sandwich {
  max-width: 1130px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-51%, -60%);
  z-index: -1;
}
@media (min-width: 1760px) {
  .blue-wrapper__img-container .img-sandwich {
    max-width: 1435px;
  }
}
.blue-wrapper__img-container .img-hot-dog {
  max-width: 1240px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-44%, -50%);
  z-index: -1;
}
@media (min-width: 1760px) {
  .blue-wrapper__img-container .img-hot-dog {
    max-width: 1590px;
    transform: translate(-43%, -51%);
  }
}

.group-section {
  padding-bottom: 365px;
  text-align: center;
  z-index: 2;
}
@media (min-width: 992px) {
  .group-section {
    text-align: left;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 992px) and (max-height: 900px) {
  .group-section {
    padding-top: 30px;
  }
}
@media (min-width: 1390px) {
  .group-section {
    background-position: calc(50% + 285px) bottom;
    background-size: 3015px;
  }
}
@media (min-width: 992px) {
  .group-section .section__title {
    max-width: 600px;
  }
}
@media screen and (min-width: 1760px) and (min-height: 1000px) {
  .group-section .section__title {
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) and (max-height: 800px) {
  .group-section .content {
    transform: scale(0.75);
    transform-origin: left top;
  }
}
@media (min-width: 1760px) {
  .group-section .content {
    padding-left: 30px;
  }
}
.group-section .content__info {
  margin-top: 80px;
}
@media (min-width: 992px) {
  .group-section .content__info {
    max-width: 363px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1760px) and (min-height: 1000px) {
  .group-section .content__info {
    margin-top: 105px;
  }
}
@media (min-width: 992px) {
  .group-section .content__market {
    margin-bottom: 30px;
  }
}
@media (min-width: 1760px) {
  .group-section .content__market {
    margin-bottom: 60px;
  }
}
.group-section .content__numbers {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .group-section .content__numbers {
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .group-section .content .break {
    display: none;
  }
}

.info-section {
  text-align: center;
  z-index: 3;
}
@media (min-width: 992px) {
  .info-section {
    text-align: left;
    padding-bottom: 0;
    position: absolute;
  }
}
@media screen and (min-width: 992px) and (max-height: 900px) {
  .info-section {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .info-section .section__title--desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .info-section .section__title--mobile {
    display: none;
  }
}
@media screen and (min-width: 992px) and (max-height: 800px) {
  .info-section .content {
    transform: scale(0.7);
    transform-origin: left top;
  }
}
@media (min-width: 1760px) {
  .info-section .content {
    padding-left: 30px;
  }
}
.info-section .content__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
  justify-content: center;
  margin: 46px 0;
}
@media (min-width: 768px) {
  .info-section .content__info {
    display: flex;
    justify-content: space-around;
  }
}
@media (min-width: 992px) {
  .info-section .content__info {
    max-width: 651px;
    margin: 20px 0;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1760px) and (min-height: 1000px) {
  .info-section .content__info {
    margin: 60px 0;
  }
}
.info-section .content__poultry {
  position: relative;
}
.info-section .content__subtitle {
  margin-top: 80px;
  font-size: 4rem;
  line-height: 32px;
}
@media (min-width: 992px) {
  .info-section .content__subtitle {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1760px) and (min-height: 1000px) {
  .info-section .content__subtitle {
    margin-top: 103px;
  }
}
.info-section .content__image {
  max-width: 264px;
  margin: 50px auto 0;
}
@media (min-width: 768px) {
  .info-section .content__image {
    max-width: unset;
  }
}
@media (min-width: 992px) {
  .info-section .content__image {
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 1760px) and (min-height: 1000px) {
  .info-section .content__image {
    margin: 50px auto 0;
  }
}
.info-section .poultry-blue-mask {
  display: none;
}
@media (min-width: 992px) {
  .info-section .poultry-blue-mask {
    display: block;
    position: absolute;
    inset: 0;
    background-color: #1d3a69;
  }
}

.capabilities-section {
  background-color: #000000;
  background-position: center top;
  background-size: 820px;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 506px;
  padding-bottom: 80px;
  z-index: 4;
}
@media (min-width: 768px) {
  .capabilities-section {
    background-size: 990px;
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) {
  .capabilities-section {
    background-size: cover;
    text-align: left;
    padding-top: 0;
    padding-bottom: 80px;
  }
}
.capabilities-section::after {
  content: "";
  position: absolute;
  bottom: 325px;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
@media screen and (max-width: 520px) {
  .capabilities-section::after {
    bottom: 360px;
  }
}
@media (min-width: 768px) {
  .capabilities-section::after {
    bottom: 105px;
  }
}
@media (min-width: 992px) {
  .capabilities-section::after {
    background: radial-gradient(104% 60% at 19% 102%, #000 0%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .capabilities-section .section__title .break {
    display: none;
  }
}
.capabilities-section .container {
  z-index: 10;
}
@media screen and (min-width: 992px) and (max-height: 800px) {
  .capabilities-section .container {
    transform: scale(0.8);
    transform-origin: left bottom;
  }
}
@media (min-width: 992px) {
  .capabilities-section .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 1760px) {
  .capabilities-section .content {
    padding-left: 30px;
  }
}
.capabilities-section .content__info-inner-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .capabilities-section .content__info-inner-wrapper {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.capabilities-section .content__info {
  margin: 50px 0;
}
@media (min-width: 768px) {
  .capabilities-section .content__info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin: 40px 0;
    max-width: 672px;
  }
}
@media (min-width: 992px) {
  .capabilities-section .content__info {
    margin: 60px 0;
  }
}
.capabilities-section .content .info__heading {
  margin-bottom: 10px;
}

.footer-section {
  background-color: #ffffff;
  padding-bottom: 65px;
}
@media (min-width: 992px) {
  .footer-section {
    z-index: 3;
    padding: 8% 0 80px;
  }
}
@media screen and (min-width: 992px) and (min-height: 800px) {
  .footer-section {
    padding: 14% 0 80px;
  }
}
@media (min-width: 1390px) {
  .footer-section {
    padding: 8% 0 80px;
  }
}
.footer-section .section__title {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) and (max-height: 800px) {
  .footer-section .container {
    transform: scale(0.73);
    transform-origin: left top;
  }
}
.footer-section .content {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .footer-section .content {
    height: 100%;
    display: grid;
  }
}
@media (min-width: 1760px) {
  .footer-section .content {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .footer-section .footer-menu {
    display: none;
  }
}
.footer-section .footer-menu .menu-hamburger,
.footer-section .footer-menu .text-hamburger {
  z-index: 3;
}
.footer-section .footer-menu .text-hamburger {
  transform: translate(84%, 50%);
}
.footer-section .footer-menu .menu-hamburger {
  transform: translate(-50%, 12%);
}
.footer-section .navigation {
  text-align: center;
}
@media (min-width: 992px) {
  .footer-section .navigation {
    text-align: left;
    display: flex;
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) and (min-height: 1100px) {
  .footer-section .navigation {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .footer-section .navigation__wrapper {
    margin-right: 80px;
  }
}
@media (min-width: 1390px) {
  .footer-section .navigation__wrapper:first-child {
    margin-right: 191px;
  }
  .footer-section .navigation__wrapper:nth-child(2) {
    margin-right: 121px;
  }
}
.footer-section .navigation__wrapper--desktop {
  display: none;
}
@media (min-width: 992px) {
  .footer-section .navigation__wrapper--desktop {
    display: block;
  }
}
.footer-section .navigation__title {
  color: #626d80;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.1rem;
  text-transform: initial;
  margin-bottom: 25px;
}
.footer-section .navigation__title--desktop {
  display: none;
}
@media (min-width: 992px) {
  .footer-section .navigation__title--desktop {
    display: block;
  }
}
.footer-section .navigation__socials-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 310px;
  margin: 95px auto 35px;
}
@media (min-width: 992px) {
  .footer-section .navigation__socials-list {
    align-items: flex-start;
    flex-direction: column;
    margin: 0;
  }
}
.footer-section .navigation__link {
  margin-bottom: 25px;
}
.footer-section .navigation__link a {
  color: #1d3a69;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 13px;
  transition: color 0.2s ease;
}
@media (min-width: 992px) {
  .footer-section .navigation__link a {
    font-size: 2.2rem;
    line-height: 18px;
  }
}
.footer-section .navigation__link a:hover {
  color: #e1251b;
}
.footer-section .navigation__link--socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .footer-section .navigation__link--socials a {
    justify-content: flex-start;
    flex-direction: row;
  }
}
.footer-section .navigation__link--socials a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .footer-section .navigation__link--socials a svg {
    margin-bottom: 0;
    margin-right: 10px;
    width: 18px;
    height: 18px;
  }
}
.footer-section .navigation__link--socials:first-child a:hover svg path {
  fill: #e1251b;
}
.footer-section .navigation__link--socials:not(:first-child) a:hover svg path {
  stroke: #e1251b;
}
.footer-section .copy {
  text-align: center;
}
@media (min-width: 992px) {
  .footer-section .copy {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: flex-end;
  }
}
.footer-section .copy__text {
  color: #626d80;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 14px;
  text-transform: initial;
}
.footer-section .copy__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .footer-section .copy__links {
    justify-content: flex-start;
  }
}
.footer-section .copy__links a {
  display: block;
  text-decoration: underline;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-section .copy__links a:hover {
  color: #e1251b;
}
@media (min-width: 992px) {
  .footer-section .copy__links a {
    margin-right: 24px;
    margin-bottom: 18px;
  }
}
@media (min-width: 992px) {
  .footer-section .copy__copyright {
    display: flex;
    align-items: center;
  }
}
.footer-section .copy__realization {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .footer-section .copy__realization {
    margin-top: 0;
    margin-left: 30px;
  }
}
.footer-section .copy__realization svg {
  width: 66px;
  margin-left: 10px;
}
.footer-section .copy__logo {
  margin: 40px auto 0;
}
@media (min-width: 992px) {
  .footer-section .copy__logo {
    margin: 0 0 0 auto;
  }
}
.footer-section .copy__logo svg {
  width: 240px;
  margin: auto;
}
.footer-section .footer-bg {
  position: absolute;
  bottom: -195px;
  width: 500px;
  right: 50%;
  z-index: 0;
  transform: translateX(51%);
}
.footer-section .footer-bg .svg-desktop {
  display: none;
}
@media (min-width: 992px) {
  .footer-section .footer-bg {
    bottom: -900px;
    width: 2120px;
    right: -179px;
    transform: translateX(35%);
  }
  .footer-section .footer-bg .svg-mobile {
    display: none;
  }
  .footer-section .footer-bg .svg-desktop {
    display: block;
  }
}

@media (min-width: 992px) {
  .main-wrapper {
    height: 600vh;
    position: relative;
    overflow: hidden;
  }
}

.anchor {
  display: none;
}
@media (min-width: 992px) {
  .anchor {
    display: block;
    height: 100vh;
  }
}

@media (min-width: 992px) {
  .hero-wrapper {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 8;
  }
}

@media (min-width: 992px) {
  .animated-section {
    position: fixed;
    height: 100vh;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .animated-inner-section {
    position: absolute;
    height: 100vh;
    width: 100%;
  }
}