body {
  font-family: "Poppins", sans-serif;
  background-image: url(../img/fon.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 400;
  color: #212529;
  text-align: left;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

.link {
  text-decoration: none;
  color: #007bff;
}

main .link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.header-section .link,
.footer-section .link {
  color: rgba(255, 255, 255, 0.5);
}

.header-section .link:hover,
.footer-section .link:hover,
.header-section .link:focus,
.footer-section .link:focus {
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.cards {
  display: flex;
}

.card {
  flex-basis: auto;
}

.container {
  padding: 0 15px;
}

@media screen and (min-width: 428px) {
}

@media screen and (min-width: 768px) {
  .container {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    margin: 0 auto;
    width: 1200px;
  }
}

/* ===================== COMPONENTS =====================*/

/* ===================== /COMPONENTS =====================*/

/* ===================== HEADER =====================*/
.header-section {
  background-color: #343a40;
  padding-top: 5px;
  padding-bottom: 5px;
}
.header-container {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.menu-container {
  /* display: flex;
  align-items: center; */
  /* height: 600px; */
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.menu-svg {
  fill: currentColor;
}

/* .link:hover .menu-svg,
.link:focus .menu-svg {
  fill: rgba(255, 255, 255, 0.8);
} */

.show-menu-auth {
  position: relative;
  border: 0;
  background-color: transparent;
  margin-left: 15px;
  display: flex;
  color: rgba(255, 255, 255, 0.5);
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.menu-auth {
  /* width: 200px; */
  /* top: 100%;
  right: 0; */
  /* display: none; */
  /* position: absolute; */
  /* padding-top: 8px; */
  /* background-color: #343a40; */
}

.menu {
  /* background-color: #779bc0; */
}

.menu-auth-item {
  margin-left: 15px;
  padding: 2px 0;
}
.menu-auth-link {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.menu-auth-icon {
  fill: currentColor;
  margin-right: 4px;
}

@media screen and (max-width: 767px) {
  .header-container {
    position: relative;
    /* width: 320px; */
    /* overflow: hidden; */
  }

  .page-nav {
    /* position: relative; */
  }

  .menu-container {
    /* display: none; */
    position: fixed;
    z-index: 1;
    top: 80px;
    left: 0;
    width: 100vw;
    transform: translateX(100%);
    transition: transform 250ms ease-in-out;

    /* display: block; */
    padding: 15px;
    /* margin-left: -15px; */
    /* margin-right: -15px; */

    background-color: #212529;
    outline: 1px solid #007bff;
  }

  .menu-container.is-open {
    transform: translateX(0);
  }

  .menu-item {
    margin-bottom: 15px;
  }

  .burger-icon {
    fill: rgba(255, 255, 255, 0.5);
  }

  .menu-open-btn {
    background-color: transparent;
    border: 0;
    margin-left: auto;
  }

  .menu-svg {
    /* display: none; */
  }

  .form-search {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .menu-container {
    display: flex;
    justify-content: center;
  }

  .menu-open-btn {
    display: none;
  }

  .logo-link {
    margin-right: 20px;
  }

  .menu {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .menu-item {
    /* margin-left: 15px; */
  }

  .show-menu-auth:hover {
    /* background-color: royalblue; */
    color: rgba(255, 255, 255, 0.8);
  }

  .show-menu-auth:hover .menu-auth {
    display: block;
  }

  .menu-auth-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
    /* vertical-align: ; */
  }
}

/* ===================== /HEADER =====================*/

/* ===================== /MENU =====================*/

/* ===================== /MENU =====================*/

/* ===================== MAIN =====================*/
.main-section {
  padding-top: 25px;
  padding-bottom: 25px;
}

.main-text-wrapper {
  padding-top: 25px;
}

.main-text {
  color: black;
  border: 1px solid #777;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
}

.main-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
  outline: 1px solid #007bff;
}

.main-item {
  width: 100%;
  border: 1px solid #777;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px;
  flex-grow: 1;

  /* min-width: 300px; */
}

@media screen and (min-width: 428px) {
  .main-item {
    width: calc((100% - 25px) / 2);
  }
}

@media screen and (min-width: 768px) {
  .main-text-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }

  .main-item {
    width: calc((100% - 50px) / 3);
  }
}

@media screen and (min-width: 1200px) {
  .main-text-wrapper {
    padding-left: 150px;
    padding-right: 150px;
  }

  .main-item {
    width: calc((100% - 75px) / 4);
  }
}

.main-img {
  transition: all 0.5s ease;
  opacity: 1;
}

.main-img:hover {
  opacity: 0.7;
}

.main-title {
  font-size: 16px;
  line-height: 1.5;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-img-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.main-img {
  /* width: 100%;
  height: calc(width * 3 / 4); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-title-link {
}

.subtitle-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-subtitle {
  width: 150px;
  font-size: 12px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  /* display: flex; */
  /* justify-content: left;
  align-items: center; */
}

.main-subtitle:last-child {
  text-align: right;
}

.fish-list {
  display: flex;
}

.fish-item {
  margin-left: 3px;
}
.fish-item:not(:last-child)::after {
  content: ", ";
  margin-left: -3px;
  padding: 0;
}

.options-wrapper {
}

.options-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

.options-item {
  display: flex;
  gap: 3px;
  height: 100%;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.5;
}

.fish-wrapper {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.fish-link {
  font-size: 12px;
  line-height: 1.5;
}

/* ===================== /MAIN =====================*/

/* ===================== /ARTICLE =====================*/

.article-section {
  margin: 5px auto;
  padding: 10px 5px;
  border: 1px solid #777;
  background-color: #fff;
  border-radius: 5px;
}

.article-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #212529;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  background-color: #e9ecef;
  padding: 10px 6px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.breadcrumb-item:not(:last-child):after {
  content: "/";
  padding-right: 3px;
}

.article-text {
  line-height: 1.5;
  margin-bottom: 10px;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  /* padding-top: 25px; */
  height: 0;
  margin-bottom: 10px;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.options {
  display: flex;
  justify-content: space-between;
}

/* ===================== /ARTICLE =====================*/

/* ===================== PAGINATION =====================*/

.main-pagination {
  display: flex;
  justify-content: center;
  margin: 25px auto;
}

.pagination {
  display: flex;
  font-size: 1rem;
  list-style: none;
  border-radius: 2px;
}

.page-item {
}

.disabled {
}

.page-item:first-child .page-link {
  padding: 0.5rem 0.5rem;
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  padding: 0.5rem 0.5rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-link {
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  background-color: #fff;
  color: #007bff;
  border: 1px solid #dee2e6;
  text-decoration: none;
}
.active a {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* ===================== /PAGINATION =====================*/

/* ===================== FOOTER =====================*/

.footer-section {
  background-color: #343a40;
  padding-top: 15px;
  /* padding-bottom: 15px; */
}

.footer-container > .list,
.footer-container > p {
  margin-bottom: 25px;
}

@media screen and (min-width: 428px) {
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    /* row-gap: 25px; */
    /* gap: 45px; */
  }
}

@media screen and (min-width: 768px) {
  .footer-container {
    /* display: flex;
    align-items: center;
    justify-content: space-around; */
    /* gap: 15px; */
  }
}

.footer-social {
  display: flex;
  gap: 20px;
  /* margin-left: 160px; */
  flex-grow: 2;
  /* text-align: center; */
  justify-content: center;
}

.footer-social-link {
  font-size: 20px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social-svg {
  fill: rgba(255, 255, 255, 0.5);
}
.footer-social-svg:hover,
.footer-social-svg:focus {
  fill: rgba(255, 255, 255, 0.8);
}

.footer-copirate {
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
  margin-right: auto;
  flex-grow: 2;
  text-align: center;
}

.footer-links {
  flex-grow: 1;
  padding: 0;
}

.footer-links-item {
}

.footer-links-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links-link:hover,
.footer-links-link:focus {
  color: rgba(255, 255, 255, 0.8);
}
/* ===================== /FOOTER =====================*/
