.indexWelcomeVideo__container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.indexWelcomeVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.indexWelcomeVideo__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 74, 129, 0.5);
}

.indexWelcomeVideo__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 120px;
  line-height: 120px;
  text-shadow: 0 0 2px #001147;
  pointer-events: none;
  font-weight: 700;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.indexMainTitle {
  font-size: 60px;
  line-height: normal;
  font-weight: 700;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #004A81;
  text-align: center;
}

.indexWelcomeVideo__scrollHint {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translate(-50%, 0);
  color: #ffffff;
  animation: scrollHintAnimation 1.1s linear infinite;
  visibility: visible;
  opacity: 0.7;
  transition: visibility .4s ease-in-out, opacity .4s ease-in-out;
  cursor: pointer;
}

.indexWelcomeVideo__scrollHint:hover {
  opacity: 1;
}

.indexWelcomeVideo__scrollHint_hidden {
  visibility: hidden;
  opacity: 0;
}

@keyframes scrollHintAnimation {
  0% {
    bottom: 50px;
  }
  25% {
    bottom: 55px;
  }
  50% {
    bottom: 50px;
  }
  75% {
    bottom: 45px;
  }
  100% {
    bottom: 50px;
  }
}

h3 {
  color: #333333;
  font-weight: 500;
  line-height: 24px;
  font-size: 20px;
  letter-spacing: 1px;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
}

.infoBox {
  margin-top: 25px;
}

.infoBox p {
  margin-top: 15px;
}

.govInformation {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 75px;
  margin-bottom: 50px;
}

.govInformation__antiCorruption {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
}

.govInformation__antiCorruption h2 {
  align-self: flex-start;
}

.govInformation__antiCorruption > * {
  flex: 1 1 auto;
}

.govInformation__antiCorruption_contacts {
  display: flex;
  margin-top: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 20px;
}

.govInformation__antiCorruption_description {
  margin-top: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}

.govInformation__antiCorruption_anonLinksWrap {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.govInformation__govLinks {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline-start: 0;
}

.govInformation__govLinks_listItem {
  flex: 0 0 auto;
}

.govInformation__govLinks_link {
  width: 300px;
  display: block;
}

.indexAlertMarquee {
  background-color: rgba(0, 74, 129, 0.1);
  padding: 7px 0;
  font-size: 14px;
  line-height: normal;
  width: 100%;
  position: relative;
  height: 33px;
  overflow: hidden;
}

.indexAlertMarquee__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 100%;
  white-space: nowrap;
}

.indexAlertMarquee.running:hover .indexAlertMarquee__text {
  animation-play-state: paused;
}

.indexAlertMarquee.running .indexAlertMarquee__text {
  animation: indexAlertMarqueeAnimation 45s linear infinite;
}

@keyframes indexAlertMarqueeAnimation {
  0% {
    left: 100%;
  }
  100% {
    left: -1842px;
  }
}

.portFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
  list-style-type: none;
  margin: 40px 0 0;
  align-items: flex-start;
  padding-inline-start: 0;
}

.portFacts__item {
  flex: 1 1 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  text-transform: lowercase;
  text-align: center;
}

.portFacts__value {
  flex: 1 1 auto;
  color: #004A81;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 9px;
  text-decoration-color: #FCC05F;
  text-underline-offset: -4px;
  text-decoration-skip-ink: none;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
}

.portDetails {
  line-height: 1.5;
  font-size: 35px;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  text-align: center;
  margin: 50px auto 0;
  letter-spacing: 1px;
  background-color: #004A81;
  padding: 50px;
}

.portDetails p {
  color: #ffffff;
}

.portDetails a {
  color: #ffffff;
  text-decoration: underline;
}

.portDetails a:hover {
  text-decoration: none;
}

.portDetails > p:not(:first-child) {
  margin-top: 25px;
}

.portCargoTypes {
  margin: 50px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.portCargoTypes > * {
  flex: 1 1 auto;
}

.portCargoTypes__list {
  list-style-type: none;
  padding-inline-start: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2%;
  margin-top: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.portCargoTypes__listItem {
  padding: 15px 25px;
  line-height: 1.5;
  font-size: 28px;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  color: #004A81;
  transition: background-color .2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.portCargoTypes__listItem svg {
  margin-top: 3px;
}

@media (max-width: 1199px) {
  .indexWelcomeVideo__container {
    height: calc(100vh - 92.17px);
  }

  .indexWelcomeVideo__title {
    font-size: 90px;
    line-height: 90px;
  }

  .govInformation__antiCorruption {
    flex: 0 1 100%;
  }

  .govInformation__govLinks {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .govInformation {
    margin-top: 75px;
  }

  .indexMainTitle {
    font-size: 60px;
    text-underline-offset: -14px;
  }

  .portFacts__item {
    flex: 1 1 200px;
    font-size: 20px;
  }

  .portFacts__value {
    font-size: 32px;
    text-decoration: underline;
    text-decoration-thickness: 7px;
    text-decoration-color: #FCC05F;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
  }

  .portDetails {
    font-size: 28px;
  }

  .portCargoTypes__listItem {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .indexWelcomeVideo__container {
    height: calc(100vh - 92.17px);
  }

  .govInformation__antiCorruption {
    flex: 1 1 100%;
    align-items: center;
    text-align: center;
  }

  .govInformation__antiCorruption .infoBox {
    width: 100%;
  }

  .govInformation__govLinks {
    justify-content: center;
  }

  .govInformation__antiCorruption_contacts {
    justify-content: center;
    margin-bottom: 10px;
  }

  .indexWelcomeVideo__title {
    font-size: 80px;
    line-height: 80px;
  }

  .govInformation {
    margin-top: 35px;
    margin-bottom: 0;
    gap: 35px;
  }

  .indexMainTitle {
    font-size: 50px;
    text-underline-offset: -12px;
  }

  .portFacts__item {
    flex: 1 1 130px;
    font-size: 16px;
  }

  .portFacts__value {
    font-size: 24px;
    text-decoration: underline;
    text-decoration-thickness: 7px;
    text-decoration-color: #FCC05F;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
  }

  .portDetails {
    font-size: 20px;
    padding: 25px;
    margin-top: 35px;
  }

  .portCargoTypes__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .portCargoTypes__listItem {
    font-size: 20px;
    flex: 1 1 auto;
    justify-content: center;
  }

  .govInformation__antiCorruption_anonLinksWrap {
    justify-content: center;
  }

  .portFacts {
    gap: 35px;
  }

  .portCargoTypes {
    margin-top: 35px;
  }

  .govInformation__antiCorruption h2 {
    align-self: unset;
  }
}

@media (max-width: 575px) {
  .indexWelcomeVideo__container {
    height: calc(100vh - 70.5px);
  }

  .indexWelcomeVideo__title {
    font-size: 65px;
    line-height: 65px;
  }

  .indexMainTitle {
    font-size: 40px;
    text-underline-offset: -10px;
  }
}

/* NEWS */
.news__wrap {
  margin: 50px 0 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.news__heading {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 25px;
}

.news__container {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.news__item {
  min-width: 270px;
  max-width: 32%;
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.news__item_imgWrap {
  width: 100%;
  position: relative;
  height: 240px;
}

.news__item_imgWrap:hover {
  opacity: 1;
}

.news__item_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news__item_imgHoverOverlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(12, 113, 195, 0.45);
  transition: visibility 0.3s, opacity 0.3s;
}

.news__item:hover .news__item_imgHoverOverlay {
  visibility: visible;
  opacity: 1;
}

.news__details {
  padding: 30px 20px;
}

.news__details_title {
  font-family: 'Oswald', Helvetica ,Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  display: block;
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 1px;
}

.news__details h2 {
  border-bottom: 0;
}

.news__item:hover .news__details_title {
  color: #0C71C3;
}

.news__details_title:hover {
  opacity: 1;
}

.news__details_date {
  font-family: 'Oswald', Helvetica ,Arial, Lucida, sans-serif;
  font-size: 16px;
  line-height: 19px;
  color: #004A81;
  font-weight: 500;
  display: block;
  letter-spacing: 1px;
}

.news__details_description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #666666;
  display: block;
  margin-top: 6px;
}

@media (min-width: 1200px) {
  .news__item:not(:nth-child(3n+1)) {
    margin-left: 2%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .news__item:nth-child(2n) {
    margin-left: 4%;
  }
}

@media (max-width: 1199px) {
  .news__item {
    max-width: 48%;
  }
}

@media (max-width: 767px) {
  .news__heading {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }

  .news__item {
    max-width: unset;
  }

  .news__details_description {
    display: none;
  }
}

.socialLinks {
  display: flex;
  align-items: center;
}

.socialLinks__link {
  transition: opacity .4s ease-in-out;
}

.socialLinks__link:not(:first-child) {
  margin-left: 36px;
}

@media (max-width: 1199px) {
  .socialLinks__link:not(:first-child) {
    margin-left: 24px;
  }
}

.news__moreLink {
  display: block;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  font-size: 20px;
  color: #004a81;
  font-weight: 700;
  line-height: 27px;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  margin-top: -25px;
}

.news__moreLink:hover {
  color: #004a81;
  opacity: 0.7;
}
