@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

.container {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
}
body {
  width: 100%;
  overflow-x: hidden;
  background: #f4f4f4;
}
.outline__photo{
  outline: 1px solid #355efe;
}

/* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */
/* header */ /* header */ /* header */
.header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
h2 {
  color: #222;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header__logo,
.footer__left h2 {
  cursor: pointer;
}
.header__right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header__bottom {
  display: flex;
  justify-content: flex-end;
  max-width: 700px;
  width: 100%;
  margin-top: 15px;
}
.header__info,
.header__info_number {
  color: var(--black, #222);
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: 15px;
}
.header__info {
  display: inline-block;
}
.header__info_number {
  color: var(--accent, #355efe);
  font-weight: 600;
}
.header__burger {
  position: relative;
  top: -8px;
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.header__burger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__input {
  margin-right: 10px;
  display: inline-block;
  position: relative;
}
.header input {
  padding: 8px 35px 8px 15px;
  border-radius: 10px;
  border: 1px solid var(--accent, #355efe);
  color: var(--grey, #5c5c5c);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header__search {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.header a {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  border-radius: 30px;
}
.header__catalog {
  max-width: 165px;
  width: 100%;
  margin-right: 10px;
  padding: 10px 50px;
  color: var(--black, #222);
  border: 1px solid var(--black, #222);
  transition: all 0.5s ease;
}
.header__cart {
  max-width: 165px;
  width: 100%;
  background: var(--accent, #355efe);
  padding: 10px 20px 10px 40px;
  color: var(--white, #fff);
  position: relative;
  transition: all 0.5s ease;
}
.header__catalog:hover {
  color: white;
  background: var(--black, #222);
}
.header__cart:hover {
  background: #fff;
  color: var(--accent, #355efe);
  outline: 1px solid var(--accent, #355efe);
}
.header__cart:hover::before {
  background-image: url("../img/header/basket-hover.svg");
}
.header__cart::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 7px;
  width: 25px;
  height: 25px;
  background-image: url("../img/header/basket.svg");
  object-fit: cover;
  transition: all 0.5s ease;
}
.header__right_tablet {
  display: none;
}
@media (max-width: 870px) {
  .header .container {
    align-items: center;
    gap: 30px;
  }
  .header__right {
    display: none;
  }
  .header__right_tablet {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }
  .header__right_tablet .header__bottom a{
    max-width: 1000px;
width: 100%;
  }
  .header__right_tablet .header__bottom a{
width: 50%;
  }
  .header__top {
    width: 100vw;
    position: absolute;
    top: 10px;
    text-align: end;
    margin-bottom: 20px;
  }
  .header__middle {
    margin-top: 40px;
    display: flex;
    width: 100%;
  }
  .header__middle input,
  .header__input {
    width: 100%;
  }
  .header__bottom {
    display: flex;
    width: 100%;
  }
  .header__bottom a {
    width: 50%;
  }
  .header__burger {
    top: 4px;
  }
}
@media (max-width: 640px) {
  .header__top {
    display: none;
  }
  .header__middle {
    margin-top: 0px;
  }
}
@media (max-width: 570px) {
  .header__top {
    display: none;
  }
  .header__middle {
    margin-top: 0px;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .header__right_tablet {
    width: 100%;
  }
}
/* header */ /* header */ /* header */

/* intro */ /* intro */ /* intro */
.intro {
  margin-top: 50px;
}
.intro__catalog {
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  .intro__catalog {
    margin-bottom: 20px;
  }
}
.intro .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.intro__left {
  position: relative;
  max-width: 540px;
  min-width: 330px;
}
.intro__left_wrapper{
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.left__items{
  display: flex;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.left__item{
  flex-shrink: 0;
  flex-grow: 0;
  padding: 50px 25px;
  width: 100%;
  height: 100%;  
  background: var(--lite-blue, #dce6ff);
}
.intro__right {
  overflow: hidden;
  max-height: 500px;
  max-width: 500px;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  border: 2px solid var(--accent, #355efe);
}
.intro__wrapper{
  height: 100%;
  display: flex;
  transition: all 0.5s ease;
}
.intro__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(0);
}
.intro h3 {
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
.intro__subtitle {
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.intro__button {
  padding: 10px 50px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Inter Tight;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 30px;
  background: var(--accent, #355efe);
  transition: all 0.5s ease;
}
.intro__button:hover {
  color: var(--white, #355efe);
  background: var(--accent, #fff);
  outline: 1px solid #355efe;
}
.intro__dots {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: -50px;
  right: 50%;
  transform: translateX(50%);
}
.intro__dot {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  border: 2px solid var(--accent, #355efe);
  cursor: pointer;
}
.intro__dot_active {
  background: var(--accent, #355efe);
}
@media (max-width: 900px) {
  .left__item {
    position: relative;
    padding: 25px 25px;
  }
  .intro h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .intro__dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: -50px;
    left: 0;
    transform: translateX(0%);
  }
  .intro__right {
    max-width: 332px;
    max-height: 255px;
  }
}
@media (max-width: 640px) {
  .intro__left {
    max-width: 500px;
    width: 100%;
    margin-bottom: 60px;
  }
  .intro__dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: -50px;
  }
  .intro__right {
    max-width: 332px;
    max-height: 255px;
  }
  .intro .container {
    flex-direction: column-reverse;
  }
  .intro__right {
    max-width: 500px;
    width: 100%;
  }
  .intro__dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: -50px;
    right: 50%;
    transform: translateX(80%);
  }
  .intro__button {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .intro__dots {
    transform: translateX(75%);
  }
}
/* intro */ /* intro */ /* intro */

/* categories */ /* categories */ /* categories */
.categories {
  margin-bottom: 50px;
}
.categories h2 {
  margin-bottom: 20px;
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.categories__items,
.news__items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.item {
  width: 255px;
  height: 375px;
}
.item__bg {
  overflow: hidden;
  width: 100%;
  height: 255px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.item__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item__title {
  margin-bottom: 10px;
  color: var(--black, #222);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.item__subtitle {
  margin-bottom: 10px;
  color: var(--black, #222);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.item__button {
  width: 100%;
  padding: 10px 0 10px 0;
  border-radius: 30px;
  background: var(--accent, #355efe);
  color: var(--white, #fff);
  text-align: center;
  font-family: Inter Tight;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.item__button:hover {
  background: var(--accent, #fff);
  color: var(--white, #355efe);
  outline: 1px solid #355efe;
}
@media (max-width: 768px) {
  .categories__item {
    max-height: 450px;
    max-width: 330px;
    width: 100%;
    height: 100%;
  }
  .item__bg {
    max-height: 382px;
    max-width: 355px;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .categories__item {
    max-height: 375px;
    max-width: 290px;
    width: 100%;
    height: 100%;
  }
  .item__bg {
    max-height: 255px;
    max-width: 290px;
    width: 100%;
    height: 100%;
  }
}
/* categories */ /* categories */ /* categories */

/* about */ /* about */ /* about */
.about {
  margin-bottom: 50px;
  padding: 100px 0;
  background: var(--lite-blue, #dce6ff);
}
.about__button {
  padding: 10px 40px;
  margin-bottom: 30px;
  color: var(--accent, #355efe);
  font-family: Inter Tight;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 50px;
  border: 1px solid var(--accent, #355efe);
  background: none;
  transition: all 0.5s ease;
}
.about__button:hover {
  color: var(--accent, #fff);
  border: 1px solid var(--accent, #fff);
  background: #355efe;
}
.about__p {
  margin-bottom: 20px;
  color: var(--grey, #5c5c5c);
  font-family: Roboto;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
.about__p_1 {
  margin-bottom: 30px;
  font-size: 35px;
}
.about__a {
  color: var(--accent, #355efe);
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 768px) {
  .about {
    margin-bottom: 50px;
    padding: 50px 0;
  }
}
@media (max-width: 600px) {
  .about__button {
    width: 100%;
    font-size: 24px;
  }
  .about__p_1 {
    margin-bottom: 30px;
    font-size: 25px;
  }
}
/* about */ /* about */ /* about */

/* advantages */ /* advantages */ /* advantages */
.advantages {
  margin-bottom: 60px;
}
.advantages h2 {
  margin-bottom: 30px;
}
.advantages__items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.advantages__item {
  padding: 30px 54px;
  width: 255px;
  height: 278px;
  border-radius: 15px;
  border: 1px solid var(--accent, #355efe);
  transition: all 0.5s ease;
}
.advantages__item:hover {
  background:#355efe;
}
.advantages__item:hover .advantages__subtitle, .advantages__item:hover .advantages__title{
  color: white;
}
.advantages__bg {
  margin: 0 auto;
  margin-bottom: 25px;
  width: 100px;
  height: 100px;
}
.advantages__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advantages__title {
  margin-bottom: 15px;
  color: var(--accent, #355efe);
  font-family: Inter Tight;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  transition: all 0.5s ease;
}
.advantages__subtitle {
  color: var(--accent, #355efe);
  font-family: Inter Tight;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  transition: all 0.5s ease;
}
@media (max-width: 860px) {
  .advantages__item {
    max-width: 330px;
    min-height: 278px;
    width: 100%;
    height: 100%;
  }
  .advantages h2 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .advantages__item {
    max-width: 290px;
    min-height: 254px;
    width: 100%;
    height: 100%;
  }
  .advantages h2 {
    font-size: 28px;
  }
}
/* advantages */ /* advantages */ /* advantages */

/* form */ /* form */ /* form */
.form {
  margin-bottom: 60px;
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
}
.form .container {
  padding: 35px;
  display: flex;
  justify-content: space-between;
  border-radius: 15px;
  background: var(--lite-blue, #dce6ff);
  gap: 30px;
}
.form__left {
  max-width: 462px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form__right {
  max-width: 528px;
  width: 100%;
}
.form h3 {
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.form__subtitle {
  color: var(--black, #222);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.form label {
  margin-bottom: 10px;
  color: var(--accent, #355efe);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.form__name input,
.form__tel input {
  margin-top: 10px;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  padding: 10px 15px;
  color: var(--grey, #5c5c5c);
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 10px;
  border: 1px solid var(--accent, #355efe);
  background: none;
}
.form__checkbox {
  margin-bottom: 20px;
}
.checkbox__p {
  display: inline;
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.checkbox__p a {
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}
.form__button {
  width: 100%;
  padding: 10px 50px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Inter Tight;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 30px;
  background: var(--accent, #355efe);
  transition: all 0.5s ease;
}
.form__button:hover {
  color: var(--white, #355efe);
  background: var(--accent, #fff);
  outline: 1px solid #355efe;
}

.checkbox.style-d {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-d input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark {
  background-color: #dce6ff;
  border: 2px solid var(--accent, #355efe);
}
.checkbox.style-d input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-d:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-d:hover input:checked ~ .checkbox__checkmark {
  background-color: #dce6ff;
}
.checkbox.style-d:hover input ~ .checkbox__body {
  color: #dce6ff;
}
.checkbox.style-d .checkbox__checkmark {
  position: absolute;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-d .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #355efe;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-d .checkbox__body {
  color: #fffaf5;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}
@media (max-width: 900px) {
  .form .container {
    flex-direction: column;
  }
  .form__left {
    max-width: 480px;
    width: 100%;
  }
  .form__name,
  .form__tel,
  .form__right {
    max-width: 1000px;
    width: 100%;
  }
  .checkbox.style-d {
    margin-bottom: 20px;
  }
  .form h3 {
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .form {
    margin-bottom: 30px;
  }
  .form .container {
    padding: 15px;
  }
  .form h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
/* form */ /* form */ /* form */

/* news */ /* news */ /* news */
.news {
  margin-bottom: 50px;
}
.news h2 {
  margin-bottom: 50px;
}
.news .item {
  width: 255px;
  height: 403px;
}
.item__suptitle {
  margin-bottom: 10px;
  color: var(--grey, #5c5c5c);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 864px) {
  .news h2 {
    font-size: 40px;
  }
  .news .item {
    max-width: 330px;
    max-height: 478px;
    width: 100%;
    height: 100%;
  }
  .news .item__bg {
    max-width: 330px;
    max-height: 427px;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 550px) {
  .news h2 {
    font-size: 28px;
  }
  .news .item {
    margin-right: 20px;
    max-width: 100vw;
    max-height: 438px;
    width: 100%;
    height: 100%;
  }
  .news .item__button {
    max-width: 290px;
  }
  .news .item__bg {
    max-width: 290px;
    max-height: 290px;
    width: 100%;
    height: 100%;
  }
}
/* news */ /* news */ /* news */

/* contacts */ /* contacts */ /* contacts */
.container.contacts {
  margin-bottom: 100px;
}
.contacts__wrapper {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lite-blue, #dce6ff);
  border-radius: 15px;
  gap: 37px;
}
.contacts__left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contacts__right {
  max-width: 573px;
  height: 273px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.contacts__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts h3 {
  margin-bottom: 30px;
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.contacts .header__info {
  margin-bottom: 15px;
}
@media (max-width: 800px) {
  .contacts__wrapper {
    flex-direction: column;
  }
  .contacts__left {
    width: 100%;
    align-self: flex-start;
  }
  .contacts__right {
    max-width: 1000px;
  }
  .container.contacts {
    margin-bottom: 50px;
  }
  .news {
    margin-bottom: 0px;
  }
}
@media (max-width: 500px) {
  .contacts__wrapper {
    padding: 15px;
  }
  .header__info {
    text-align: left;
  }
}
/* footer */ /* footer */ /* footer */
.footer {
  padding: 100px 0;
  background: var(--lite-blue, #dce6ff);
}
.footer h2 {
  font-size: 65px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
.footer__left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer__subtitle {
  margin-top: 5px;
  color: var(--black, #222);
  text-align: center;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer__title {
  color: var(--black, #222);
  text-align: center;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
.footer__socials {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.footer__social {
  transition: all 0.5s ease;
}
.footer__social:hover {
  transform: scale(1.1);
}
.footer__link {
  color: #652597;
  text-align: center;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
  }
  .footer__left {
    margin-bottom: 50px;
  }
  .footer__title {
    text-align: left;
  }
  .footer .container {
    padding: 20px 100px;
  }
}
@media (max-width: 524px) {
  .footer .container {
    padding: 20px;
  }
}
/* footer */ /* footer */ /* footer */
/* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */ /* MAIN */

/* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */
/* path */ /* path */ /* path */
.path {
  margin-bottom: 20px;
}
.path a,
.path span {
  margin-right: 5px;
  color: var(--grey, #5c5c5c);
  font-family: Inter Tight;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.path a {
  text-wrap: nowrap;
}
a.path__active {
  color: var(--black, #222);
}
/* path */ /* path */ /* path */

/* catalog */ /* catalog */ /* catalog */
.catalog {
  margin-bottom: 50px;
}
.catalog .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.catalog__left {
  width: 255px;
  flex-shrink: 0;
}
.catalog__left h3 {
  margin-bottom: 15px;
  color: #000;
  font-family: Inter Tight;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.catalog__lists {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog__list {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background: var(--lite-blue, #dce6ff);
  box-shadow: 0px 4px 6px 0px rgba(184, 184, 184, 0.6);
  color: var(--accent, #355efe);
  font-family: Inter Tight;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: all 0.5s ease;
}
.catalog__list:hover {
  background: var(--lite-blue, #355efe);
  color: var(--accent, #dce6ff);
}
.catalog__list_active {
  color: var(--bg, #f4f4f4);
  background: var(--accent, #355efe);
}
.catalog__right .categories__items {
  margin-bottom: 50px;
}
.catalog__right h2 {
  margin-bottom: 20px;
  text-align: left;
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.__select {
  display: none;
}
.select-wrapper{
  display: none !important;
}
@media (max-width: 865px) {
  .select-wrapper{
    display: block !important;
  }
  .catalog .container {
    flex-direction: column;
  }
  div.catalog__lists {
    display: none;
  }
  .__select {
    display: block;
  }
  .catalog__left {
    width: 100%;
  }
  .catalog__right .categories__items {
    margin-bottom: 30px;
  }
}
@media (max-width: 730px) {
  .catalog__right .categories__items {
    margin-bottom: 40px;
  }
  .categories__item {
    max-width: 290px;
    max-height: 375px;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 650px) {
  .categories__item {
    max-width: 290px;
    max-height: 375px;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }
  .catalog .about__p.about__p_1 {
    font-size: 25px;
  }
  .catalog {
    margin-bottom: 0px;
  }
}
/* catalog */ /* catalog */ /* catalog */
/* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */ /* CATALOG */

/* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */ /* ITEM */
/* product */ /* product */ /* product */
.product {
  margin-top: -20px;
  margin-bottom: 30px;
}
.product .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.product__left,
.product__right {
  max-width: 540px;
  width: 100%;
}
.product__left {
  max-width: 540px;
  min-width: 330px;
  width: 100%;
}
.product__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__photo-main {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
.photo__left{
  position: absolute;
  width: 50px;
height: 50px;
background-image: url('../img/product/svg/arrow-next-svgrepo-com.svg');
background-size:cover;
left: 0;
top: 50%;
transform: translateY(-50%) rotate(180deg);
cursor: pointer;
}
.photo__right {
  position: absolute;
width: 50px;
height: 50px;
background-image: url('../img/product/svg/arrow-next-svgrepo-com.svg');
background-size:cover;
right: 0;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.product__photos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.product__photo {
  max-width: 160px;
  max-height: 160px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.product__right {
  display: flex;
  flex-direction: column;
}
.product__right .characteristic__property {
  width: auto;
  margin-right: 10px;
}
.product__right h3 {
  margin-bottom: 20px;
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.product__right h4 {
  margin-bottom: 10px;
  color: var(--accent, #355efe);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product__prices {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.product_new {
  padding: 10px 30px;
  color: var(--accent, #355efe);
  font-family: Inter Tight;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 30px;
  border: 2px solid var(--accent, #355efe);
  transition: all 0.5s ease;
}
.product_new:hover {
  color: var(--accent, #fff);
  background:var(--accent, #355efe);
}
.product__old {
  color: var(--grey, #5c5c5c);
  font-family: Inter Tight;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: line-through;
}
.product__quantity {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}
.product__quantity button {
  padding: 10px 50px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Inter Tight;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 30px;
  background: var(--accent, #355efe);
  transition: all .5s ease;
}
.product__quantity button:hover {
  color: var(--white, #355efe);
  background: var(--accent, #fff);
  outline: 1px solid #355efe;
}
.product__quantity input {
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--accent, #355efe);
  padding: 10px 45px;
  color: var(--grey, #5c5c5c);
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product__input {
  position: relative;
}
.product__minus,
.product__plus {
  position: absolute;
  top: 10px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.product__minus {
  left: 10px;
  background-image: url("../img/product/svg/minus.svg");
}
.product__plus {
  right: 10px;
  background-image: url("../img/product/svg/plus.svg");
}
@media (max-width: 890px) {
  .product__quantity {
    flex-direction: column;
  }
  .product__quantity input {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .product .container {
    flex-direction: column;
    align-items: center;
  }
  .product__prices {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .product_new {
    width: 100%;
    text-align: center;
  }
  .product {
    margin-top: 0px;
    margin-bottom: -10px;
  }
  .path {
    margin-bottom: 0px;
  }
}
@media (max-width: 600px) {
  .contacts__item {
    display: none;
  }
  .product__photo{
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 500px) {
  .contacts__item {
    display: none;
  }
  .product__photo{
    width: 100px;
    height: 100px;
  }
}
/* product */ /* product */ /* product */

/* description */ /* description */ /* description */
.description {
  margin-bottom: 30px;
}
.description p {
  color: var(--grey, #5c5c5c);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
/* description */ /* description */ /* description */

/* characteristic */ /* characteristic */ /* characteristic */
.characteristic {
  margin-bottom: 40px;
}
.characteristic h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #000;
  font-family: Inter Tight;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.characteristics {
  padding: 30px;
  border-radius: 15px;
  background: var(--lite-blue, #dce6ff);
}
.characteristic__properties {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(53, 94, 254, 0.3);
  margin-bottom: 15px;
  display: flex;
}
.characteristics__tablet .characteristic__properties:last-child {
  margin-bottom: 0;
}
.characteristic__property {
  width: 200px;
  color: var(--grey, #5c5c5c);
  font-family: Inter Tight;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  flex-shrink: 0;
}
.characteristic__value {
  color: var(--black, #222);
  font-family: Inter Tight;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.characteristic__properties-first {
  margin-bottom: 30px;
}
.characteristic__value-first,
.characteristic__property-first {
  color: var(--accent, #355efe);
}
.characteristics__tablet {
  display: none;
}
@media (max-width: 768px) {
  .description {
    margin-bottom: 0px;
  }
  .characteristics__product {
    display: none;
  }
  .characteristics__tablet {
    display: block;
    margin-bottom: 30px;
  }
  .characteristics__tablet .characteristic__property {
    width: auto;
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .characteristic__property {
    width: 125px;
  }
}
/* characteristic */ /* characteristic */ /* characteristic */










.custom-select {
  margin-bottom: 30px;
  display: none;
}

.select-wrapper {
  display: block;
  position: relative;
  height: 36px;
  margin-bottom: 10px;
}

.select-result {
  top: 0;
  left: 0;
  width: 280px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  background-color: #fff;
  color: var(--grey, #5C5C5C);
font-family: Roboto;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
width: 100%;
}
.select-result:hover {
  cursor: pointer;
}

.select-active {
  height: auto;
}
.select-active .select-result::after {
  transform: rotate(0deg);
}

.select-result div {
  padding: 10px;
}
.select-result div:first-child {
  padding: 10px;
  border-radius: 10px;
border: 1px solid var(--accent, #355EFE);
}
.select-result div:not(:first-child):hover {
  background-color: #e6e6e6;
}

.select-wrapper span {
  position: absolute;
  top: 7px;
  right: 15px;
  display: block;
  transform: rotate(0deg);
  transition: 0.3s;
  transform-origin: center;
  pointer-events: none;
  width: 20px;
  height: 20px;
  background-image: url('../img/catalog/arrow.svg');
}
.select-wrapper span:hover {
  cursor: pointer;
}

.display-none {
  display: none;
}
