@charset "UTF-8";
.backgroundFixedImage {
  width: 100%;
  height: 100vh;
  background-image: url(/images/fixedimg.png);
  position: fixed;
  background-repeat: repeat-x;
  opacity: 5%;
}

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

html, body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  background-color: #D8A7A7;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  max-height: 100vh;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

fieldset {
  border: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: #1A1A1A;
}

::-webkit-scrollbar-thumb {
  background-color: #D8A7A7;
  border-radius: 10px;
}

.spinnerLoading {
  width: 100%;
  height: 100vh;
  position: absolute;
  display: grid;
  place-items: center;
  z-index: 101;
  background-color: #D8A7A7;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
.pointNavigationTop {
  display: none;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.2039215686);
  z-index: 100;
  position: fixed;
  top: 80%;
  right: 3%;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  opacity: 50%;
  transform: rotate(90deg);
}
.pointNavigationTop:hover {
  scale: 1.2;
  opacity: 1;
  transform: rotate(-90deg);
}
.pointNavigationTop::before {
  content: "";
  display: grid;
  place-items: center;
  left: 50%;
  top: 50%;
  position: absolute;
  width: 85%;
  height: 85%;
  background-image: url(/images/app-1646214_640.png);
  border-radius: 50%;
  background-size: 30px 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.358);
}

header {
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 100;
  background-color: #6A504F;
  background-image: url(/images/confetty.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
  header {
    background-color: transparent;
  }
}

.nav {
  display: none;
  max-width: 100%;
  height: 80px;
  display: none;
}
@media screen and (max-width: 700px) {
  .nav {
    display: flex;
    align-items: center;
  }
}

.burger {
  width: 30px;
  height: 22px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.burger span {
  height: 4px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: 0.4s;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #D8A7A7;
  background-color: #D8A7A7;
  background-image: url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
  transition: 0.4s;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu.active {
  left: 0;
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu ul li {
  margin: 20px 0;
}
.menu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #1A1A1A;
  transition: color 0.3s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D8A7A7;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 999;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav_first {
  height: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .nav_first {
    display: none;
  }
}
.nav_first ol {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 50px;
  color: #1A1A1A;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .nav_first ol {
    justify-content: space-around;
    width: 100%;
  }
}
.nav_first ol li {
  font-size: 2.3vh;
  color: white;
}
.nav_first ol li :hover {
  transition: background-color 0.5s ease-in-out;
  border-radius: 5px;
}
.nav_first ol li ::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: #1A1A1A;
  transition: all 0.5s ease-in-out;
  border-radius: 15px;
  top: 83%;
}
.nav_first ol li :hover::before {
  width: 40px;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #D8A7A7;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.033) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.033) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
  overflow: hidden;
}
.hero__content {
  flex: 1;
  max-width: 600px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: #EFE8DC;
  border-radius: 12px;
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #4d4d4d;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.3s;
}
.hero__image img:hover {
  transform: perspective(1000px) rotateY(-5deg);
}
@media (max-width: 1050px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1rem;
  }
  .hero__content {
    margin-bottom: 3rem;
  }
  .hero__image img {
    max-width: 80%;
    transform: none;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
}

#liLogotype {
  position: absolute;
  left: -150px;
  font-size: 40px;
}
@media screen and (max-width: 1000px) {
  #liLogotype {
    display: none;
  }
}

.ornamentDCRT {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
  z-index: 1000;
}

.snowflake {
  position: absolute;
  background-color: rgba(245, 245, 220, 0.421);
  border-radius: 50%;
  pointer-events: none;
  background-size: cover;
  animation: fall linear infinite;
  will-change: transform;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}
.breeder-title {
  width: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #1A1A1A;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0;
  text-align: center;
  background-color: #F0E7DA;
  position: relative;
  transition: all 1s ease-in-out;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
}
@media (max-width: 768px) {
  .breeder-title {
    font-size: 32px;
  }
}
@media (max-width: 773px) {
  .breeder-title {
    width: 90%;
  }
}

.secondary_information {
  position: absolute;
  z-index: 1;
  width: 40%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.secondary_information h3 {
  width: 90%;
  font-size: 4.5vh;
  text-align: left;
}

.timileni_point_blokc {
  width: 100%;
  background-color: #D8A7A7;
  background-image: url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
}

.timeline-wrapper {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 40px;
}
.timeline-wrapper .timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.timeline-wrapper .timeline::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  background-color: #6A504F;
  left: -20px;
}
@media screen and (max-width: 1200px) {
  .timeline-wrapper .timeline::before {
    display: none;
  }
}
.timeline-wrapper .timeline .timeline-item {
  background-color: #F3DED3;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  transform: translateY(50px);
}
.timeline-wrapper .timeline .timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}
.timeline-wrapper .timeline .timeline-item h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #2c3e50;
}
@media screen and (max-width: 500px) {
  .timeline-wrapper .timeline .timeline-item h2 {
    font-size: 30px;
  }
}
.timeline-wrapper .timeline .timeline-item p {
  font-size: 18px;
  color: #7f8c8d;
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .timeline-wrapper .timeline .timeline-item p {
    font-size: 20px;
  }
}
.timeline-wrapper .timeline .timeline-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.timeline-wrapper .timeline-image {
  flex: 0 0 400px;
  position: relative;
}
.timeline-wrapper .timeline-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .timeline-wrapper {
    flex-direction: column;
  }
  .timeline-wrapper .timeline-image {
    width: 100%;
    order: -1;
  }
}

.future_pet_is_already_yours {
  width: 100%;
  min-height: 80vh;
  background-color: #D8A7A7;
  position: relative;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.033) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.033) 1px, transparent 1px);
  background-size: 40px 40px;
}
.future_pet_is_already_yours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background-image: url(/images/F0LFLZuzNao.jpg);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (max-width: 1030px) {
  .future_pet_is_already_yours::before {
    width: 100%;
    height: 50%;
    border-radius: 0px;
    left: 0;
  }
}
.future_pet_is_already_yours::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 10%;
  top: 90%;
  left: 50%;
  background-image: linear-gradient(to top, #D8A7A7, rgba(255, 255, 255, 0));
}
@media screen and (max-width: 1030px) {
  .future_pet_is_already_yours::after {
    width: 100%;
    height: 10%;
    left: 0;
    top: 40%;
  }
}

.sideElement {
  width: 100%;
  height: 80vh;
  position: absolute;
}
.sideElement::before {
  content: "";
  position: absolute;
  width: 50%;
  left: 50%;
  height: 60px;
  background-image: linear-gradient(to bottom, #D8A7A7, rgba(255, 255, 255, 0));
}
@media screen and (max-width: 1030px) {
  .sideElement::before {
    width: 100%;
    height: 10%;
    left: 0;
    top: 0%;
  }
}

.side_1 {
  width: 50%;
  height: 100%;
  position: relative;
}
.side_1::before {
  content: "";
  position: absolute;
  width: 10%;
  height: 80vh;
  top: 0;
  left: 100%;
  background-image: linear-gradient(to right, #D8A7A7, rgba(255, 255, 255, 0));
}
@media screen and (max-width: 1030px) {
  .side_1::before {
    display: none;
  }
}

.future_pet_content {
  position: absolute;
  width: 100%;
  height: 80vh;
}
@media screen and (max-width: 800px) {
  .future_pet_content {
    height: 90vh;
  }
}
@media screen and (max-width: 630px) {
  .future_pet_content {
    height: 100vh;
  }
}
@media screen and (max-width: 490px) {
  .future_pet_content {
    height: 110vh;
  }
}
@media screen and (max-width: 360px) {
  .future_pet_content {
    height: 115vh;
  }
}
@media screen and (max-width: 330px) {
  .future_pet_content {
    height: 120vh;
  }
}

.alredy_pet_content {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.023) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.023) 1px, transparent 1px);
  background-size: 40px 40px;
}
@media screen and (max-width: 1030px) {
  .alredy_pet_content {
    width: 100%;
    align-items: end;
  }
}
.alredy_pet_content span {
  width: 90%;
  color: #545353;
  font-size: 18px;
  padding: 50px;
  background-color: #E2D5C3;
  box-shadow: 0px 0px 10px #12e8cb;
  border-radius: 15px;
}
@media screen and (max-width: 1100px) {
  .alredy_pet_content span {
    padding: 10px;
  }
}
@media screen and (max-width: 545px) {
  .alredy_pet_content span {
    width: 100%;
    border-radius: 0;
    font-size: 2.5vh;
    padding: 0;
  }
}

.posts_block_info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D8A7A7;
  background-image: url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.posts_block_info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='100' viewBox='0 0 20 100'%3E%3Cpath fill='%23F0E7DA' d='M0,0 C10,25 10,75 0,100 L20,100 L20,0 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: contain;
}
@media screen and (max-width: 803px) {
  .posts_block_info::before {
    display: none;
  }
}
.posts_block_info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='100' viewBox='0 0 20 100'%3E%3Cpath fill='%23F0E7DA' d='M0,0 C10,25 10,75 0,100 L20,100 L20,0 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: contain;
  transform: rotate(180deg);
}
@media screen and (max-width: 803px) {
  .posts_block_info::after {
    display: none;
  }
}

.information_posts {
  min-height: 90%;
  width: 95%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  width: 450px;
  height: 750px;
  background-color: #EFE8DC;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #EFE8DC;
  position: relative;
}
@media screen and (max-width: 973px) {
  .card {
    width: 100%;
  }
}
.card .image {
  width: 100%;
  height: 30rem;
  display: flex;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.card .image img {
  background-size: cover;
  object-fit: cover;
  height: 100%;
  width: 90%;
  background-position: center;
  border-radius: 10px;
}
.card .i {
  position: absolute;
  width: 90%;
  height: 70%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: justify;
  color: #1A1A1A;
  font-size: 25px;
}
@media screen and (max-width: 915px) {
  .card .i {
    width: 90%;
  }
}
.card .description {
  width: 90%;
  height: 85%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  color: #bbbbbb;
  z-index: 3;
}
@media screen and (max-width: 915px) {
  .card .description {
    width: 90%;
  }
}
.card .description .tir {
  text-align: justify;
  max-height: 15%;
  height: 15%;
  width: 100%;
  display: flex;
  background-color: #E2D5C3;
  overflow-y: auto;
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
  text-align: justify;
  color: #545353;
}
.card .description .tir::-webkit-scrollbar {
  width: 5px;
}
.card .description .tir::-webkit-scrollbar-track {
  background-color: rgb(0, 0, 0);
}
.card .description .tir::-webkit-scrollbar-thumb {
  background-color: #D8A7A7;
  border-radius: 0;
}

.refad {
  position: absolute;
  width: 300px;
  height: 95%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.thisadmin {
  width: 90%;
  color: #1A1A1A;
  background-color: #6A504F;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.thisadmin:hover {
  background-color: rgba(43, 103, 119, 0.8039215686);
}
@media (hover: hover) and (pointer: fine) {
  .thisadmin {
    background-color: #6A504F;
  }
}

.thisadmin span {
  color: #bbbbbb;
  z-index: 4;
  font-size: 25px;
  letter-spacing: 3px;
  transition: 0.3s all ease-in-out;
}
.thisadmin span:hover {
  letter-spacing: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .thisadmin span {
    letter-spacing: 2px;
  }
}

.news_container_inner {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.033) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.033) 1px, transparent 1px), url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
  background-color: #D8A7A7;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.news_container_inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='100' viewBox='0 0 20 100'%3E%3Cpath fill='%23F0E7DA' d='M0,0 C10,25 10,75 0,100 L20,100 L20,0 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: contain;
}
@media screen and (max-width: 803px) {
  .news_container_inner::before {
    display: none;
  }
}
.news_container_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='100' viewBox='0 0 20 100'%3E%3Cpath fill='%23F0E7DA' d='M0,0 C10,25 10,75 0,100 L20,100 L20,0 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: contain;
  transform: rotate(180deg);
}
@media screen and (max-width: 803px) {
  .news_container_inner::after {
    display: none;
  }
}

.news_info {
  width: 90%;
  min-height: 90%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .news_info {
    width: 95%;
  }
}

.jst {
  width: 90%;
  min-height: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .jst {
    width: 100%;
  }
}

.news-card {
  background-color: #EFE8DC;
  width: 100%;
  height: 500px;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 0px 10px #EFE8DC;
  transition: all 0.6s ease-in-out;
}

.ob {
  opacity: 1;
  scale: 1;
}

.h3attr {
  max-height: 70px;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  background-color: #E2D5C3;
  border-radius: 10px;
}
.h3attr h3 {
  padding: 10px;
  color: #1A1A1A;
  font-size: 40px;
}
.h3attr::-webkit-scrollbar {
  width: 5px;
}
.h3attr::-webkit-scrollbar-track {
  background-color: rgb(0, 0, 0);
}
.h3attr::-webkit-scrollbar-thumb {
  background-color: #D8A7A7;
  border-radius: 0;
}

.pattr {
  color: #545353;
  height: 300px;
  overflow-y: hidden;
  background-color: #f7ead6;
  margin-top: 50px;
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
  position: relative;
}
.pattr::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  top: 80%;
  left: 0;
  background-image: linear-gradient(to top, #F0E7DA, rgba(240, 45, 45, 0));
}
.pattr p {
  padding: 10px;
}
.pattr::-webkit-scrollbar {
  display: none;
}

.functionNewsInfo {
  position: absolute;
  top: 90%;
  left: 80%;
  width: 200px;
  height: 40px;
  background-color: #6A504F;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 255, 0.158);
  transition: all 0.3s ease-in-out;
  color: white;
}
.functionNewsInfo:hover {
  scale: 1.04;
}
@media screen and (max-width: 1285px) {
  .functionNewsInfo {
    left: 60%;
  }
}
@media screen and (max-width: 570px) {
  .functionNewsInfo {
    left: 40%;
  }
}
@media screen and (max-width: 380px) {
  .functionNewsInfo {
    left: 5%;
  }
}

.news-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 101;
  background-color: #EFE8DC;
  padding: 2rem;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease;
}
.news-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.news-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}
.news-modal .close-btn:hover {
  color: #c00;
}
.news-modal .news-modal-content {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
}
.news-modal .news-modal-content .modalP {
  position: absolute;
  top: 20%;
  height: 80%;
  background: #E2D5C3;
  padding: 15px;
  border-radius: 15px;
  box-shadow: -5px 0px rgba(0, 0, 255, 0.21);
  overflow-y: auto;
}
.news-modal .news-modal-content .modalTitleH {
  position: absolute;
  width: 90%;
  background-color: #E2D5C3;
  height: 15%;
  border-radius: 15px;
  display: grid;
  place-items: center;
  box-shadow: -5px -5px rgba(0, 0, 255, 0.21);
  overflow-y: auto;
  padding: 5px;
}
.news-modal .news-modal-content h2 {
  font-size: 1.8rem;
  color: #222;
}
.news-modal .news-modal-content .modalParagraph {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.news-modal-overlay.active {
  opacity: 1;
}

.breeder_description {
  background-color: #D8A7A7;
  background-image: url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}
.breeder_description .breder_set {
  background-color: #F3DED3;
  display: flex;
  align-items: flex-start;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 20px;
  max-width: 700px;
  box-shadow: 0px 0px 10px #C8D8E4;
  max-height: 200px;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .breeder_description .breder_set {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.breeder_description .breder_set .breeder_avatar img {
  width: 340px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 0, 0, 0.389);
}
.breeder_description .breder_set .breeder_info h2 {
  color: #1A1A1A;
  margin: 0 0 10px;
  font-size: 40px;
}
.breeder_description .breder_set .breeder_info p {
  color: #545353;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 600px) {
  .breeder_description .breder_set {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-height: none;
  }
  .breeder_description .breder_set .breeder_avatar img {
    width: 120px;
    height: 120px;
  }
  .breeder_description .breder_set .breeder_info h2 {
    font-size: 30px;
  }
  .breeder_description .breder_set .breeder_info p {
    font-size: 20px;
  }
}

.picture_struct {
  width: 100%;
  height: 100vh;
  background-image: url(/images/Qtp3PJdXq9s.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.picture_struct::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background-image: linear-gradient(to bottom, #D8A7A7, rgba(255, 255, 255, 0));
}

.footer {
  background: #D8A7A7;
  color: #1A1A1A;
  padding: 2.5rem 1.5rem;
}
.footer .footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer .footer__logo h3 {
  max-height: 60px;
  font-size: 40px;
}
.footer .footer__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
.footer .footer__quote-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer .footer__quote-block .footer__quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #1A1A1A;
  padding-left: 1rem;
}
.footer .footer__quote-block .footer__cta-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #6A504F;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 100;
}
.footer .footer__quote-block .footer__cta-button:hover {
  background-color: #876665;
}
.footer .footer__location {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 1rem;
}
.footer .footer__location .footer__region {
  color: #1A1A1A;
}
.footer .footer__location .footer__city {
  font-weight: bold;
  color: #1A1A1A;
}
.footer .footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer .footer__socials .footer__vk-link {
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
.footer .footer__socials .footer__vk-link::before {
  content: "🔗";
  margin-right: 0.4rem;
}
.footer .footer__socials .footer__vk-link:hover {
  color: #876665;
}
@media (max-width: 768px) {
  .footer .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer__quote {
    font-size: 1rem;
  }
  .footer .footer__cta-button {
    font-size: 0.95rem;
  }
}

.maine-coon-quote {
  background-color: #D8A7A7;
  background-image: url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
  padding: 3rem 2rem;
}
.maine-coon-quote__container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #F3DED3;
  border-left: 6px solid #d0d0d0;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.maine-coon-quote__text {
  font-size: 18px;
  line-height: 1.7;
  color: #545353;
  margin-bottom: 1.5rem;
  font-style: italic;
}
@media screen and (max-width: 500px) {
  .maine-coon-quote__text {
    font-size: 20px;
  }
}

.maine-coon {
  background-color: #D8A7A7;
  background-image: url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
  padding: 4rem 2rem;
  font-family: "Segoe UI", sans-serif;
}
.maine-coon__container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background: #F3DED3;
  padding: 2rem;
}
.maine-coon__title {
  text-align: center;
  font-size: 40px;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.maine-coon__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.maine-coon__image {
  flex: 1 1 300px;
  z-index: 10;
}
.maine-coon__image img {
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.maine-coon__info {
  flex: 1 1 300px;
}
.maine-coon__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.maine-coon__info ul li {
  background-color: #EFE8DC;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  box-shadow: inset 0 0 0 1px #eaeaea;
  transition: background 0.3s;
}
.maine-coon__info ul li:hover {
  background: #f0f0f0;
}
.maine-coon__info ul li strong {
  display: block;
  color: #545353;
}

.focusOnThisSection {
  background-color: #D8A7A7;
  width: 100%;
  height: 80vh;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.033) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.033) 1px, transparent 1px);
  background-size: 40px 40px;
  display: grid;
  place-items: center;
}

.focusOnImages {
  width: 90%;
  height: 90%;
  background-image: url(/images/acent.png);
  background-position: center;
  background-size: cover;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.177);
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 1270px) {
  .focusOnImages {
    width: 95%;
    height: 95%;
  }
}
.focusOnImages::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 18%;
  top: 82%;
  background-image: linear-gradient(to top, #D8A7A7, rgba(216, 167, 167, 0.8078431373), transparent);
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (max-width: 1030px) {
  .focusOnImages::after {
    height: 30%;
    top: 70%;
  }
}

.section {
  padding: 60px 20px;
  background-color: #D8A7A7;
  color: #333;
  font-family: "Arial", sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.033) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.033) 1px, transparent 1px), url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
}
.section .section-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F3DED3;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section .section-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.section .text-content {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  padding: 30px;
  background-color: #EFE8DC;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.section .text-content h2 {
  font-size: 30px;
  font-weight: bold;
  color: #1A1A1A;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
  border-bottom: 3px solid #B6A6CA;
}
@media screen and (max-width: 500px) {
  .section .text-content h2 {
    font-size: 23px;
  }
}
.section .text-content h2:hover {
  border-bottom: 3px solid #ff4500;
}
.section .text-content p {
  font-size: 18px;
  color: #545353;
}
@media screen and (max-width: 500px) {
  .section .text-content p {
    font-size: 20px;
  }
}
.section .image-content {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
}
.section .image-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}
.section .image-content img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .section .section-content {
    flex-direction: column;
    text-align: center;
  }
  .section .text-content {
    max-width: 100%;
    padding: 20px;
  }
  .section .image-content {
    max-width: 80%;
  }
}

.new-block {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #EFE8DC;
  z-index: 101;
  padding: 20px;
  opacity: 0;
  scale: 0.5;
  transition: all 0.8s;
}
@media screen and (max-width: 850px) {
  .new-block {
    padding: 0;
  }
}
.new-block .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}
@media screen and (max-width: 850px) {
  .new-block .close-btn {
    top: 5px;
    right: 5px;
  }
}
.new-block .close-btn:hover {
  color: #ff6f61;
}

.srcGenerator {
  position: absolute;
  max-width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .srcGenerator {
    max-width: 100%;
    width: 100%;
    height: 50%;
    top: 50%;
    overflow: hidden;
  }
}
.srcGenerator img {
  border-radius: 10px;
}
@media screen and (max-width: 850px) {
  .srcGenerator img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 0;
  }
}

.generatorMainBlock {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .generatorMainBlock {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.generatorBlock {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .generatorBlock {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
}

.gn {
  width: 90%;
  height: 70%;
  display: flex;
  justify-content: center;
  background-color: #F3DED3;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 850px) {
  .gn {
    width: 100%;
    height: 50%;
    border-radius: 0;
  }
}

.titleGenerator {
  position: absolute;
  width: 90%;
  height: 50px;
  top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow-y: auto;
  background-color: #E2D5C3;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 255, 0.073);
}

.descGenerator {
  position: absolute;
  top: 100px;
  width: 90%;
  height: 60%;
  background-color: #E2D5C3;
  box-shadow: 0px 0px 10px rgba(0, 0, 255, 0.073);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}

.thisfunction {
  position: absolute;
  top: 80%;
  width: 70%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6A504F;
  color: #EFE8DC;
  font-size: 25px;
  text-decoration: underline;
  border-radius: 15px;
  transition: all 0.4s ease-in-out;
  color: white;
}
.thisfunction:hover {
  scale: 1.02;
}
@media screen and (max-width: 850px) {
  .thisfunction {
    width: 60%;
    height: 40px;
    top: 85%;
    font-size: 18px;
  }
}

.history-wrapper {
  width: 100%;
  background-color: #D8A7A7;
  background-image: url(/images/wild-fun-animal-paw-print-pattern-background-design-vector.png);
}

.history-block-description {
  max-width: 960px;
  margin: 3rem auto;
  padding: 2.5rem;
  background-color: #F3DED3;
  border-radius: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #f2e7da;
}
.history-block-description .title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1A1A1A;
  text-align: center;
  position: relative;
}
.history-block-description .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #cfa373;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.history-block-description .block {
  background: #EFE8DC;
  border-radius: 1.2rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border-left: 6px solid #d6aa84;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
}
.history-block-description .block h3 {
  font-size: 1.6rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.history-block-description .block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #545353;
  margin-bottom: 0.8rem;
}
.history-block-description .block .quote {
  font-style: italic;
  color: #1A1A1A;
  padding-left: 1rem;
  border-left: 3px solid #d6aa84;
  margin-top: 0.5rem;
}
.history-block-description .timeline .event {
  background: #fdf7f0;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  border-left: 4px solid #c98a60;
  border-radius: 0.8rem;
  position: relative;
}
.history-block-description .timeline .event::before {
  content: "📍";
  position: absolute;
  left: -2rem;
  top: 1rem;
  font-size: 1.2rem;
}
.history-block-description .timeline .event strong {
  display: block;
  font-weight: bold;
  color: #7b3e1d;
  margin-bottom: 0.3rem;
}/*# sourceMappingURL=style.css.map */