html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  transition: transform 1s ease-out;
  transform: translateX(0);
}
.no_scroll {
  overflow: hidden;
}
.item_wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.slide {
  transform: translateX(-100%);
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 60px;
  margin-top: 30px;
}

h1,
h2,
h3,
p {
  margin: 0;
}
a {
  text-decoration: none;
}
/* !todo NAV + LOGO__________________________________________________________________________________ */
.logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 186px;
  height: 60px;
}
.general_title {
  color: #545454;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0.06em;
}
.sub_title {
  color: #292929;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.1em;
}
.head_container {
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  width: 100%;
  margin: 0 auto;
}
.nav_container {
  display: flex;
  justify-content: space-between;
  width: 443px;
  height: 27px;
}
.menu_item {
  list-style: none;
}
.menu_item a {
  display: block;
  height: 24px;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #545454;
  transition: border-bottom 0.5s ease-out;
}
.menu_item a:hover {
  color: #292929;
  transition: all 0.5s;
  border-bottom: 3px solid #f1cdb3;
  opacity: 1;
}
.current_menu {
  color: #292929;
  transition: all 0.5s;
  border-bottom: 3px solid #f1cdb3;
  opacity: 1;
  pointer-events: none;
  cursor: default;
}
.burger {
  cursor: pointer;
  display: none;
  transition: all 1s;
}
.b_active {
  transform: rotate(90deg);
  transition: all 0.5s;
}
.b_active path{
  fill: #F1CDB3;
  transition: all 1s;
}
/* !todo NAV + LOGO______________________________________________END____________________________________ */
/* !PETS_________________________________________________________________________________________________ */

.friends_title {
  position: relative;
  top: 30px;
  width: 400px;
  height: 90px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pets_container {
  background: #f6f6f6;
  height: 1342px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.cards_container {
  position: relative;
  bottom: 10px;
  width: 1200px;
  height: 900px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 40px;
}
.item_container {
  cursor: pointer;
  background: #fafafa;
  border-radius: 9px;
  width: 270px;
  height: 435px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}
.item_container:hover {
  background: #ffffff;
  transition: all 0.5s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.name {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.06em;
  color: #545454;
}
.learn_more {
  margin-bottom: 28px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 187px;
  height: 52px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #292929;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  transition: all 0.5s;
  background: linear-gradient(to right, #fddcc4 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.learn_more:hover {
  transition: all 0.5s;
  background-position: left bottom;
  border: 2px solid #fddcc4;
}
.navigation {
  position: relative;
  bottom: 52px;
  display: flex;
  justify-content: space-between;
  width: 340px;
  height: 52px;
}
.button_right {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
}
.left,
.double_left,
.button_number,
.right,
.right_double {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #292929;
  transition: all 0.5s;
  background: linear-gradient(to right, #fddcc4 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.left:hover,
.double_left:hover,
.right:hover,
.right_double:hover {
  background-position: left bottom;
  border: 2px solid #fddcc4;
  cursor: pointer;
}

.left {
  transform: rotate(180deg);
}
.double_left {
  transform: rotate(180deg);
}
.button_number {
  background: #f1cdb3;
}
.unactive {
  cursor: no-drop;
  pointer-events: none;
  border: 2px solid #cdcdcd;
}
/* !Mesto popaaaaaaaaaaaaaaaaaaaaaaaaaapaaaaaaa */
.popup {
  display: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 95%;
  background: rgba(41, 41, 41, 0.6);
}
.active {
  display: block;
}
.popup_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  left: 50%;
  top: calc(25%);
  margin-left: -450px;
  margin-top: -276px;
  height: 552px;
  width: 900px;
}
.button_krest {
  position: relative;
  left: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  transition: all 0.5s;
  background: linear-gradient(to right, #fddcc4 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.button_krest:hover {
  background-position: left bottom;
  border: 2px solid #fddcc4;
}
.popup_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 900px;
  height: 500px;
  background: #fafafa;
  border-radius: 9px;
}
.popup_container > img {
  width: 500px;
  height: 500px;
}
.pet_information {
  width: 351px;
  height: 362px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pet_information li {
  margin-bottom: 10px;
}
#pet_name {
  margin-bottom: 10px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #000000;
}

#breed {
  margin-bottom: 20px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #000000;
}
#pet_description {
  margin-bottom: 10px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #000000;
}
#pet_params {
  margin: 0;
  padding-left: 20px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #000000;
}
#pet_params ::marker {
  color: #f1cdb3;
}
.bolded_span {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #000000;
}
#age {
}
#inoculations {
}
#diseases {
}
#parasites {
}
/* ? poput ends______________________________________ */
/* ?PET__________________________________________________________________END_________________ */
/* TODO FOOOOOOOOTERRRRRRRRRRRRRRRRR__________________ */
footer {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 350px;
  background: url(assets/icons/noise_transparent@2x.png),
    radial-gradient(110.67% 538.64% at 5.73% 50%, #513d2f 0%, #1a1a1c 100%),
    #211f20;
}
.sections_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 310px;
}
.sections_wrapper img {
}
.questions,
.waiting {
  position: relative;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 234px;
}
.questions a {
  width: 251px;
}
.waiting {
  position: relative;
  right: 10px;
}
.questions a,
.waiting a {
  display: flex;
  justify-content: space-between;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #f1cdb3;
}
.questions a:hover,
.waiting a:hover {
  color: #fddcc4;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  transition: all 0.5s;
}
.questions h3 {
  width: 278px;
  height: 90px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  letter-spacing: 0.05em;
  line-height: 130%;
  color: #ffffff;
}
.waiting h3 {
  width: 270px;
  height: 90px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.street {
  position: relative;
  left: 17px;
  width: 260px;
  height: 46px;
}
#london {
  position: relative;
  top: 4px;
  right: 10px;
}
#number {
  position: relative;
  top: 3px;
  right: 10px;
}
/* !______________________________________________adaptive__________________________ */
@media (max-width: 1279px) {
  .head_container {
    width: 100%;
  }
  .friends_title {
    margin-top: 80px;
    top: 0;
  }
  header {
    margin-bottom: 60px;
    width: 92.1875%;
  }
  .pets_container {
    height: 1733px;
    width: 100%;
    justify-content: flex-start;
  }
  .cards_container {
    margin-top: 30px;
    bottom: 0;
    height: 1365px;
    width: 100%;
    justify-content: center;
  }
  .cards_container div:nth-child(7),
  div:nth-child(8) {
    display: none;
  }
  .navigation {
    margin-top: 40px;
    bottom: 0px;
  }
  .popup_wrapper {
    left: 50%;
    width: 630px;
    margin-left: -315px;
    margin-top: -175px;
  }
  .popup_container {
    width: 630px;
    height: 350px;
  }
  .popup_container > img {
    width: 350px;
    height: 350px;
  }
  .pet_information {
    width: 260px;
    height: 303px;
  }
  .pet_information li {
    margin-bottom: 5px;
  }
  #pet_description {
    font-size: 13px;
  }
  .friends_container {
    width: 100%;
  }
  /* !FOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO */
  footer {
    height: 639px;
    width: 100%;
  }
  .sections_wrapper {
    width: 90%;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 65px;
    height: 609px;
  }
  .questions a,
  .waiting a {
    align-items: center;
  }
  .questions,
  .waiting {
    bottom: 0;
  }
  .waiting {
    right: 12px;
  }
  .questions {
    left: -5px;
  }
  #london {
    top: 0;
  }
  #number {
    top: 0;
    right: 12px;
  }
}
@media (max-width: 767px) {
  .popup_wrapper {
    left: 50%;
    top: 10%;
    width: 240px;
    height: 393px;
    margin-left: -135px;
    margin-top: -197px;
  }
  .popup_container {
    width: 240px;
    height: 350px;
  }
  .popup_container > img {
    display: none;
  }
  .pet_information {
    width: 220px;
    height: 321px;
  }
  .pet_information li {
    margin-bottom: 5px;
  }
  #pet_description {
    font-size: 13px;
  }
  .shadow_nav {
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 41, 0.6);
  }
  nav {
    display: block;
    position: absolute;
    top: 0;
  }
  .nav_container {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0px;
    right: -320px;
    width: 320px;
    height: 823px;
    background: #292929;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav_on{
    animation: nav-on;
    animation-duration: 1s;
  }
  .nav_off{
    animation: nav-off;
    animation-duration: 1s;
  }
  .nav_unactive{
    display: none;
  }
  .nav_act{
    right: 0px;
  }
  @keyframes nav-on {
    from {
      right: -320px;
    }
    to {
      right: 0px;
    }
  }
  @keyframes nav-off {
    from {
      right: 0px;
    }
    to {
      right: -320px;
    }
  }
  .item_wrapper {
    flex-direction: column;
    align-items: center;
    width: 243px;
    height: 327px;
  }
  .menu_item {
    width: 243px;
  }
  .menu_item > a {
    height: 40px;
    display: flex;
    justify-content: center;
    font-family: "Arial";
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 160%;
    color: #cdcdcd;
  }
  .menu_item> a:hover{
    color: #FAFAFA;
  }
  .burger:hover {
    cursor: pointer;
  }
  .burger {
    z-index: 2;
    transition: all 0.5s;
    display: block;
  }
  header {
    width: 87.5%;
    margin-bottom: 0px;
  }
  nav {
    display: none;
  }
  .burger:hover {
    cursor: pointer;
  }
  .burger {
    transition: all 0.5s;
    display: block;
  }
  /* !PETS_______________________________________CARDS */
  .pets_container {
    height: 1649px;
  }
  .cards_container {
    margin-top: 42px;
  }
  .cards_container > div:nth-child(4),
  div:nth-child(5),
  div:nth-child(6) {
    display: none;
  }
  .navigation {
    margin-top: 42px;
  }
  .navigation div {
    display: flex;
  }
  .friends_title {
    width: 100%;
    height: 62px;
    margin-top: 42px;
    font-size: 1.5625rem;
  }
  .navigation {
    width: 93.75%;
    max-width: 340px;
  }

  /* !FOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO */
  footer {
    height: 809px;
  }
  .questions a,
  .waiting a {
    align-items: center;
  }

  .questions h3,
  .waiting h3 {
    width: 92.666%;
    height: 64px;
    text-align: center;
    font-size: 25px;
  }
  .footer_pies {
    width: 260px;
    height: 269px;
  }
  .sections_wrapper {
    width: 93.75%;
    row-gap: 0px;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    height: 779px;
  }
  .questions {
    left: 0;
    width: 92.666666666%;
    height: 208px;
    align-items: center;
  }
  .waiting {
    align-items: center;
    height: 222px;
    right: 0;
    width: 92.666666666%;
  }
  .waiting a {
    width: 300px;
  }
  .street {
    left: 0;
  }
  #london {
    top: 0;
    right: 0;
    margin-right: 30px;
  }
  #number {
    top: 0;
    right: 6px;
  }
}
