@font-face {
  font-family: 'BebasNeuePro';
  src: local('Bebas Neue Pro Expanded ExtraBold'), local('Bebas-Neue-Pro-Expanded-ExtraBold'),
  url('../fonts/BebasNeuePro-ExpandedExtraBold.woff2') format('woff2'),
  url('../fonts/BebasNeuePro-ExpandedExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BebasNeuePro';
  src: url('../fonts/BebasNeuePro-SemiExpRegular.woff2') format('woff2'),
       url('../fonts/BebasNeuePro-SemiExpRegular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'NunitoSans';
  src: url('../fonts/NunitoSans10pt-Regular.woff2') format('woff2'),
  url('../fonts/NunitoSans10pt-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NunitoSans';
  src: url('../fonts/NunitoSans10pt-SemiBold.woff2') format('woff2'),
  url('../fonts/NunitoSans10pt-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NunitoSans';
  src: url('../fonts/NunitoSans10pt-Bold.woff2') format('woff2'),
  url('../fonts/NunitoSans10pt-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  height: 100%;
  margin: 0;
} 

body {
  font-family: 'NunitoSans', sans-serif;
  color: #38445B;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.wrapper {
  background-color: aliceblue;
}
.main {
  flex: 1;
}
.container {
  max-width: 1360px;
  margin: 0 auto;
}

.head {
  display: flex;
  text-align: center;
  justify-content: space-between; 
  margin: 0 auto; 
  padding: 3px 0;
  gap: 40px;
}

.logo img {
  height: 73px;
  width: auto;
  position: relative;
  z-index: 1001;
}

a {
  text-decoration: none;
  color: inherit;
}

.top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}

.menu  {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-right: auto;
}

.menu a {
  text-decoration: none;
  color: #144C87;
  font-size: 15px;
  font-weight: 600;
  padding: 5px;
   transition: all 0.3s ease;
   text-transform: uppercase;
   padding: 10px;
}

.menu a:hover {
color: #487BB0;
background-color: rgba(166, 207, 250, 0.08);
padding: 10px;
border-radius: 30px;
}

.lang {
  color: #487BB0;
  font-size: 15px;
  font-weight: 600;
  padding: 5px 14px;
  gap: 20px;
  display: flex;
}
.lang .active { 
  color: #144C87;
}

.header-buttons {
  display: flex;
  gap: 11px;
  align-items: center;
}
 .page-button {
  padding: 11px 40px 9px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #FFFFFF;
  color: #144C87;
  transition: all 0.3s;
  border: 1.5px solid #144C87;
}

.header-buttons .page-button {
width: 137px;
height: 45px;
padding: 10px;
}

.registration {
  background-color: #FFDB55;
  color: #191C42;
  border: 1.5px solid transparent;
  transition: 
    background-color 0.4s ease,
    box-shadow 0.6s ease;
    min-width: 150px;
     
}
.page-button:hover {
border: 1.5px solid #FFFFFF;
background-color: rgba(255, 255, 255, 0.4);
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px); 
box-shadow: 0 0 26px #A6CFFA;
}

.header-buttons  .page-button:hover {
font-size: 16px;
}
.registration:hover {
  background-color: #FFFDC3;
  box-shadow: 0 0 40px 15px rgba(255, 232, 23); 
}

.top-content {
  padding: 30px 0 15px 0;
}

.main h2 {
font-size: 35px;
padding: 10px 0 40px;
}
.main ul, .main ol {
  padding: 20px 40px;
}

.main p {
  font-size: 18px;
}
.main ul, .main ol {
  font-size: 18px;
}

.main h3 {
  font-size: 28px;
  padding: 10px 0;
}

.main h4 {
  font-size: 19px;
  padding: 15px 0;
}

.head {
  position: relative;
  z-index: 100;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  align-items: flex-end;
}

.burger {
  width: 18px;
  height: 2px;
  background-color: #295774;
  margin: 2px 0;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.short {
  width: 14px;
  height: 2px;
}

.menu-toggle.active .burger:first-child {
  transform: rotate(45deg) translate(2px, 2px);
}

.menu-toggle.active .burger.short {
  transform: rotate(-45deg) translate(2px, -2px);
  width: 18px;
  align-self: center;
}

.hero {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.hero h1 {
font-size: 140px;
font-weight: 900;
font-family: 'BebasNeuePro', sans-serif;
color: #144C87;
}
.nav {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.nav .page-button {
  text-transform: uppercase;
}
.nav .page-button.active {
  background-color: #144C87;
  color: #FFFFFF;
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px); /* для Safari */
box-shadow: 0 0 26px #A6CFFA;
}
.nav .page-button.active:hover {
border: 1.5px solid transparent;
}

.big-offer {
  padding: 24px;
  border-radius: 61px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: 'NunitoSans', sans-serif;
  transition: all 0.7s ease;
}
.big-offer:hover {
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px); /* для Safari */
box-shadow: 0 0 26px #A6CFFA;
background-color: rgba(255, 255, 255, 0.4);
}

.big-offer img {
border-radius: 61px;
max-width: 595px;
height: auto;
}

.big-offer .description-offer {
display: flex;
flex-direction: column;
gap: 15px;

}

.big-offer .date {
  display: flex;
  justify-content: space-between;
}
.big-offer .date p {
  color: #93B4BF;
  font-size: 20px;
}
.big-offer .title {
  font-size: 26px;
  text-transform: uppercase;
  color: #191C42;
  font-weight: 700;
   text-shadow: -0.76px 0.76px 0 #191C42; 
}
.big-offer .desc {
color: #191C42;
font-size: 26px;
font-weight: 200;
font-family: 'NunitoSans', sans-serif;
}

.desc {
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.big-offer .author {
color: #93B4BF;
font-size: 23px;
font-weight: 500;
}
.big-offer .read-more {
  text-transform: uppercase;
  color: #144C87;
  font-weight: 700;
  font-size: 23px;
}
.read-more {
  display: flex;
  align-items: center;
}


.offers {
  padding: 46px 0;
}
.offer {
  padding: 16px;
  border-radius: 40px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  font-family: 'NunitoSans', sans-serif;
  max-width: 421px;
  transition: all 0.7s ease;
}
.offer:hover {
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px); /* для Safari */
box-shadow: 0 0 26px #A6CFFA;
background-color: rgba(255, 255, 255, 0.4);
}
.offer img {
border-radius: 40px;
width: 100%;
max-height: 213px;
}
.description-offer {
display: flex;
flex-direction: column;
gap: 12px;
width: 100%;
}

.date {
  display: flex;
  justify-content: space-between;
}
.date p {
  color: #93B4BF;
  font-size: 13px;
}
.title {
  font-size: 17px;
  text-transform: uppercase;
  color: #191C42;
  font-weight: 700;
}
.author {
color: #93B4BF;
font-size: 15px;
font-weight: 500;
}
.read-more {
  text-transform: uppercase;
  color: #144C87;
  font-weight: 700;
  font-size: 15px;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 48px;
}

.pagination {
      display: flex;
      justify-content: center;
      gap: 13px;
    }

    .page-item {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #144C87;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #144C87;
      font-weight: bold;
      font-size: 17px;
      cursor: pointer;
      transition: all 0.3s ease;
    }


.page-item.arrow.prev::after {
  transform: rotate(180deg);
}

    .page-item.active {
      background-color: #144C87;
      color: white;
    }

    .page-item:hover:not(.active) {
      border: 1px solid #FFFFFF;
      background-color: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(7px);
      -webkit-backdrop-filter: blur(7px); /* для Safari */
      box-shadow: 0 0 26px #A6CFFA;
    }

    .arrow {
      font-size: 22px;
    }
    .read-more::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  margin-left: 8px;
  background-image: url('../img/arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  margin-bottom: 2px;
}
 .big-offer .read-more::after {
   width: 10px;
  height: 15px;
  margin-left: 13px;
 }

    .blog {
    padding-bottom: 100px;
    }

   .foot {
    display: flex;
    justify-content: space-between;
    color: #144C87;
    font-size: 14px;
    padding: 20px 0 80px;
    border-top: 1px solid rgba(4, 150, 194, 0.23);
    align-items: center;
   }
   .footer-menu {
     display: flex;
     gap: 35px;
   }
   .left-column {
    display: flex;
    gap: 10px;
    align-items: center;
   }
   .left-column p {
    position: relative;
   }
  .left-column p::before {
  content: '•';
  color: #144C87;
  margin-right: 0.5em;
  font-weight: bold;
  display: inline-block;
}
   .foot a {
    transition: color 0.3s ease;
   }
   .foot a:hover {
    text-decoration: underline;
    color: #9BAABF;
   }
   .foot .logo {
    height: 48px;
    width: auto;
   }

.page-item.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .arrow::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  background-image: url('../img/arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.article {
  max-width: 996px;
  width: 100%;
  margin: 60px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  justify-content: center;
}
.art {
  position: relative;
}
.signature {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.signature p {
font-size: 18px;
color: #93B4BF;
font-weight: 500;
}

.signature p:nth-child(2) {
  margin-right: auto;
}

.image-block img {
  border-radius: 40px;
  width: 872px;
  height: auto;
  margin: 0 auto 18px;
}
.social svg {
 width: 32px;
 height: 31px;
 color: #144C87;
 transition: color 0.3s ease;
}
.social svg:hover { 
color: #191C42;
}
.social {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.article .page-button {
  background-color: #144C87;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: all 0.4s ease;
}
.article .page-button:hover {
border: 1.5px solid transparent;
background-color: #FFFFFF;
color: #144C87;
}

.article h1 {
  font-size: 42px;
  color: #000000;
  line-height: 48px;
  text-align: center;
 font-family: 'BebasNeuePro', sans-serif;
 padding-bottom: 20px;
}
.article h2 {
  font-size: 36px;
  line-height: 48px;
  color: #000000;
  text-align: left;
  font-family: 'BebasNeuePro', sans-serif;
  font-weight: 600;
}
.article h3 {
  font-size: 30px;
  line-height: 48px;
  color: #000000;
  text-align: left;
  padding: 10px 0 25px;
  font-weight: 600;
  font-family: 'BebasNeuePro', sans-serif;
}
.article h4 {
  font-size: 25px;
  line-height: 48px;
  color: #000000;
  text-align: left;
  padding: 10px 0 20px;
  font-family: 'BebasNeuePro', sans-serif;
}

.article {
color: #000000;
font-size: 18px;
position: relative;
overflow: hidden;
padding-bottom: 20px;
}
.article p, .article ul, .article ol {
  margin-bottom: 15px;
  line-height: 23px;
}
.article ul, .article ol { 
  padding: 0;
  margin-left: 30px;
}
.article .rocket-list {
  margin-left: 0;
  list-style: none;
}
.article .rocket-list li {
  margin-bottom: 15px;
}
.article ol {
padding: 10px 0 10px;
}

table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  border: 1px solid #93B4BF;
  margin: 20px 0;
}
th, td {
  text-align: left;
  padding: 10px 20px;
  vertical-align: middle;
}

td { 
width: 100%;}
th {
  background-color: #FFFFFF;
  font-weight: 600;
  
  border-right: 1px solid #93B4BF;
}

tr {
  border-bottom: 1px solid #93B4BF;
}

tr:last-child {
  border-bottom: none;
}
tr + tr td, tr + tr th {
  border-top: 1px solid #93B4BF; /* добавляем бордер между строками */
}
@media (max-width: 799px) {
  table {
    overflow-x: auto;
    max-width: 100%;
  }
}

.big-text a {
color: #144C87;
font-weight: 700;
}
.big-text {
  width: 100%;
}
.back {
  position: absolute;
  left: 0;
  top: 0;
  height: 36px;
  width: 36px;
  border-radius: 50px;
  background-color: #144C87;
  cursor: pointer;
}
.back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: url(../img/arrow-1.svg) no-repeat center center;
  background-size: contain;

}

.wrapper {
  position: relative;
  background: 
    linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%),
    url(../img/sea_wave.webp) no-repeat center center;
  background-size: cover;
}



/* animation */
.main-waves {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%; 
  gap: 8px;
  overflow: hidden;
}

.main-waves svg {
  width: 4000px; 
  height: auto; 
  margin: 0;
  will-change: transform;
}

.main.container {
  position: relative;
  z-index: 1;
}


@media (max-width: 1408px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 1282px) {
  .menu-toggle {
    display: flex;
  }

  .top-menu.active {
    display: flex;
    align-items: center;
    padding: 80px 30px 15px;
    width: 100%;
    gap: 15px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    gap: 7px;
  }
  .header-buttons {
    display: flex;
    width: auto;
    gap: 20px;
  }

.wrapper:has(.head) {
padding: 0;
}
.top-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: flex-start;
  padding-top: 80px;
}

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

.menu-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  z-index: 1100;
  background: none;
  border: none;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
  height: 100%;
}
header {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 80%, transparent 100%);
}
   
}

@media (max-width: 1080px) {
 .nav {
  flex-wrap: wrap;
 }
 .big-offer {
  flex-direction: column;
 }
 .offers {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 48px;
  grid-template-rows: auto; 
  align-items: center;   
  }
  .big-offer img {
    max-width: 100%;
    max-height: 100%;
  }
  .big-offer .description-offer {
  max-width: 100%;
}
.offer {
  width: 100%;
  max-width: 100%;
}
.offer img {
   max-height: 100%;
}

.image-block img {
width: 100%;
}
}


@media (max-width: 728px) {
  .main h1 {
    font-size: 68px;
  }
.page-button {
  font-size: 12px;
  padding: 9px 32px 7px;
    border-radius: 24px;
}
.hero {
  padding: 70px 0 20px;
}
.logo img {
  width: auto;
  height: 43px;
}

.page-button a {
  font-size: 14px;
}
.big-offer {
  border-radius: 31px;
  padding: 12px;
}
.big-offer img {
  border-radius: 31px;
}
.big-offer .date p {
  font-size: 10px;
}

.big-offer .title {
  font-size: 13px;
  text-shadow: none;
}
.big-offer .desc {
  font-size: 11px;
}
.big-offer .author {
  font-size: 11px;
}
.big-offer .read-more {
  font-size: 11px;
}

.blog {
    padding-bottom: 30px;
}

.offer {
  border-radius: 31px;
  padding: 12px;
}
.offer .date p {
  font-size: 10px;
}

.offer .title {
  font-size: 13px;
  text-shadow: none;
}
.offer .desc {
  font-size: 11px;
}
.offer .author {
  font-size: 11px;
}
.offer .read-more {
  font-size: 11px;
}

    .offers {
    grid-template-columns: 1fr; 
    grid-template-rows: auto; 
    gap: 17px;  
  }
  .offer img {
    max-height: 100%;
    border-radius: 31px;
  }
  .menu-toggle {
    padding: 0;
  }
 
  .foot {
    align-items: center;
    padding: 20px 0 30px;
  }
  .left-column {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-menu  {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .page-item {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }

  .image-block img {
    border-radius: 15px;
  }
  .article h1 {
  font-size: 32px;
  line-height: 32px;
  padding-bottom: 25px;
}
.article h2 {
  font-size: 28px;
  line-height: 28px;
}
.article h3 {
  font-size: 25px;
  line-height: 25px;
  padding: 10px 0 25px;
}
.article h4 {
  font-size: 20px;
  line-height: 20px;
  padding: 10px 0 20px;
}
.article {
font-size: 16px;
gap: 15px;
padding-bottom: 10px;
}
.social {
  gap: 60px;  
  margin-bottom: 20px;
}
.article .page-button {
  border-radius: 30px;
}
.back {
  position: absolute;
 left: 24px;
 top: -40px;
  height: 22px;
  width: 22px;
}
.back::before {
width: 10px;
height: 10px;
}
.signature p {
  font-size: 14px;
}
}

.page-button span {
    margin: 0; /* Для текста внутри кнопки */
    padding: 0; /* Для текста внутри кнопки */
}




