html {
  font-size: 10px;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
html::-webkit-scrollbar-track {
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.1);
}
html::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.2);
}
html::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
html::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.9);
}

body {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5em;
  color: #292e38;
  background-color: #fff;
}
@media screen and (min-width: 576px) {
  body {
    font-size: 1.8rem;
  }
}

.container-fluid {
  max-width: 130rem;
  margin-left: auto;
  margin-right: auto;
  --bs-gutter-x: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1399.98px) {
  .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.row {
  --bs-gutter-x: 3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
}

p {
  margin-bottom: 1.38em;
}

.list-check {
  list-style-image: url("../img/icons/check-blue.svg");
}
.list-check li:not(:last-child) {
  margin-bottom: 0.27em;
}

.heading-2 {
  margin-bottom: 0.5em;
  font-size: 4.5rem;
  line-height: 1em;
}
@media screen and (min-width: 576px) {
  .heading-2 {
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 768px) {
  .heading-2 {
    font-size: 6rem;
  }
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.site-navigation {
  display: none;
}
@media screen and (min-width: 992px) {
  .site-navigation {
    display: block;
  }
}
.site-navigation__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.site-navigation__item {
  margin: 0.27em 1.11em;
}
.site-navigation__link {
  color: inherit;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.site-navigation__link:hover {
  color: inherit;
  border-color: #fff;
}

.section-description {
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.5em;
}
@media screen and (min-width: 576px) {
  .section-description {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .section-description {
    font-size: 2.4rem;
  }
}

.button {
  display: inline-block;
  padding: 0.88em 2.05em;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5em;
  border-radius: 5rem;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: color 0.25s linear, background-color 0.25s linear;
}
@media screen and (min-width: 576px) {
  .button {
    font-size: 1.8rem;
  }
}
.button:hover {
  background-color: #d24c27;
  color: #fff;
 text-decoration: none;
}
.button--dark {
  background-color: #292e38;
}
.button--primary {
  background-color: #2866e1;
}
.button--light {
  color: #292E38;
  background-color: #FFFFFF;
}

.link-more {
  color: #d24c27;
}
.link-more svg {
  transform: rotate(135deg);
}
.link-more svg path {
  stroke: #d24c27;
}
.link-more:hover {
  color: #2866E1;
}
.link-more:hover svg path {
  stroke: #2866E1;
}
.link-read {
  color: #2866E1;
}
.link-read svg path {
  stroke: #2866E1;
}
.link-read:hover {
  color: #d24c27;
}
.link-read:hover svg path {
  stroke: #d24c27;
}
.link-read, .link-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s linear;
}
.link-read svg, .link-more svg {
  margin-left: 2rem;
}
.link-read svg path, .link-more svg path {
  transition: stroke 0.25s linear;
}

.slick-arrow {
  border: none;
  width: 6rem;
  height: 6rem;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
}

.first-screen-wrap {
  padding-top: 14rem;
  padding-bottom: 6rem;
  margin-bottom: -6rem;
  margin-top: -14rem;
  color: #fff;
  background: radial-gradient(81.96% 222.76% at 10.26% 37.38%, #017bfa 0%, #8531a0 53.22%, #d24c27 84.7%) top left/200% 200%;
  overflow: hidden;
  -webkit-animation: colorChange 5s infinite alternate;
          animation: colorChange 5s infinite alternate;
}
.first-screen-wrap--privacy-policy {
  padding-bottom: 15rem;
  margin-bottom: 0;
}

.main-header {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #fff;
  z-index: 50;
}
@media screen and (max-width: 1199.98px) {
  .main-header {
    font-size: 1.6rem;
  }
}
.main-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #292E38;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-header__logo {
  width: 13rem;
  height: 4rem;
  margin-right: auto;
}
@media screen and (min-width: 576px) {
  .main-header__logo {
    width: 17rem;
    height: 5.4rem;
  }
}
@media screen and (min-width: 992px) {
  .main-header__logo {
    margin-right: 0;
  }
}
.main-header__phone {
  margin-left: 2rem;
  margin-right: 1.38em;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.main-header__phone:hover {
  color: inherit;
  border-color: #fff;
}
@media screen and (max-width: 575.98px) {
  .main-header__phone {
    font-size: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1) url("../img/icons/phone.svg") center/auto no-repeat;
    order: 2;
  }
}
@media screen and (min-width: 576px) {
  .main-header__phone {
    margin-left: auto;
  }
}
@media screen and (min-width: 992px) {
  .main-header__phone {
    margin: 0.27em 1.11em;
  }
}
@media screen and (max-width: 575.98px) {
  .main-header__dropdown {
    margin-left: auto;
  }
}
.main-header__dropdown-mobile {
  margin-left: 2.5rem;
}
@media screen and (max-width: 575.98px) {
  .main-header__dropdown-mobile {
    order: 2;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .main-header__dropdown-mobile {
    display: none;
  }
}
.main-header__dropdown-mobile .main-header__dropdown-toggle {
  background: rgba(255, 255, 255, 0.1) url("../img/icons/burger-menu.svg") center no-repeat;
}
.main-header__dropdown-mobile .main-header__dropdown-toggle.show {
  background: rgba(255, 255, 255, 0.1) url("../img/icons/close.svg") center no-repeat;
}
.main-header__dropdown-mobile .main-header__dropdown-menu {
  width: 28rem;
}
.main-header__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
}
.main-header__dropdown-toggle:hover {
  color: inherit;
}
.main-header__dropdown-toggle::after {
  display: none;
}
.main-header__dropdown-menu {
  width: 16.7rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.5em;
  border-radius: 2rem;
  border: none;
  color: #292E38;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 1199.98px) {
  .main-header__dropdown-menu {
    font-size: 1.6rem;
  }
}
.main-header__dropdown li:not(:last-child) {
  border-bottom: 1px solid #BCBFC6;
}
.main-header__dropdown-item {
  padding: 1rem 2rem;
  color: inherit;
}
.main-header__dropdown-item:hover {
  color: #ffffff;
  background-color: #2866E1;
  text-decoration: none;
}
.main-header__dropdown-item--active {
  background-color: #2866E1;
color: #ffffff;
}

.site-footer {
  padding-top: 6rem;
  margin-top: -7.5rem;
  background-color: #eff3f7;
  border-radius: 6rem 6rem 0 0;
}
@media screen and (min-width: 576px) {
  .site-footer {
    padding-top: 8.5rem;
  }
}
@media screen and (min-width: 992px) {
  .site-footer {
    padding-top: 11.5rem;
    padding-bottom: 10rem;
  }
}
.site-footer__heading-2 {
  margin-bottom: 1em;
}
.site-footer__contacts-mail, .site-footer__contacts-phone {
  margin-bottom: 0.41em;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5em;
  color: #292e38;
  text-decoration: none;
  transition: color 0.25s linear;
}
@media screen and (min-width: 576px) {
  .site-footer__contacts-mail, .site-footer__contacts-phone {
    font-size: 2.4rem;
  }
}
.site-footer__contacts-mail:hover, .site-footer__contacts-phone:hover {
  color: #2866E1;
text-decoration: none;
}
.site-footer__contacts-address {
  max-width: 24.72em;
  margin-top: 1.22em;
  margin-bottom: 0;
}
.site-footer__contacts-map {
  width: calc(100% + 3rem);
  min-height: 20rem;
  margin-top: 4.7rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  border-radius: 4rem 4rem 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .site-footer__contacts-map {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    border-radius: 4rem;
  }
}
.site-footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .site-footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer__copyright-wrapper {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap-reverse;
  margin-top: 5rem;
}
@media screen and (min-width: 576px) {
  .site-footer__copyright-wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .site-footer__copyright-wrapper {
    width: 40%;
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .site-footer__copyright-wrapper {
    margin-top: 6rem;
  }
}
.site-footer__logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .site-footer__logos-wrapper {
    width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .site-footer__logos-wrapper {
    margin-top: 7rem;
  }
}
.site-footer__logo {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.site-footer__logo:not(:last-child) {
  margin-right: 3rem;
}
@media screen and (min-width: 992px) {
  .site-footer__img {
    margin-top: -10rem;
  }
}
.site-footer__copyright, .site-footer__link {
  font-size: 1.4rem;
  line-height: 1.2em;
  color: #72757b;
  margin-bottom: 0.35em;
  margin-top: 0.35em;
}
@media screen and (min-width: 768px) {
  .site-footer__copyright {
    margin-right: 1.57em;
  }
}
.site-footer__link {
  text-decoration: none;
}
.site-footer__link:hover {
  color: #2866E1;
}

.fancybox__container .fancybox__backdrop,
.modal {
  background-image: radial-gradient(110.47% 303.42% at 10.26% 37.38%, rgba(1, 123, 250, 0.7) 0%, rgba(133, 49, 160, 0.7) 53.22%, rgba(210, 76, 39, 0.7) 100%);
}

.modal-content {
  background-color: #FFFFFF;
  border-radius: 6rem;
  padding: 3rem;
}
@media screen and (min-width: 576px) {
  .modal-content {
    padding: 3rem 5rem 4rem;
  }
}
.modal-header {
  padding: 0 0 3rem;
  border-bottom: none;
  align-items: flex-start;
}
.modal-title {
  margin-top: 4rem;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1em;
}
@media screen and (min-width: 576px) {
  .modal-title {
    font-size: 5rem;
    margin-top: 5rem;
  }
}
.modal-body {
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .modal__form-checkbox + label {
    max-width: 100%;
  }
}
.modal-footer {
  padding-top: 2.5rem;
  border-top: none;
  justify-content: center;
}
.modal-footer__text {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.2em;
  color: #2866E1;
  text-align: center;
}
.modal-footer__text::before {
  content: url("../img/icons/lock.svg");
  margin-right: 1rem;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes colorChange {
  to {
    background-position: top right;
  }
}
@keyframes colorChange {
  to {
    background-position: top right;
  }
}

.site-navigation__item {
  position: relative;
}

.site-navigation__item:hover > .site-navigation__sublist {
  display: block;
}

.site-navigation__sublist {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  border-radius: 2rem;
background-color: #fff;
}
.site-navigation__sublist-item {
  width: 27.2rem;
}
.site-navigation__sublist-item:not(:last-child) {
  border-bottom: 0.1rem solid #BCBFC6;
}
.site-navigation__sublist-link {
  display: block;
  padding: 0.44em 1.11em;
  color: #292E38;
  text-decoration: none;
  transition: background-color 0.25s linear;
}
.site-navigation__sublist-link:hover {
  color: #fff;
  background-color: #2866E1;
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) { 
	.site-navigation__item { 
		margin: 0.27em 0.5em; 
	} 
}

.site-navigation__link {
  display: block;
  padding-top: 0.22em;
  padding-bottom: 0.22em;
  border-bottom: 0.2rem solid transparent;
  transition: border-color 0.25s linear;
}
.site-navigation__link:hover {
  text-decoration: none;
  border-color: #ffffff;
}

.site-navigation__item.has-child {
  padding-right: 2rem;
}
.site-navigation__item.has-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border: 0.1rem solid #fff;
  transform: translateY(-80%) rotate(45deg);
  border-left: 0;
  border-top: 0;
}

.has-child .site-navigation__link:hover {
  text-decoration: none;
  border-color: transparent;
}

.main-header__phone {
  padding-top: 0.22em;
  padding-bottom: 0.22em;
  border-bottom: 0.2rem solid transparent;
  transition: border-color 0.25s linear;
}
.main-header__phone:hover {
  text-decoration: none;
  border-color: #ffffff;
}

/*.main-header__dropdown-item:hover {
  text-decoration: none;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
}*/

.footer-logo {
  margin-bottom: 4.8rem;
}

.social-list {
  margin: 0;
  width: 22rem;
  margin-right: -1.5rem;
  margin-bottom: -1.7rem;
  margin-top: auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.social-item {
  margin-right: 1.5rem;
  margin-bottom: 1.7rem;
}
.social-link {
  width: 4rem;
  height: 4rem;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  transition: background-color 0.25s linear;
}

.instagram {
  background-image: url("../img/icons/instagram.svg");
  background-color: #F61663;
}
.instagram:hover {
  background-color: #d1084d;
}

.youtube {
  background-image: url("../img/icons/youtube.svg");
  background-color: #E60000;
}
.youtube:hover {
  background-color: #b30000;
}

.telegram {
  background-image: url("../img/icons/telegram.svg");
  background-color: #259CD8;
}
.telegram:hover {
  background-color: #1e7dac;
}

.facebook {
  background-image: url("../img/icons/facebook.svg");
  background-color: #1877F2;
}
.facebook:hover {
  background-color: #0b5fcc;
}

.twitter {
  background-image: url("../img/icons/twitter.svg");
  background-color: #1C96E8;
}
.twitter:hover {
  background-color: #1379be;
}

.vk {
  background-image: url("../img/icons/vk.svg");
  background-color: #0073F7;
}
.vk:hover {
  background-color: #005bc4;
}

.linkedin {
  background-image: url("../img/icons/linkedin.svg");
  background-color: #0073B1;
}
.linkedin:hover {
  background-color: #00527e;
}

.ok {
  background-image: url("../img/icons/ok.svg");
  background-color: #EF8E1D;
}
.ok:hover {
  background-color: #cb740e;
}

.site-footer {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 576px) {
  .site-footer {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}
.site-footer-list {
  margin: 0;
  padding: 0;
}
.site-footer__contacts-phone {
  margin-bottom: 4.4rem;
}
@media screen and (min-width: 576px) {
  .site-footer__contacts-phone {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .site-footer__contacts-phone {
    font-size: 2.4rem;
  }
}
.site-footer-link {
  display: block;
  margin-bottom: 3rem;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #292E38;
  text-decoration: none;
  transition: color 0.25s linear;
}
@media screen and (min-width: 768px) {
  .site-footer-link {
    font-size: 2.4rem;
  }
}
.site-footer-link svg path {
  stroke: #292E38;
  transition: stroke 0.25s linear;
}
.site-footer-link:hover {
  color: #D24C27;
text-decoration: none;
}
.site-footer-link:hover svg path {
  stroke: #D24C27;
}
.site-footer-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 3rem;
}
.site-footer-subitem a {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #72757B;
  text-decoration: none;
  transition: color 0.25s linear;
}
.site-footer-subitem a:hover {
  color: #D24C27;
}
.site-footer-subitem:not(:last-child) {
  margin-bottom: 0.5rem;
}
.site-footer-mail {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #D24C27;
  text-decoration: none;
  transition: color 0.25s linear;
}
.site-footer-mail:hover {
  color: #2866E1;
text-decoration: none;
}
@media screen and (min-width: 576px) {
  .site-footer-bottom {
    margin-top: 8rem;
  }
}

.main-header__dropdown-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-header__dropdown-submenu li .main-header__dropdown-item {
  padding-left: 3.5rem;
  /*background-color: #ffffff;*/
}

.main-header__dropdown-menu .main-header__dropdown-submenu li {
  border: none;
  border-top: 0.1rem solid #BCBFC6;
}
.site-navigation__sublist-item ul {
  padding-left: 0;
}
.site-navigation__sublist-item li {
  list-style: none;
}
.site-navigation__sublist-item li a {
  position: relative;
  display: block;
  padding: 0.6rem 0 0.6rem 5rem;
  border-top: 0.1rem solid #BCBFC6;
  color: #292E38;
  text-decoration: none;
}
.site-navigation__sublist-item li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: #292E38;
}
.site-navigation__sublist-item li a:hover {
  color: #fff;
  background-color: #2866E1;
}
.site-navigation__sublist-item li a:hover::before  {
  background-color: #fff;
}
.main-header__dropdown-toggle {
  border: none;
}

@media screen and (max-width: 991.98px) {
  .site-navigation {
    position: absolute;
    top: 10rem;
    right: 1.5rem;
  }
  .site-navigation__list {
    display: block;
    width: 27.2rem;
    border-radius: 2rem;
    color: #292E38;
    background-color: #fff;
    overflow: hidden;
  }
  .site-navigation__item {
    margin: 0;
  }
  .site-navigation__item.has-child {
    padding-right: 0;
  }
  .site-navigation__sublist {
    display: block;
    position: static;
    border-radius: 0;
  }
  .site-navigation__sublist-item:last-child {
    border-bottom: 0.1rem solid #BCBFC6;
  }
  .site-navigation__link {
    padding: 0.44em 1.11em;
    /*border-bottom: 0.1rem solid #BCBFC6;*/
  }     
  .site-navigation__item.has-child::after {
	content: none;
    /* top: 2.2rem;
    right: 1rem;
    border-color: #292E38;*/
  }         
  .site-navigation__sublist-link {
    padding: 0.44em 2.22em;
  }
  .site-navigation__sublist-item li a {
    padding-left: 6.5rem;
  }
  .site-navigation__sublist-item li a::before {
    left: 4.5rem;
  }
  body.hidden {
    overflow: hidden;
    display: block !important;
  }
  /*.has-child .site-navigation__link:hover {
    border-color: #BCBFC6;
  }*/
  .site-navigation__item.active::after {
    transform: translateY(-80%) rotate(-135deg);
  }
.site-navigation__wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem solid #BCBFC6;
}
.site-navigation__toggle {
  width: 40px;
  border: none;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAzMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMTBMMTQgMTZMMjAgMTAiIHN0cm9rZT0iIzI5MkUzOCIgc3Ryb2tlLXdpZHRoPSIxLjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center;
}
}
a.site-navigation__sublist-link {
	text-decoration: none;
}

body.modal-open {
	padding-right: 0 !important;
}
@media screen and (min-width: 992px) {
	body.modal-open {
		padding: 6px !important;
	}
}
@media screen and (max-width: 399.98px) {
	.product-item-page .hero .heading-1 {
		font-size: 3rem;
	}
}
@media screen and (max-width: 575.89px) {
	.modal-content {
		min-width: calc(100dvw - 10px);
	}
}
/* Поиск */
.search {
  font-size: 1.6prem;
  line-height: 1.5;
  color: #72757B;
}
.search-form {
  margin-bottom: 5rem;
}
.search__results {
  margin-bottom: 4rem;
}
.search-results__list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.search-results__item {
  position: relative;
  padding: 2rem 2.5rem;
  border-radius: 2rem;
  color: #72757B;
  background-color: #EFF3F7;
}
.search-results__item::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  background: url("../img/arrows.svg") no-repeat center;
}
.search-results__item:not(:last-child) {
  margin-bottom: 2rem;
}
.search-results__item:hover,
.search-results__item:focus-within {
  outline: 0.4rem solid #2866E1;
}
.search-results__item-title {
  margin-bottom: 1rem;
  padding-right: 3.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2866E1;
}
.search-results__item-title a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
.search-results__item-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.search-results__item-route {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 3rem;
  margin-bottom: 0;
}
.search-results__item-route dt {
  font-weight: 400;
}
.search-results__item-route dd,
.search-results__item .breadcrumbs-list {
  margin-bottom: 0;
}
.search-results__item-route .breadcrumbs-item:first-child .breadcrumbs-link {
  color: rgba(40, 102, 225, 0.5);
}
.search-results__item-route a.breadcrumbs-link {
  z-index: 5;
}
.search-results__item-route .breadcrumbs-item a.breadcrumbs-link:hover,
.search-results__item-route .breadcrumbs-item.active .breadcrumbs-link {
  color: #2866E1;
}
.search-results__item-route .breadcrumbs-item:not(:last-child)::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIzMCIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBzdHJva2U9IiMyODY2RTEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW9wYWNpdHk9Ii41IiBzdHJva2Utd2lkdGg9IjEuMyIgZD0ibTkuNSAyMiA2LTYtNi02Ii8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMzBWMGgyMHYzMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=");
}
.search-form-input {
  height: 6rem;
}
.search-form-input:not(:placeholder-shown) + .search-form-reset {
  display: block;
}
.search-form-reset {
  display: none;
  position: absolute;
  top: 50%;
  right: 9rem;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  border: none;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjRDI0QzI3IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTEzIDEgMSAxM00xIDFsMTIgMTIiLz48L3N2Zz4=") no-repeat center;
}
.search-form-submit {
  width: 6.6rem;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
.pagination {
  margin-top: 5rem;
}
.main-header__search {
  position: relative;
  margin-left: 2rem;
}
.main-header__search .search-form {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  max-width: 59rem;
  width: calc(100vw - 3rem);
  transform: translateY(-50%);
}
.main-header__search-toggle {
  width: 1.8rem;
  height: 1.8rem;
  border: none;
  background: url("../img/search.svg") no-repeat center / contain;
}

@media (min-width: 576px) {
  .search-results__item-description {
	max-width: 90%;
  }
  .search-form-input {
	padding-right: 14rem;
  }
  .search-form-submit {
	width: 10.2rem;
  }
  .search-form-reset {
	right: 11.5rem;
  }
}

.services-solutions + .request-block {
  margin-top: 0;
  margin-bottom: 0;
}

/*# sourceMappingURL=template-styles.css.map */
