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

.container {
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .container {
    margin: 0 20px;
  }
}

body {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 118%;
  letter-spacing: 0.02em;
}

.overflow-hidden {
  overflow: hidden;
}

.page-title {
  font-weight: 500;
  font-size: 38px;
  line-height: 98%;
  letter-spacing: 0.02em;
  color: #1F202E;
  margin-top: 35px;
  margin-bottom: 35px;
}
@media (max-width: 600px) {
  .page-title {
    margin-bottom: 0;
    margin-top: 30px;
    font-size: 27px;
    margin-top: 6px;
  }
}

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

.section-title {
  font-weight: 500;
  font-size: 50px;
  line-height: 98%;
  letter-spacing: 0.02em;
  color: #1F202E;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.more {
  text-decoration: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  font-weight: 400;
}
@media (max-width: 600px) {
  .more {
    font-size: 18px;
  }
}

.more_gradient {
  background: linear-gradient(90.19deg, #005996 0%, #E3173E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.list-menu {
  background: #1F202E;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 27px 19px;
  padding-bottom: 25px;
  list-style: none;
  width: 300px;
  position: absolute;
}

.open-list-button {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  gap: 2px;
  cursor: pointer;
  position: relative;
}

.header__products-menu {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}

.gradient-button {
  padding: 18px 40px;
  border-radius: 50px;
  border: 2px solid transparent;
  width: -moz-max-content;
  width: max-content;
  background-color: #FFFFFF;
  margin: 1px;
  cursor: pointer;
}

.gradient-button__text {
  background: linear-gradient(90.19deg, #005996 0%, #E3173E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gradient-button-wrapper {
  border-radius: 50px;
  background: linear-gradient(90.19deg, #005996 0%, #E3173E 100%);
  padding: 1px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.button {
  padding: 18px 40px;
  border-radius: 50px;
  background: none;
  border: 2px solid;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  display: inline-block;
}

.header {
  background: #1F202E;
  position: sticky;
  top: 0;
  left: 0;
  padding: 15px 0;
  width: 100%;
  z-index: 100;
}

.header__middle{
  max-height: 40px;
  width: 100%;
}
.header__logo {
  height: 40px;
}
.header__phone {
  position: relative;
  top: 4px;
}
.header__container {
  max-width: 1220px;
  display: flex;
  height: 40px;
  gap: 27px;
  align-items: center;
  justify-content: space-between;
}
.header__navigation {
  display: flex;
  align-items: center;
}
.header__navigation__list {
  list-style: none;
  display: flex;
  gap: 27px;
  align-items: center;
}
.header__navigation__list a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width: 1246px) {
  .header__navigation {
    display: none;
  }
}
.header__menu-button {
  width: 40px;
  height: 40px;
  padding: 14px 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.header__menu-button__line {
  width: 30px;
  height: 3px;
  border-radius: 20px;
  background-color: #fff;
}
@media (max-width: 1246px) {
  .header__menu-button {
    display: flex;
  }
}

.search{
  width: 100%;
  max-width: 840px;
  background-color: #1F202E;
  border: none;
  border-bottom: 2px solid #FFFFFF;
  height: 40px;
  display: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  padding: 6px 32px;
}

#header-search::placeholder{
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.header__search-button {
  height: 24px;
  cursor: pointer;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 27px;
}
.header .open-list-button {
  position: relative;
  top: 3px;
}

@media(max-width: 768px) {
  #header-search{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    width: calc(100vw - 30px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    bottom: -60px;

  }
}

@media(max-width: 440px) {
  .header__phone{
    display: none;
  }
  .header__right{
    gap: 15px;
  }
}

.menu {
  position: fixed;
  height: calc(100vh - 90px);
  top: 80px;
  right: -300px;
  background-color: #1F202E;
  padding: 30px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  transition: 0.1s linear;
  z-index: 90;
}
.menu__navigation__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 15px;
  color: #FFFFFF;
}
.menu_opened {
  right: 0;
}

#breadcrumbs_id {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin-top: 16px;
}
#breadcrumbs_id li {
  font-size: 12px;
  line-height: 138%;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 4px;
}

#breadcrumbs_id li:not(:last-child)::after {
  content: " ";
  display: block;
  width: 8px;
  height: 17px;
  background: url(/extore/frontend/themes/microport/assets/images/page-path-arrow.svg) center center no-repeat;
}

#breadcrumbs_id li:last-child {
  color: #E3173E;
}
@media (max-width: 1220px) {
  .page-path {
    margin-left: 20px;
  }
}


.popup-wrapper{
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.popup{
  color: #FFFFFF;
  border-radius: 20px;
  background: #005996;
  padding: 80px 87px;
  display: flex;
  flex-direction: column;
  max-width: 555px;
  position: relative;
}

.popup__title{
  margin-bottom: 31px;
  font-size: 1.1em;
}
.popup__form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup__input{
  border: none;
  border-bottom: 2px solid #ffffff;
  padding-left: 32px;
  font-size: 18px;
  max-width: 380px;
  background: none;
  height: 60px;
}

.popup__input::placeholder{
  color: #FFFFFF;
}

.close-popup{
  position: absolute;
  top: 20px;
  right: 23px;
  cursor: pointer;
}

.popup__button-wrapper{
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 12px;
  line-height: 138%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
  margin-top: 16px;
  gap: 12px;
}

.popup_opened{
  display: flex;
}

.popup__button{
  border-color: #FFFFFF;
  width: 100%;
  color: #FFFFFF;
  cursor: pointer;
}




.footer {
  overflow: hidden;
  background: #1F202E;
  padding-top: 45px;
  color: #FFFFFF;
  font-weight: 400;
}
.footer__content {
  display: flex;
  position: relative;
  padding-bottom: 124px;
}
@media (max-width: 1150px) {
  .footer__content {
    max-width: 915px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 950px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    max-width: 550px;
  }
}
.footer__logo {
  width: -moz-fit-content;
  width: fit-content;
}
.footer__main {
  margin-right: 114px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: flex-start;
}
.footer__main .footer__navigation__list a {
  font-size: 18px;
}
.footer__main .footer__navigation__list:last-child {
  display: none;
}
@media (max-width: 950px) {
  .footer__main .footer__navigation__list:last-child {
    display: flex;
  }
}
.footer__main__lists {
  display: flex;
  gap: 40px;
}
@media (max-width: 560px) {
  .footer__main__lists {
    display: none;
  }
}
.footer__main__lists .footer__social-networks {
  margin-top: 0;
  display: none;
}
@media (max-width: 950px) {
  .footer__main__lists .footer__social-networks {
    display: flex;
  }
}
@media (max-width: 1220px) {
  .footer__main {
    margin-right: 56px;
  }
}
@media (max-width: 950px) {
  .footer__main {
    max-width: 500px;
    margin: 0;
    margin-bottom: 40px;
  }
}
.footer__navigation {
  display: flex;
  gap: 67px;
}
.footer__navigation__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.footer__navigation__list li {
  line-height: 138%;
  color: #FFFFFF;
}
.footer__navigation__list li a {
  text-decoration: none;
}
.footer__navigation__list:last-child {
  font-size: 18px;
  line-height: 148%;
}
@media (max-width: 950px) {
  .footer__navigation__list:last-child {
    display: none;
  }
}
@media (max-width: 560px) {
  .footer__navigation__list {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .footer__navigation {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer__navigation__list {
    width: 230px;
  }
}
@media (max-width: 560px) {
  .footer__navigation {
    gap: 10px;
  }
}
@media (max-width: 560px) {
  .footer__navigation {
    flex-direction: column;
    text-align: center;
  }
  .footer__navigation__lists {
    width: initial;
  }
}
.footer__list__title {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer__list__title img {
  display: none;
}
@media (max-width: 560px) {
  .footer__list__title img {
    display: block;
  }
}
@media (max-width: 560px) {
  .footer__list__title {
    font-size: 22px;
    font-weight: 500;
    justify-content: center;
  }
}
.footer__list__inner-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}
.footer__search-button {
  margin-left: 56px;
}

#footer-search{
  margin-bottom: 30px;
}
@media (max-width: 950px) {
  .footer__search-button {
    margin-left: 0;
    position: absolute;
    top: 0;
    right: 20px;
  }
}
.footer__mobile-list {
  max-width: 290px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 118%;
  letter-spacing: 0.02em;
  margin-top: 52px;
  display: none;
}


@media (max-width: 560px) {
  .footer__mobile-list {
    display: flex;
    margin-top: 10px;
  }
}
.footer__social-networks {
  display: flex;
  gap: 23px;
  margin-top: 13px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: 24px;
  left: 0;
  padding: 0 20px;
}
.footer__bottom span {
  font-size: 12px;
  line-height: 138%;
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 52px;
  }
}
@media (max-width: 560px) {
  .footer {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    margin: 0 19px;
  }
}


/*# sourceMappingURL=main.css.map */