* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

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

:root {
  --spacing-10: 0.625rem; /* 10px */
  --spacing-12: 0.75rem; /* 12px */
  --spacing-14: 0.875rem; /* 14px */
  --spacing-16: 1rem; /* 16px */
  --spacing-18: 1.125rem; /* 18px */
  --spacing-20: 1.25rem; /* 20px */

  --color-green: rgba(30, 56, 57, 1);
  --color-black: rgba(40, 39, 39, 1);

  --partial-width: 0;
  --gap: 1rem;

  --header-height: 144px;
}

html {
  font-size: 16px;
  font-weight: 400;
  scroll-padding-top: var(--header-height);
}

h1 {
  line-height: 2.5rem;
}

h2 {
  line-height: 1.75rem;
}

h3 {
  line-height: 1.25rem;
}

p,
a,
li {
  color: var(--color-green);
  font-size: 14px;
  line-height: 1.25rem;
}

a {
  text-decoration: none;
}

html::-webkit-scrollbar {
  width: 0.4em;
}

html::-webkit-scrollbar,
html::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

body {
  background-color: rgba(244, 244, 246, 1);
  color: var(--color-black);

  -ms-scroll-chaining: none;

  overscroll-behavior: none;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}

ul,
ol {
  list-style: none;
  text-indent: 10px;
}

img,
picture {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

svg {
  display: block;
}

aside,
nav,
footer,
header,
section,
article {
  display: block;
}

button,
a {
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  html {
    font-size: 13px;
  }

  .container {
    max-width: 1170px;
  }

  p,
  a {
    font-size: 13px;
  }
}

@media (max-width: 1220px) {
  html {
    font-size: 12px;
  }

  .container {
    max-width: 1020px;
  }

  p,
  a {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  .company-reviews .btn-primary {
    white-space: normal;
  }
  .feedback-footer-text p {
  }

  html {
    font-size: 14px;
  }

  p,
  a {
    font-size: 14px;
  }
  :root {
    --header-height: 65px;
  }
}

.header-content {
  z-index: 11;
  margin-bottom: var(--spacing-20);
  background-color: #fff;
  border-bottom-right-radius: var(--spacing-20);
  border-bottom-left-radius: var(--spacing-20);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.05);

  padding: 0 35px;
}

.header-content-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-14) 0;
  width: 100%;
  height: 68px;
  transition: top 0.3s ease;
}

.header-content-navbar-wrap {
  background: #fff;
}

.line {
  border-bottom: solid 1px #e0e0e0;
}

.header-content-icons {
  display: flex;
}

.header-content-icons > * {
  margin-right: 10px;
}

.header-content-icons > *:last-child {
  margin-right: 0;
}

.header-content-icons a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(244, 244, 246, 1);
  height: 2rem;
  width: 2rem;
  transition: 0.1s;
}

.header-content-icons a:hover {
  transform: scale(1.1);
}

.header-content-icons svg path {
  fill: black;
}

.header-content-items ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
}

.header-content-items-magazine-btn,
.header-content-items-magazine-btn-back {
  background: #f4f4f6;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b52e51 !important;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.header-content-items-magazine {
  position: relative;
}

.header-content-items-magazine-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 45px;
  padding: 12px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.header-content-items-magazine:hover > .header-content-items-magazine-menu,
.header-content-items-magazine:focus-within
  > .header-content-items-magazine-menu {
  display: grid;
  grid-template-columns: 250px 250px;
  gap: 12px;
}

.header-content-items-magazine-col a {
  padding: 6px 0;
  color: #333;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 6px;
  text-indent: 0;
}

.header-content-items-magazine-col > * {
  width: 100%;
}

.header-content-items-magazine-col {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
}

.header-content-items-magazine-col a:hover,
.header-content-items-magazine-col a:focus {
  background: #f4f4f6;
}

.header-content-items-magazine-col a.is-active {
  background: #ececec;
  display: flex;
  align-items: center;
  color: #b52e51;
}

.header-content-items ul li {
  padding: 10px;
  margin-right: 6px;
}

.header-content-items ul li:last-child {
  margin-right: 0;
}

.header-content-items ul li a {
  text-decoration: none;
  color: #282727;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-content-logo p {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #aba9a8;
  margin-left: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-content-last {
  padding: 15px 0;
}

.header-content-logo {
  display: flex;
  align-items: center;
}

.header-content-logo picture {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dropdown-sort svg,
.dropdown svg,
.dropdown-arrow {
  width: 8px;
  height: 8px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.rotate-arrow {
  transform: rotate(180deg);
}

.header-modal-search {
  display: none;
  background: #00000066;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999999999;
}

.header-modal-search-content {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  background: #fff;
  overflow-y: auto;
  padding: 10px;
  border-radius: 16px;
}

.header-modal-search.active {
  display: block;
}

.header-modal-search-content {
  padding: 16px;
}

.header-modal-search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  color: #aba9a8;
  background: #f4f4f6;
  border-radius: 8px;
  margin-top: 16px;
  margin-bottom: 13px;
}

.header-modal-search-input input {
  outline: none;
  color: #aba9a8;
  background: none;
  width: 100%;
}

.header-modal-search-list {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  align-items: flex-start;
  padding: 12px;
}

.header-modal-search-list hr {
  border: none;
  width: 2px;
  height: 217px;
  background: #e0e0e0;
}

.header-modal-search-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-indent: 0;
  height: 217px;
  overflow-y: auto;
  width: 333px;
  width: 100%;
}

.header-modal-search-close {
  margin-left: auto;
}

.header-modal-search-item span {
  font-size: 12px;
  font-weight: 400;
  color: #aba9a8;
}

.header-content_button {
  display: flex;
  align-items: center;
  gap: 23px;
}

.header-content_button .header-heart-icon {
  cursor: pointer;
  height: 1.5rem;
  width: 1.5rem;
}

.header-content-menu-items {
  display: flex;
  align-items: center;
}

.header-content-menu-items > .header-content-menu-item {
  margin-right: 4px;
}

.header-content-menu-items > .header-content-menu-item:last-child {
  margin-right: 0;
}

.single-top-menu-item {
  padding: 10px;
}

.header-content-menu-item {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-content-menu-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 10px;
  border-radius: 6px;
  font-weight: 400;
  color: var(--color-black);
  transition: 0.1s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  position: relative;
  z-index: 2;
}

.header-content-menu-toggle svg {
  margin-left: 6px;
}

/*.header-content-menu-item::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: calc(100%);*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 4rem;*/
/*    z-index: 1;*/
/*}*/

.header-content-menu-toggle:hover {
  background: rgba(244, 244, 246, 1);
}

.header-content-menu-dropdown {
  background: #fff;
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  padding: 16px 12px;
  z-index: 2;
  border-radius: 10px;
}

.header-content-menu-dropdown-inner {
  display: flex;
  flex-direction: column;
}

.header-content-menu-dropdown-inner a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-content-menu-dropdown a:not(.btn-primary) svg {
  opacity: 0;
  width: 0.75rem;
  height: 0.75rem;
  transition: 0.1s;
  margin-left: 16px;
}

.header-content-menu-dropdown a:not(.btn-primary) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: 0.1s;
  color: var(--color-black);
}

.header-content-menu-dropdown a:hover:not(.btn-primary) {
  background: rgba(244, 244, 246, 1);
}

.header-content-menu-dropdown a:hover:not(.btn-primary) svg {
  opacity: 1;
}

.header-content-menu-dropdown .btn-primary {
  margin-top: 1rem;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  background-color: #b52e51;
  text-align: center;
  border-style: none;
  border-radius: 8px;
  cursor: pointer;
  padding-left: var(--spacing-16);
  padding-right: var(--spacing-16);
  color: #fff !important;
  font-weight: 700;
  line-height: 20px;
  width: 100%;
  font-size: 0.875rem;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  background-color: #e3e3e3;
  text-align: center;
  border-style: none;
  border-radius: 8px;
  cursor: auto;
  padding-left: var(--spacing-16);
  padding-right: var(--spacing-16);
  color: #000 !important;
  font-weight: 700;
  line-height: 20px;
  width: 100%;
  font-size: 0.875rem;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-quaternary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  background-color: rgba(244, 244, 246, 1);
  text-align: center;
  border-style: none;
  border-radius: 8px;
  cursor: pointer;
  padding-left: var(--spacing-16);
  padding-right: var(--spacing-16);
  font-weight: 700;
  line-height: 20px;
  width: 100%;
  font-size: 0.875rem;
  white-space: nowrap;
  color: #b52e51;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-primary.btn-primary-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 52px;
}

.getListed-icon-wrapper {
  position: absolute;
  right: 6px;
  top: 6px;
  background: #fff;
  border-radius: 4px;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: #b52e51;
}

.btn-primary .getListed-icon-wrapper svg {
  width: 0.75rem;
  height: 0.75rem;
}

.header-content_button {
  display: flex;
  align-items: center;
}

.header-content-last {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-primary:hover {
  background-color: #aa2447;
}

.btn-primary p {
  color: #fff;
}

.main-content-frame {
  background-color: #1e3839;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--spacing-20);
}

.Rectangle1 {
  position: absolute;
  height: 913px;
  width: 188px;
  background-color: rgb(255 255 255 / 3%);
  transform: rotate(30deg);
  top: -170.67px;
  left: 340px;
  pointer-events: none;
}

.Rectangle2 {
  position: absolute;
  height: 913px;
  width: 188px;
  background-color: rgb(255 255 255 / 7%);
  transform: rotate(30deg);
  top: -265px;
  left: 177px;
  pointer-events: none;
}

.Rectangles {
  position: relative;
  left: -340px;
  background-color: rgba(255, 255, 255, 50%);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-20);
}

.breadcrumbs > * {
  margin-right: 9px;
}

.breadcrumbs > *:last-child {
  margin-right: 0;
}

.company-content .breadcrumbs-return {
  display: none;
}

.breadcrumbs-back {
  color: var(--color-black);
}

.breadcrumbs-back a {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.breadcrumbs-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}

.breadcrumbs svg {
  width: 7px;
  height: 12px;
}

.breadcrumbs-back svg {
  color: var(--color-black);
  width: 4px;
  min-height: 4px;
  min-width: 8px;
  height: 8px;
}

.link-parent {
  text-decoration: none;
  color: #282727;
}

.link-child {
  text-decoration: none;
  color: #aba9a8;
}

.frame-updateDate {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.frame-updateDate svg {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.frame-updateDate p {
  color: #fff;
}

.frame-leftColumn {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.frame-leftColumn h1 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

.frame-description-text {
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
  color: rgba(224, 224, 224, 1);
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 18px;
  font-size: 0.875rem;
  display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 54px;
  text-overflow: ellipsis;
  /*transition: max-height 0.4s ease;*/
  /*max-height: calc(18px * 3);*/
}

.frame-description-text ul {
  list-style: inside;
  list-style-type: disc;
}

.frame-description-text ol {
  list-style: inside;
  list-style-type: decimal;
}

.frame-description-text * {
  color: rgba(224, 224, 224, 1);
  line-height: 18px;
  font-size: 0.875rem;
}

.frame-description-text.expanded {
  -webkit-line-clamp: unset;
  display: -ms-grid;
  display: grid;
}

.frame-showMore {
  margin-top: auto;
}

.frame-showMore a {
  text-decoration: none;
  border-bottom: 1.5px solid #a5afb0;
  color: #fff;
}

.frame-rightColumn {
  margin-left: 4.5625rem;
  position: relative;
}

.frame-rightColumn img {
  border-radius: 16px;
}

.frame-flag-wrapper {
  display: none;
}

.frame-rightColumn-flag-wrapper {
  position: absolute;
  top: 0;
  right: 2.5rem;
}

.frame-rightColumn-top {
  position: absolute;
  top: 25.5%;
  white-space: nowrap;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 16px;
}

.frame-rightColumn-year {
  position: absolute;
  bottom: 12%;
  width: 100%;
  text-align: center;
  color: var(--color-green);
  font-size: 14px;
}

.frame-rightColumn-flag-text {
  position: absolute;
  bottom: 42%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-rightColumn-flag-text p {
  position: absolute;
  width: 85%;
  color: var(--color-green);
  text-align: center;
  font-size: 10px;
  line-height: 12px;
}

.frame-rightColumn-flag img {
  border-radius: 0;
}

.frame-columns {
  display: flex;
  padding: var(--spacing-20);
  padding-left: 2rem;
}

.main-content-filters {
  position: relative;
  margin-top: 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
}

.text-field-icon_search::before {
  width: 1.5rem;
  background-image: url("../svg/lens.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.text-field-icon {
  position: relative;
  width: 35%;
}

.text-field-icon::before {
  content: "";
  color: #bdbdbd;
  position: absolute;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
  top: 50%;
  bottom: 0;
  left: 1.25rem;
  z-index: 1;
  pointer-events: none;
}

.text-field-icon .text-field-input {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.text-field-cross {
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: none;
}

.text-field-input:not(:-moz-placeholder-shown) + .text-field-cross {
  display: block;
}

.text-field-input:not(:-ms-input-placeholder) + .text-field-cross {
  display: block;
}

.text-field-input:not(:placeholder-shown) + .text-field-cross {
  display: block;
}

.search-result {
  display: none;
}

.filter-options-mobile {
  display: none;
}

.sort-options-mobile {
  display: none;
}

.search-result-mobile {
  display: none;
}

.search-result.active {
  position: absolute;
  display: block;
  top: 56px;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 1rem 0.75rem;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  z-index: 2;
  overflow: hidden;
}

.search-result .search-result-items {
  display: flex;
}

.search-result-item {
  width: 13rem;
}

.search-result-city,
.search-result-state,
.search-result-company {
  border-right: 1px solid rgba(224, 224, 224, 1);
}

.search-result-empty,
.search-result-title {
  color: rgba(171, 169, 168, 1);
  font-size: 0.75rem;
  line-height: 12px;
  padding: 10px;
}

.search-result-list {
  overflow: auto;
  max-height: 21.125rem;
  margin-right: 10px;
}

.search-result-list::-webkit-scrollbar {
  width: 0.3em;
}

.search-result-list::-webkit-scrollbar,
.search-result-list::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

.search-result-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

.search-result-list p {
  color: var(--color-black);
  padding: 10px;
  display: block;
}

.search-result-link {
  color: var(--color-black);
  padding: 10px;
  cursor: pointer;
  display: block;
  transition: 0.1s;
}

.search-result-link:hover {
  background: #f4f4f6;
}

.main-content-search {
  padding: 6px;
  display: flex;
  width: 78%;
  border-radius: 8px;
  justify-content: space-between;
  background-color: #fff;
}

.text-field-input {
  display: block;
  position: relative;
  padding: 12px;
  font-size: 0.875rem;
  color: #212529;
  background-color: #f4f4f6;
  background-clip: padding-box;
  border: none;
  border-radius: 8px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 100%;
}

.text-field-input:focus {
  outline: 1px solid rgba(181, 46, 81, 1);
}

.block-filter {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 8px auto 8px auto 8px auto;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 8px;
}

.radio-button {
  pointer-events: none;
  accent-color: #b52e51;
}

.dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  background-color: #f4f4f6;
  white-space: nowrap;
}

.dropdown-toggle svg {
  margin-left: 8px;
}

.dropdown-toggle {
  color: #282727;
  list-style: none;
  display: flex;
  align-items: center;
  border: none;
  padding: var(--spacing-12) var(--spacing-16);
  height: 100%;
  cursor: pointer;
  border-radius: 8px;
  text-align: left;
  font-size: 0.875rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dropdown-menu {
  display: none;
  list-style: none;
  position: absolute;
  background: #fff;
  padding: 16px 12px;
  border-radius: 10px;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  margin-top: 15px;
  z-index: 1;
  flex-direction: column;
}

.dropdown-menu > * {
  margin-bottom: 16px;
}

.dropdown-menu > *:last-child {
  margin-bottom: 0;
}

.dropdown-menu[data-type="state"],
.dropdown-menu[data-type="city"] {
  max-height: 24rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.dropdown-menu[data-type="state"]::-webkit-scrollbar,
.dropdown-menu[data-type="city"]::-webkit-scrollbar {
  z-index: 2;
  width: 0.4em;
}

.dropdown-menu[data-type="state"]::-webkit-scrollbar,
.dropdown-menu[data-type="city"]::-webkit-scrollbar,
.dropdown-menu[data-type="state"]::-webkit-scrollbar-thumb,
.dropdown-menu[data-type="city"]::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

.dropdown-menu[data-type="state"]::-webkit-scrollbar-thumb,
.dropdown-menu[data-type="city"]::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}

.dropdown-menu li {
  cursor: pointer;
}

.dropdown-toggle:hover {
  background-color: #e4e4e7;
}

.main-content-sort {
  display: flex;
  position: relative;
  background-color: #fff;
  width: 20%;
  padding: 6px;
  border-radius: 8px;
}

.main-content-sort .dropdown-menu {
  width: 100%;
  left: 0;
}

.dropdown-menu-item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.dropdown-menu-item span {
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 300;
  white-space: nowrap;
}

.radio-label {
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 300;
  white-space: nowrap;
}

.dropdown-menu-item p {
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
}

.dropdown-sort {
  width: 100%;
  border: none;
  border-radius: 8px;
  background-color: #f4f4f6;
  cursor: pointer;
  height: 100%;
}

.dropdown-sort:hover {
  background-color: #e4e4e7;
}

.dropdown-toggle-sort {
  color: #282727;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  padding: var(--spacing-12) var(--spacing-16);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  height: 100%;
  font-size: 0.875rem;
}

.checkbox-button {
  accent-color: #b52e51;
  cursor: pointer;
}

.filterResult-item p,
.sortResult-item p {
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}

.filterResult-item svg,
.sortResult-item svg {
  cursor: pointer;
  border-left: 1px solid #e0e0e0;
  width: 1.5rem;
  height: 1.5rem;
}

.main-content-sortResult {
  display: none;
  margin-top: var(--spacing-16);
  align-items: center;
  flex-wrap: wrap;
}

.main-content-sortResult > * {
  margin-right: 12px;
}

.main-content-sortResult > *:last-child {
  margin-right: 0;
}

.main-content-sort .dropdown {
  position: static;
}

.main-content-sort .dropdown-toggle {
  justify-content: space-between;
}

.filterResult-item,
.sortResult-item {
  display: flex;
  border-radius: 4px;
  align-items: center;
  background-color: #fff;
}

.sortResult-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sortResult-items * {
  margin-right: 12px;
}

.sortResult-items > *:last-child {
  margin-right: 0;
}

.sortResult-clear {
  color: #b52e51;
  text-decoration: none;
  border-bottom: 1.5px solid #e0e0e0;
}

.main-content-description {
  background-color: #fff;
  border-radius: 16px;
  margin-top: 1.5rem;
}

.main-content-description h2 {
  color: var(--color-green);
  font-size: 2rem;
  line-height: 36px;
  padding-top: var(--spacing-20);
  padding-left: var(--spacing-20);
  padding-right: var(--spacing-20);
  font-weight: 600;
  margin-bottom: 12px;
}

.description-readMore {
  display: -ms-grid;
  display: grid;
  padding-left: var(--spacing-20);
  gap: 8px;
  padding-bottom: var(--spacing-20);
  padding-right: var(--spacing-20);
  flex-direction: column;
}

.description-readMore p {
  font-weight: 300;

  color: rgba(120, 136, 136, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height 0.4s ease;
  line-height: 1.125rem;
  max-height: calc(2.125rem * 1);
}

.description-readMore p.expanded {
  -webkit-line-clamp: unset;
  display: flex;
}

.description-readMore a {
  text-decoration: none;
  font-weight: 600;
  color: #282727;
  border-bottom: 1.5px solid #e0e0e0;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: auto;
}

.card-item-img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  position: relative;
  border-radius: 10px;
  grid-area: card-img;
}

.card-item-img .card-bg {
  display: block;
  position: relative;
  height: 100%;
}

.card-item-img .card-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-bg-icons {
  display: flex;
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
}

.card-bg-icons > * {
  margin-right: 5px;
}

.card-bg-icons > *:last-child {
  margin-right: 0;
}

.card-bg-icon {
  background: rgba(87, 87, 87, 0.52);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 6px;
  /*cursor: pointer;*/
}

.card-bg-icon > * {
  margin-right: 5px;
}

.card-bg-icon > *:last-child {
  margin-right: 0;
}

.card-bg-icon.disabled {
  cursor: auto;
}

.card-bg-icon svg {
  width: 20px;
  height: 20px;
}

.card-bg-icon span {
  color: #fff;
}

.main-content-cards {
  margin-bottom: 2rem;
}

.card-item-header {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  -ms-grid-columns: 1fr 12px auto;
  grid-template-columns: 1fr auto;
  width: 100%;
  grid-area: card-header;
}

.card-item-body-wrapper {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: flex;
  flex-direction: column;
  grid-area: card-body;
  position: relative;
}

.card-item-body-wrapper > * {
  margin-bottom: 12px;
}

.card-item-body-wrapper > *:last-child {
  margin-bottom: 0;
}

.card-items {
  padding: var(--spacing-16);
  display: grid;
  grid-template-columns: auto 46% 29%;
  gap: 12px;
  width: 100%;

  grid-template-areas:
    "card-img card-body card-feedback"
    "card-img card-information card-feedback"
    "card-img card-information card-buttons";
}

.main-content-card {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
}

.gold-cup-wrapper {
  padding-right: 6px;
  padding-bottom: 6px;
  background: #fff;
  position: absolute;
  z-index: 1;
  border-bottom-right-radius: 6px;
}

.gold-cup {
  background-color: #1e3839;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  justify-content: center;
  height: 2.25rem;
  padding: 0 8px;
}

.gold-cup svg {
  width: 1.5rem;
  height: 1.5rem;
}

.gold-cup span {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}

.name-logoTitle {
  display: flex;
  align-items: center;
  padding: 6px 0 6px 6px;
}

.name-logoTitle > * {
  margin-right: 8px;
}

.name-logoTitle > *:last-child {
  margin-right: 0;
}

.description-name {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.name-logo img {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  max-height: 48px;
  max-width: 100px;
}

.name-title a {
  color: #1e3839;
  font-size: 1.25rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.name-title p {
  font-size: 0.75rem;
  line-height: 20px;
  color: var(--color-black);
}

.score-cup {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.score-cup svg {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.score-cup p {
  font-size: 1rem;
  font-weight: 600;
}

.name-score {
  position: relative;
  padding: var(--spacing-10) var(--spacing-10) var(--spacing-10) 0;
  text-align: center;
  margin-left: 8px;
}

.name-score p {
  white-space: nowrap;
  color: var(--color-black);
}

.description-like {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: var(--spacing-14) var(--spacing-16);
}

.description-like svg {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.shopperReport-title-like {
  display: flex;
  position: relative;
  align-items: center;
}

/* .show-contacts,
.veiw-profile {
  height: 100% !important;
} */

.like-image {
  color: rgba(24, 122, 107, 1);
}

.like-image-inactive {
  color: rgba(171, 169, 168, 1);
}

.white-star-image {
  color: rgba(232, 178, 78, 1);
}

.white-star-image-inactive {
  color: rgba(171, 169, 168, 1);
}

.shopperReport-title-like svg {
  height: 1.5rem;
  width: 1.5rem;
}

.shopperReport-title-like p {
  padding-right: 5px;
  font-weight: 600;
  color: var(--color-green);
}

.shopperReport-title {
  display: flex;
  margin: 10px 10px 0 10px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}

.mystery-read-more-btn {
  width: 100%;
  display: inline-block;
  padding: 10px;
  text-align: right;
  font-weight: 600;
  color: #282727;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  position: relative;
  border-radius: 10px;
  grid-area: card-img;
}

.card-item-report {
  transition: 0.3s ease;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  grid-area: card-report;
  margin-bottom: 0;
}

.shopperReport-score {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 10px;
  row-gap: 5px;
}

.shopperReport-title-name h4 {
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--color-green);
}

.shopperReport-score-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  white-space: nowrap;
  -moz-column-gap: 4px;
  column-gap: 4px;
  row-gap: 5px;
}

.shopperReport-score-title {
  font-size: 0.75rem;
  color: var(--color-black);
}

.shopperReport-score-rating {
  display: flex;
  align-items: center;
  padding-left: 6px;
}

.shopperReport-score-rating p {
  margin: 0;
  margin-right: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  width: 1.25rem;
  color: var(--color-black);
}

.shopperReport-score-text {
  font-size: 0.75rem;
  color: rgba(171, 169, 168, 1);
  font-weight: 400;
  padding: 0 4px;
  white-space: normal;
}

.card-item-information {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  grid-area: card-information;
}

.card-information-title h4 {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.938rem;
  color: var(--color-green);
}

.card-information-text {
  position: relative;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: fade;
}

.card-information-text h1,
.card-information-text h2,
.card-information-text h3,
.card-information-text h4,
.card-information-text h5,
.card-information-text h6 {
  font-size: 1rem;
}

.card-information-text h2,
.card-information-text ol,
.card-information-text ul {
  display: none;
}

.card-information-text p:nth-of-type(n + 3) {
  display: none;
}

.card-information-text p {
  color: #aba9a8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: fade;
}

.card-information-text a {
  display: initial;
  font-weight: 600;
  color: #282727;

  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background: #ffffff;
  padding-left: 6px;
}

.card-information-text a::before {
  content: "Read more";
  background: #ffffff;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
}

.feedback-header-rating {
  display: flex;
  align-items: center;
  position: relative;
}

.feedback-header-rating-count {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 4px;
}

.feedback-header-rating svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feedback-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 6px auto;
  grid-template-columns: auto auto;
  gap: 6px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--spacing-10);
  border-bottom: 1px solid #e0e0e0;
}

.card-item-feedBackAndButton {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.feedback-header-title h4 {
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--color-green);
}

.header-search {
  background: none;
  width: 30px;
}

.feedback-header-score {
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  color: var(--color-green);
  margin-right: 4px;
}

.feedback-header-reviews {
  white-space: nowrap;
  color: rgba(171, 169, 168, 1);
}

.feedback-body-reviews {
  /* text-align: right; */
  color: #aba9a8;
  white-space: nowrap;
  width: 5.6875rem;
}

.card-item-feedback {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  grid-row: span 2;
  grid-area: card-feedback;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  /* height: 100%; */
}

.card-item-feedback.no-review .feedback-body {
  border: none;
  padding-bottom: 0;
}

.feedback-body {
  gap: 6px;
  display: -ms-grid;
  display: grid;
  padding: var(--spacing-10) 0;
  border-bottom: 1px solid #e0e0e0;
}

.listScore-second-item {
  display: flex;
  margin-top: 4px;
  gap: 7px;
  align-items: center;
}

.feedback-body-title {
  color: rgba(61, 59, 57, 1);
}

.feedback-body-rating {
  color: var(--color-black);
  text-align: end;
  margin-left: auto;
  /* margin-left: auto; */
  width: 25px;
}

.feedback-body-item {
  display: -ms-grid;
  display: grid;
  -moz-column-gap: 4px;
  column-gap: 4px;
  row-gap: 4px;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px 1fr;
  grid-template-columns: repeat(3, 1fr);
}

.feedback-body-item-grid {
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px 1fr !important;
  grid-template-columns: repeat(4, 1fr) !important;
  column-gap: 4px;
}

.feedback-footer-title {
  display: flex;
  align-items: center;
}

.feedback-footer-title > * {
  margin-right: 6px;
}

.feedback-footer-title > *:last-child {
  margin-right: 0;
}

.feedback-footer-title svg {
  width: 0.8912rem;
  height: 0.8519rem;
}

.feedback-footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8b24e;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  color: #e8b24e;
}

.feedback-footer {
  padding-top: var(--spacing-10);
}

.feedback-footer-title p {
  font-weight: 500;
  color: var(--color-black);
}

.feedback-footer a {
  color: #282727;
  font-weight: 600;
}

.button-contacts button a {
  color: #fff;
  text-decoration: none;
}

.button-profile {
  width: 50%;
  display: flex;
}

.btn-secondary {
  border: 1px solid #b52e51;
  font-weight: 700;
  border-radius: 8px;
  background-color: transparent;
  width: 100%;
  line-height: 10px;
  height: 3rem;
  color: #b52e51;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  text-decoration: none;
  font-size: 0.875rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-secondary a {
  color: #b52e51;
  text-decoration: none;
}

.button-contacts {
  width: 50%;
}

.card-item-buttons {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  display: flex;
  width: 100%;
  /* height: 100%; */
  margin-top: auto;
  grid-area: card-buttons;
}

.card-item-buttons > * {
  margin-right: 10px;
}

.card-item-buttons > *:last-child {
  margin-right: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination > * {
  margin-right: 6px;
}

.pagination > *:last-child {
  margin-right: 0;
}

.pagination-item {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  font-size: 0.875rem;
}

.pagination-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 0.875rem;
}

.pagination-v2.ellipsis {
  cursor: default;
}

.pagination-item .current,
.pagination-item .next,
.pagination-item .prev {
  background: rgba(181, 46, 81, 1);
  color: #fff;
}

.pagination-item .current {
  cursor: default;
}

.pagination-item .next_disabled,
.pagination-item .prev_disabled {
  background: #fff;
  color: rgba(224, 224, 224, 1);
  cursor: default;
}

.pagination svg {
  width: 0.4375rem;
  height: 0.6875rem;
}

.products {
  margin-top: 2rem;
  margin-bottom: 3.75rem;
}

.FAQ {
  display: flex;
  margin-bottom: 3.5rem;
}

.FAQ > * {
  margin-right: 1.875rem;
}

.FAQ > *:last-child {
  margin-right: 0;
}

.questions-wrapper,
.comments-wrapper {
  background: #fff;
  border-radius: var(--spacing-20);
  padding: 2.5rem 2rem;
  width: 50%;
}

.comments-wrapper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.comments-wrapper-title,
.questions-wrapper-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 2rem;
}

.question-items {
  display: flex;
  flex-direction: column;
}

.question-items > * {
  margin-bottom: 12px;
}

.question-items > *:last-child {
  margin-bottom: 0;
}

.question-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 244, 246, 1);
  border-radius: 8px;
  padding: 8px;
}

.question-item > * {
  margin-right: 1rem;
}

.question-item > *:last-child {
  margin-right: 0;
}

.question-item h3 {
  font-size: 1.25rem;
  padding-left: 8px;
  color: var(--color-green);
  font-weight: 500;
}

.question-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  background: var(--color-green);
  cursor: pointer;
  border-radius: 6px;
}

.question-item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.question-item-icon .icon-minus {
  display: none;
}

.question-item-content {
  display: -ms-grid;
  display: grid;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 8px;
}

.question-item-content ul {
  list-style: inside;
  list-style-type: disc;
}

.question-item-content ol {
  list-style: inside;
  list-style-type: decimal;
}

.question-item-content ul li,
.question-item-content ol li,
.question-item-content p,
.question-item-content {
  color: var(--color-black);
  font-weight: 400;
  font-size: 0.875rem;
  word-wrap: break-word;
}

.question-item-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-green);
}

.comments-items {
  display: flex;
  flex-direction: column;
}

.comments-items > * {
  margin-bottom: 28px;
}

.comments-items > *:last-child {
  margin-bottom: 0;
}

.comments-item {
  display: flex;
  align-items: flex-start;
}

.comments-item > * {
  margin-right: 10px;
}

.comments-item > *:last-child {
  margin-right: 0;
}

.comments-item-avatar {
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  height: 40px;
}

.comments-item-avatar img {
  border-radius: 50%;
}

.comments-item-main {
  display: flex;
  flex-direction: column;
}

.comments-item-title {
  font-size: 1.25rem;
  color: var(--color-black);
  font-weight: 500;
}

.comments-item-rating {
  display: flex;
  margin-bottom: 8px;
  margin-top: 3px;
}

.comments-item-rating > * {
  margin-right: 4px;
}

.comments-item-rating > *:last-child {
  margin-right: 0;
}

.comments-item-rating-stars {
  display: flex;
  color: #e8b24e;
}

.comments-item-rating-stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.comments-item-rating-date {
  color: rgba(171, 169, 168, 1);
  font-size: 0.75rem;
}

.comments-item-text {
  color: var(--color-black);
  margin-bottom: 12px;
}

.comments-item-link {
  color: var(--color-black);
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
}

.business {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.75rem;
  padding: 25px;
  background: var(--color-green);
  border-radius: var(--spacing-20);
}

.business-left {
  display: flex;
}

.business-left img {
  border-radius: 12px;
}

.business-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  margin-left: 24px;
}

.business-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.business-text {
  color: rgba(171, 169, 168, 1);
  font-size: 1.25rem;
}

.btn-tertiary {
  height: 3rem;
  border-radius: 8px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: var(--spacing-14) 3.125rem;
  width: 100%;
  line-height: 10px;
  font-size: 0.875rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-showMore-wrapper {
  margin-bottom: 20px;
}

.rating {
  padding: 2rem 1.75rem;
  background: #fff;
  margin-bottom: 3.75rem;
  border-radius: var(--spacing-20);
}

.rating-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.rating-title-wrapper svg {
  display: none;
}

.rating-title {
  color: var(--color-green);
  font-size: 2rem;
  font-weight: 600;
}

.rating-grid {
  margin-top: var(--spacing-20);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.875rem 1fr 1.875rem 1fr 1.875rem 1fr 1.875rem 1fr
    1.875rem 1fr;
  grid-template-columns: repeat(6, 1fr);
  row-gap: var(--spacing-16);
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
}

.rating-grid div {
  padding: 10px 8px;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
}

.rating-grid div:hover {
  background: rgba(244, 244, 246, 1);
}

.footer-content {
  background: var(--color-green);
  padding-top: 3.75rem;
  border-top-right-radius: var(--spacing-20);
  border-top-left-radius: var(--spacing-20);
}

.footer-content-top {
  padding-bottom: 3.75rem;
  display: flex;
  justify-content: space-between;
}

.footer-content-image {
  display: none;
}

.footer-content-top-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15rem 2.25rem 15rem 2.25rem 15rem 2.25rem 15rem;
  grid-template-columns: repeat(4, 15rem);
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  -ms-grid-rows: auto 2.25rem auto;
  grid-template-areas:
    "rankings contractors partners about"
    "rankings customers evaluation marketing";
}

.footer-content-top-text {
  margin-top: 16px;
  margin-bottom: 24px;
  color: rgba(165, 175, 176, 1);
}

.footer-content-top-image-wrapper {
  margin-bottom: 2.5rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.footer-content-top-image {
  position: relative;
}

.footer-achievement-top {
  position: absolute;
  top: 25.5%;
  white-space: nowrap;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

.footer-achievement-text {
  position: absolute;
  bottom: 42%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-achievement-text p {
  position: absolute;
  width: 90%;
  color: var(--color-green);
  text-align: center;
  font-size: 0.625rem;
  line-height: 0.75rem;
}

.footer-achievement-year {
  position: absolute;
  bottom: 12%;
  width: 100%;
  text-align: center;
  color: var(--color-green);
  font-size: 0.875rem;
  line-height: 100%;
}

.footer-content-top-social-links {
  display: flex;
  margin-bottom: 2.5rem;
}

.footer-content-top-social-links > * {
  margin-right: 8px;
}

.footer-content-top-social-links > *:last-child {
  margin-right: 0;
}

.footer-content-top-social-links a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  height: 2rem;
  width: 2rem;
  color: #fff;
}

.footer-content-top-social-links svg {
  fill: white;
  width: 1rem;
  height: 1rem;
}

.footer-content-top-social-links svg.facebook-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-first-block {
  width: 14rem;
}

.footer-rankings {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(255, 255, 255, 0.03);
  grid-area: rankings;
  border-radius: 10px;
}

.footer-contractors {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(255, 255, 255, 0.03);
  grid-area: contractors;
  border-radius: 10px;
}

.footer-partners {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(255, 255, 255, 0.03);
  grid-area: partners;
  border-radius: 10px;
}

.footer-about {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(255, 255, 255, 0.03);
  grid-area: about;
  border-radius: 10px;
}

.footer-customers {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(255, 255, 255, 0.03);
  grid-area: customers;
  border-radius: 10px;
}

.footer-evaluation {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(255, 255, 255, 0.03);
  grid-area: evaluation;
  border-radius: 10px;
}

.footer-marketing {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(255, 255, 255, 0.03);
  grid-area: marketing;
  border-radius: 10px;
}

.footer-item-title-wrapper svg {
  display: none;
}

.footer-item-title {
  margin-bottom: var(--spacing-20);
  font-size: 1.25rem;
  color: rgba(165, 175, 176, 1);
  font-weight: 500;
}

.footer-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-item-list > * {
  margin-bottom: 1.25rem;
}

.footer-item-list > *:last-child {
  margin-bottom: 0;
}

.footer-item-list li {
  color: rgba(249, 249, 249, 1);
  font-size: 0.875rem;
  cursor: pointer;
}

.footer-line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content-articles {
  padding-top: 2rem;
  padding-bottom: 2.875rem;
}

.footer-content-articles-title-wrapper {
  margin-top: 0;
  margin-bottom: 2rem;
}

.footer-content-articles-title-wrapper svg {
  display: none;
}

.footer-content-articles-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
}

.footer-content-articles-title-mobile {
  display: none;
}

.footer-content-articles-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr 3rem 1fr 3rem 1fr 3rem 1fr 3rem 1fr
    3rem 1fr;
  grid-template-columns: repeat(8, 1fr);
  row-gap: 1rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  color: #fff;
  margin-bottom: 2rem;
}

.footer-content-articles-grid div {
  font-size: 0.875rem;
}

.footer-content-bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  align-items: center;
}

.footer-content-bottom-copyright {
  display: flex;
}

.footer-content-bottom-copyright > * {
  margin-right: 12px;
}

.footer-content-bottom-copyright > *:last-child {
  margin-right: 0;
}

.footer-content-bottom-copyright p {
  display: flex;
  color: rgba(165, 175, 176, 1);
}

.footer-content-bottom-copyright p > * {
  margin-right: 10px;
}

.footer-content-bottom-copyright p > *:last-child {
  margin-right: 0;
}

.footer-content-bottom-links {
  display: none;
}

.footer-content-copyright {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

.footer-content-copyright > * {
  margin-bottom: 1rem;
}

.footer-content-copyright > *:last-child {
  margin-bottom: 0;
}

.footer-content-copyright h3 {
  color: rgba(171, 169, 168, 1);
  font-size: 1.25rem;
  font-weight: 500;
}

.footer-content-copyright p {
  color: rgba(171, 169, 168, 1);
  line-height: 1.5rem;
}

details > summary {
  list-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: default;
}

.no-toggle[open] summary {
  pointer-events: none;
}

.search-mobile-wrapper,
.filter-mobile-wrapper,
.sort-mobile-wrapper {
  display: none;
}

.main-content-description .main-content-title {
  display: block;
}

.main-content-description .main-content-title-mobile {
  display: none;
}

.card-bg-heart-icon {
  display: none;
}

.burger-menu {
  display: none;
}

.company-content {
  margin-bottom: 6.25rem;
}

.company-header {
  background: rgba(244, 244, 246, 1);
  /* margin-bottom: 1.875rem; */
  padding: 10px 0 30px 0;
  position: sticky;
  top: 85px;
  z-index: 10;
}

.company-header > div {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  justify-content: space-between;
}

.company-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-right: 1rem;
}

.company-title {
  display: flex;
  margin-right: 8px;
}

.company-title-rating {
  position: relative;
  width: 3.4375rem;
  height: 4.375rem;
  margin-right: 0.75rem;
}

.company-title-placement {
  position: absolute;
  top: -5px;
  left: 0;
  width: 3.4375rem;
  height: 6.25rem;
}

.company-title-rating span {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.company-title-rating svg {
  width: 1.5rem;
  height: 1.5rem;
}

.company-title-title {
  display: flex;
  align-items: center;
  margin-right: 1.875rem;
}

.company-title-logo {
  background: rgba(249, 249, 249, 1);
  border-radius: 8px;
  border: 1px solid rgba(224, 224, 224, 1);
  padding: 1rem 0.625rem;
  height: 4.375rem;
  margin-right: 0.625rem;
}

.company-title-logo img,
.company-title-logo picture {
  height: 100%;
  border-radius: 6px;
}

.company-title-name {
  color: var(--color-green);
}

.company-title-name h1 {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company-title-name p {
  font-size: 0.75rem;
}

.company-title-heart {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}

.company-getEstimate {
  display: flex;
  background: rgba(244, 244, 246, 1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.company-getEstimate-social {
  display: flex;
  margin-right: 8px;
  align-items: center;
}

.company-getEstimate-social p {
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin-right: 8px;
}

.company-getEstimate-social-icons {
  display: flex;
  align-items: center;
}

.company-getEstimate-social-icons > * {
  margin-right: 10px;
}

.company-getEstimate-social-icons > *:last-child {
  margin-right: 0;
}

.company-getEstimate-social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(181, 46, 81, 1);
  border-radius: 50%;
}

.company-getEstimate-social-icons a.disabled {
  pointer-events: none;
  background: #e0e0e0;
  cursor: not-allowed;
}

.company-getEstimate-social-icons svg {
  color: #fff;
  fill: #fff;
  width: 1.375rem;
  height: 1.375rem;
}

.company-getEstimate-social-icons svg.facebook-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.company-getEstimate-number {
  display: flex;
  background: #fff;
  border-radius: 8px;
  padding: 1rem 0.625rem;
  height: 3rem;
}

.company-getEstimate-number a {
  font-weight: 700;
  color: rgba(181, 46, 81, 1);
}

.company-getEstimate-number svg {
  margin-left: 10px;
  color: rgba(181, 46, 81, 1);
  width: 1.25rem;
  height: 1.25rem;
}

.company-getEstimate-buttons {
  display: flex;
}

.company-getEstimate-buttons > * {
  margin-right: 8px;
}

.company-getEstimate-buttons > *:last-child {
  margin-right: 0;
}

.company-getEstimate-message button {
  height: 3.375rem;
}

.phone-number {
  white-space: nowrap;
}

.company-body {
  display: flex;
}

.company-aside {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  width: 30%;
  height: 100%;

  margin-right: 2rem;
  /*flex: 1 0 30%;*/
  will-change: transform;
  position: relative;
  /* top: 205px; */
}

.company-aside > * {
  margin-bottom: 1.25rem;
}

.company-aside > *:last-child {
  margin-bottom: 0;
}

.company-aside picture,
.company-aside img {
  display: block;
  width: 100%;
  cursor: pointer;
}

.company-aside-photos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 0;
}

.company-aside-photos > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.company-aside-photos img {
  height: 100%;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
}

.company-aside-first-line,
.company-aside-second-line {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.company-aside-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-green);
}

.company-aside img,
.company-aside picture {
  border-radius: 16px;
  height: 15.9375rem;
}

.company-main {
  display: flex;
  flex-direction: column;
  width: 70%;
  flex: 1 0 70%;
}

.company-main > * {
  margin-bottom: 1.875rem;
}

.company-main > *:last-child {
  margin-bottom: 0;
}

.company-score {
  display: flex;
}

.company-score .card-item-feedback {
  flex: 1 0 39%;
  border: none;
  background: #fff;
  padding: 1rem;
  border-radius: 16px;
}

.company-info {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  /* padding-left: 1.25rem; */
  /* padding-bottom: 1.25rem; */
  /* padding-top: 0.65rem; */
  /* padding-right: 0.65rem; */
  border-radius: 16px;
  flex: 1 1 61%;

  margin-right: 1.875rem;
}

.company-info > h2 {
  font-size: 1.25rem;
  color: var(--color-green);
}

.company-info > h3 {
  font-size: 1.125rem;
  color: var(--color-green);
}

.company-info > h3,
.company-info > h4 {
  font-size: 1rem;
  color: var(--color-green);
}

.company-info > * {
  margin-bottom: 0.9375rem;
}

.company-info ul {
  list-style: inside;
  list-style-type: disc;
}

.company-info ol {
  list-style: inside;
  list-style-type: decimal;
}

.company-info > *:last-child {
  margin-bottom: 0;
}

.company-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}

.company-info-total {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: relative;
}

.company-info-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}

.company-info-rating span {
  color: var(--color-green);
  font-size: 1rem;
  font-weight: 600;
}

.company-info-total svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 5px;
}

.company-info-total p {
  color: var(--color-black);
  white-space: nowrap;
  line-height: 18px;
}

.company-info-more {
  display: flex;
  align-items: center;
  margin-top: auto;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /*margin-top: 34px;*/
}

.company-info-arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.company-info-arrow.rotated {
  transform: rotate(180deg);
}

.company-info-more svg {
  width: 15px;
  height: 7px;
}

.company-info-more span {
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
}

.company-info-title {
  font-size: 20px;
  font-weight: 600;
  margin-right: 32px;
  margin-bottom: 16px;
  color: var(--color-green);
}

.company-info > p {
  color: rgba(120, 136, 136, 1);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* text-overflow: ellipsis; */
  transition: max-height 0.4s ease;
  line-height: 1.125rem;
  max-height: calc(1.125rem * 3);
  font-size: 0.875rem;
  margin-bottom: 5px;
}

.company-info > p.expanded {
  -webkit-line-clamp: unset;
  display: block;
  margin-bottom: 0.9375rem;
}

.company-info > p h2 {
  margin-bottom: 5px;
  color: var(--color-green);
}

.company-info > p p,
.company-info > p li {
  line-height: 1.125rem;
  color: var(--color-black);
}

.company-score .feedback-footer-text {
  margin-top: 6px;
}

.feedback-footer-text {
  position: relative;
}

.feedback-footer-text p {
  color: rgba(171, 169, 168, 1);
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feedback-footer-text a {
  display: initial;
  font-weight: 600;
  color: #282727;

  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background: #ffffff;
  padding-left: 6px;
}

.feedback-footer-text a::before {
  content: "Read more";
  background: #ffffff;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
}

.personScore-text-more {
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  font-weight: 600;
  font-size: 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 6px;
  color: #282727;
}

.company-report {
  padding: 1.5rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.company-report > * {
  margin-bottom: 1rem;
}

.company-report > *:last-child {
  margin-bottom: 0;
}

.company-report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-report-header p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-green);
  margin-right: 5px;
}

.company-report-header h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-green);
}

.company-report-points {
  display: flex;
  align-items: center;
}

.company-report-points-rating {
  display: flex;
  align-items: center;
  margin-right: 5px;
  position: relative;
}

.company-report-points svg {
  width: 1.5rem;
  height: 1.5rem;
}

.company-report-points span {
  color: rgba(171, 169, 168, 1);
  font-size: 0.875rem;
  line-height: 0.875rem;
}

.company-report-item-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.company-report-item-body {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.company-report-item-body > * {
  margin-right: 4px;
}

.company-report-item-body > *:last-child {
  margin-right: 0;
}

.company-report-item-body span {
  color: rgba(171, 169, 168, 1);
  font-size: 0.875rem;
}

.company-report-item-content {
  position: absolute;
  display: none;
  left: 0;
  top: 105%;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  background: #fff;
  z-index: 1;
  width: 200%;
  pointer-events: none;
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}

.company-report-item-content--right {
  right: 0;
  left: auto;
}

.company-report-item-content.active {
  display: block;
  pointer-events: auto;
}

.company-report-item-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.company-report-item-content-header h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-green);
  margin-right: 1rem;
}

.company-report-item-content p {
  color: rgba(120, 136, 136, 1);
  white-space: pre-line;
}

.company-report-item-content-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(181, 46, 81, 1);
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
}

.company-report-item-content-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.company-report-item-button:hover .plus-icon {
  display: none;
}

.company-report-item-button:hover .minus-icon {
  pointer-events: auto;
  display: block;
}

.company-report-item-button img.plus-icon,
.company-report-item-content-icon svg.cross-icon {
  display: block;
}

.company-report-item-button img.minus-icon,
.company-report-item-content-icon svg.cross-icon {
  display: none;
}

.company-report-item.active .company-report-item-button img.plus-icon {
  display: none;
}

.company-report-item.active .company-report-item-button img.minus-icon {
  display: block;
}

.shopperReport-score-point {
  display: flex;
}

.shopperReport-score-point > * {
  margin-right: 2px;
}

.shopperReport-score-point > *:last-child {
  margin-right: 0;
}

.company-report-item-points {
  display: flex;
}

.shopperReport-score-points > * {
  margin-right: 2px;
}

.shopperReport-score-points > *:last-child {
  margin-right: 0;
}

.company-report-item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(244, 244, 246, 1);
  padding: 14px;
  padding-right: 6px;
  border-radius: 8px;
  cursor: pointer;
}

.company-report-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.company-report-item-header h3 {
  color: var(--color-green);
  font-weight: 500;
  margin-right: 6px;
}

.company-report-item-button {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #fff; */
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
}

.company-report-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.company-services {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
}

.company-services-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.company-services-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.company-services-item {
  position: relative;
  transition: 0.1s;
}

.company-services-item:hover {
  transform: scale(1.05);
}

.company-services-item p {
  position: absolute;
  top: 24px;
  left: 16px;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
}

.company-services-item span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}

.company-services-item img {
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
}

.company-director {
  padding: 1.25rem;
  display: flex;
  background: #fff;
  border-radius: 16px;
}

.company-director-header {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: center;
}

.company-director-header picture {
  display: none;
  margin-right: 12px;
}

.company-director-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.company-director-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.company-director-audio {
  display: flex;
  align-items: center;
  background-color: rgba(244, 244, 246, 1);
  border-radius: 8px;
  padding: 8px 10px;
  width: 100%;
  margin-bottom: 16px;
}

.company-director-text {
  color: rgba(120, 136, 136, 1);
}

.company-director-more {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  margin-top: auto;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.company-director-more svg {
  width: 15px;
  height: 7px;
}

.company-director-more span {
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
}

.company-director-left {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.company-director-right {
  width: 50%;
}

.company-director-right img {
  border-radius: 16px;
  width: 100%;
}

.audio-play-btn {
  border: 1px solid #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  margin-right: 10px;
}

#audioProgress {
  flex-grow: 1;
  margin-right: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  cursor: pointer;
}

#audioProgress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
}

#audioDuration {
  font-size: 0.75rem;
}

.company-video {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border-radius: 16px;
}

.company-video-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.company-video video {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.company-video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0 20px 18px 20px;
}

.company-video-items {
  display: flex;
  gap: 16px;
}

.company-video-item {
  position: relative;
  width: 33.333%;
}

.company-video-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.company-video-item-play svg {
  width: 48px;
  height: 48px;
  color: #fff;
}

.company-video-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}

.company-video-duration {
  background: linear-gradient(
    135deg,
    rgba(87, 87, 87, 0.51),
    rgba(87, 87, 87, 0.2)
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 4px 6px;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 6px;
  color: #fff;
}

.company-contacts {
  display: -ms-grid;
  display: grid;
  padding: 1.25rem;
  background: var(--color-green);
  border-radius: 16px;
  row-gap: 1rem;
  -moz-column-gap: 4.375rem;
  column-gap: 4.375rem;
  -ms-grid-columns: 1fr 4.375rem 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 1rem auto;
  grid-template-areas:
    "contacts-title contacts-location"
    "contacts-social contacts-location";
}

.company-contacts-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: contacts-title;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
}

.company-contacts-social {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: contacts-social;
  display: flex;
  flex-direction: column;
}

.company-contacts-social .btn-primary {
  margin-top: auto;
}

.company-contacts-location {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  display: flex;
  flex-direction: column;
  grid-area: contacts-location;
}

.company-contacts-map {
  height: 100%;
  margin-bottom: 12px;
}

.company-contacts-map img {
  border-radius: 16px;
}

.company-contacts-location iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.company-contacts-social-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.875rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.875rem;
  -moz-column-gap: 0.875rem;
  column-gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.company-contacts-social-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
  transition: 0.1s;
  cursor: pointer;
}

.company-contacts-social-item > * {
  margin-right: 5px;
}

.company-contacts-social-item > *:last-child {
  margin-right: 0;
}

.company-contacts-social-item.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.company-contacts-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.company-contacts-social-item p {
  color: #fff;
}

.company-contacts-social-icon svg {
  max-width: 16px;
  max-height: 16px;
}

.company-contacts-social-icon svg.facebook-icon {
  max-width: 20px;
  max-height: 20px;
}

.company-contacts-street {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.company-contacts-street > * {
  margin-right: 0.5rem;
}

.company-contacts-street > *:last-child {
  margin-right: 0;
}

.company-contacts-street-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.company-contacts-street-icon svg {
  max-width: 20px;
  max-height: 20px;
}

.company-contacts-street p {
  color: #fff;
}

/*.company-contacts-social-item.active {*/
/*    background-color: #fff;*/
/*}*/

/*.company-contacts-social-item.active .company-contacts-social-icon {*/
/*    background-color: var(--color-green);*/
/*}*/

/*.company-contacts-social-item.active p {*/
/*    font-weight: 600;*/
/*    color: var(--color-green);*/
/*}*/

.company-contacts-social-item:hover {
  background-color: #fff;
}

.company-contacts-social-item:hover .company-contacts-social-icon {
  background-color: var(--color-green);
}

.company-contacts-social-item:hover p {
  font-weight: 600;
  color: #aba9a8 !important;
  /* color: #aba9a8; */
  /* color: var(--color-green); */
}

.company-benefits {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.company-benefits-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.company-benefits-items {
  display: flex;
  flex-wrap: wrap;
  margin: -0.375rem;
}

.company-benefits-item {
  margin: 0.375rem;
  display: flex;
  align-items: center;
  background: rgba(235, 235, 235, 1);
  padding: 4px 16px 4px 16px;
  border-radius: 6px;
  min-height: 40px;
}

.company-benefits-item p {
  padding-right: 0.75rem;
  color: var(--color-black);
}

.company-benefits-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.company-benefits-item-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.company-reviews {
  display: flex;
  flex-direction: column;
}

.company-reviews > * {
  margin-bottom: 1.25rem;
}

.company-reviews > *:last-child {
  margin-bottom: 0;
}

.company-reviews-recommendation {
  font-size: 0.875rem;
  padding: 0 4px;
}

.company-reviews-no-reviews {
  font-size: 1.125rem;
  color: var(--color-black);
}

.company-reviews-title {
  font-size: 1.75rem;
  font-weight: 600;
}

.company-reviews-filters {
  display: flex;
  flex-wrap: wrap;
  margin: -0.375rem;
}

.howSelect-buttons {
  display: none;
}

.company-reviews-filter {
  display: flex;
  align-items: center;
  margin: 0.375rem;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 6px;
  background: rgba(235, 235, 235, 1);
  cursor: pointer;
  transition: 0.1s;
}

.company-reviews-filter p {
  color: var(--color-black);
}

.company-reviews-filter.active {
  background-color: var(--color-green);
}

.company-reviews-filter.active p {
  color: #fff;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.slider-container {
  overflow: hidden;
  flex: 1;
}

.company-reviews-items {
  display: flex;
  position: relative;
  margin-bottom: 2.5rem;
  transition: transform 0.4s;
}

.company-reviews-items > * {
  margin-right: var(--gap);
}

.company-reviews-items > *:last-child {
  margin-right: 0;
}

.company-reviews-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  background: #fff;
  flex: 0 0 calc(33.3333333333% - var(--gap) * 2 / 3);
}

.company-reviews-item > * {
  margin-bottom: 1rem;
}

.company-reviews-item > *:last-child {
  margin-bottom: 0;
}

.company-reviews-item.hidden {
  display: none;
}

.company-reviews-item-source {
  display: flex;
  align-items: center;
}

.company-reviews-item-source > * {
  margin-right: 5px;
}

.company-reviews-item-source > *:last-child {
  margin-right: 0;
}

.company-reviews-item-source span {
  color: rgba(171, 169, 168, 1);
  font-size: 0.875rem;
  font-weight: 400;
}

.company-reviews-item-source svg {
  width: 16px;
  height: 16px;
}

.company-reviews-item-header {
  display: flex;
  align-items: center;
}

.company-reviews-item-header img {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  margin-right: 12px;
}

.company-reviews-item-name h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company-reviews-item-name p {
  color: rgba(171, 169, 168, 1);
}

.company-reviews-item-rating {
  display: flex;
  align-items: center;
  border-radius: 25px;
  border: 1px solid rgba(232, 178, 78, 1);
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: auto;
  padding: 2px 4px;
  color: rgba(232, 178, 78, 1);
  height: 23px;
}

.company-reviews-item-rating > * {
  margin-right: 3px;
}

.company-reviews-item-rating > *:last-child {
  margin-right: 0;
}

.company-reviews-item-rating svg {
  width: 15px;
  height: 14px;
}

.company-reviews-item-comment {
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: max-height 0.4s ease;
  max-height: calc(1.25rem * 8);
}

.company-reviews-item-comment.expanded {
  display: block;
  -webkit-line-clamp: unset;
  transition: max-height 0.4s ease;
}

.company-reviews-item-link {
  font-weight: 600;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: auto;
  margin-top: auto;
  cursor: pointer;
}

.company-reviews-control {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 46, 81, 1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 1;
}

.company-reviews-control.disabled {
  cursor: default;
  pointer-events: none;
  background: #fff;
  color: rgba(224, 224, 224, 1);
}

.company-reviews-prev {
  left: -16px;
}

.company-reviews-next {
  right: -16px;
}

.company-reviews-control svg {
  width: 8px;
  height: 11px;
}

.company-articles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-articles-title {
  font-size: 1.75rem;
  font-weight: 600;
}

.company-articles-items {
  display: flex;
  gap: 16px;
}

.company-articles-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 1rem;
  width: 33%;
  border-radius: 16px;
}

.company-articles-item img {
  border-radius: 16px;
  width: 100%;
}

.company-articles-date {
  color: rgba(171, 169, 168, 1);
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 4px;
}

.company-articles-text {
  font-size: 1.25rem;
  font-weight: 500;
}

.company-feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem;
}

.company-feedback > * {
  margin-bottom: 1.625rem;
}

.company-feedback > *:last-child {
  margin-bottom: 0;
}

.company-feedback-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #282727;
  line-height: normal;
}

.company-feedback-sub-title {
  font-size: 32px;
  font-weight: 600;
  color: #282727;
}

.company-feedback-subtitle {
  color: #282727;
}

.company-feedback-grid {
  display: flex;
  width: 100%;
}

.company-feedback-form {
  padding: 1.5rem;
  background: #f4f4f6;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width: 47%;
  margin-right: 1.25rem;
}

.company-feedback-form > * {
  margin-bottom: 12px;
}

.company-feedback-form > *:last-child {
  margin-bottom: 0;
}

.company-feedback-form input,
.company-feedback-form textarea {
  border: none;
  outline: none;
  background: #fff;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 8px;
  padding: 0.875rem 0.75rem;
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.company-feedback-form textarea::-webkit-scrollbar {
  width: 0.4em;
}

.company-feedback-form textarea::-webkit-scrollbar,
.company-feedback-form textarea::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

.company-feedback-form textarea::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

.company-feedback-form input:focus,
.company-feedback-form textarea:focus {
  border: none;
  outline: none;
}

.company-feedback-form input::-webkit-input-placeholder,
.company-feedback-form textarea::-webkit-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input::-moz-placeholder,
.company-feedback-form textarea::-moz-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input:-ms-input-placeholder,
.company-feedback-form textarea:-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input::-ms-input-placeholder,
.company-feedback-form textarea::-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input::-webkit-input-placeholder,
.company-feedback-form textarea::-webkit-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input::-moz-placeholder,
.company-feedback-form textarea::-moz-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input:-ms-input-placeholder,
.company-feedback-form textarea:-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input::-ms-input-placeholder,
.company-feedback-form textarea::-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-form input::placeholder,
.company-feedback-form textarea::placeholder {
  color: rgba(165, 175, 176, 1);
}

.company-feedback-file {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 4px;
  margin-top: 4px;
}

.company-feedback-file p {
  color: #fff;
  margin-right: 4px;
}

.company-feedback-file svg {
  width: 16px;
  height: 16px;
}

.company-feedback-social-dropdown {
  display: none;
}

.company-feedback-social {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 1.25rem;
}

.company-feedback-social-item {
  display: flex;
  align-items: center;
  background: #f4f4f6;
  /* background: rgba(255, 255, 255, 0.1); */
  padding: 1.25rem 0.75rem;
  border-radius: 12px;
  transition: 0.1s;
  cursor: pointer;
  transition: 0.5s all;
  border: 1px solid #f4f4f6;
}

.company-feedback-social-item.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
  /* background: #f4f4f6; */
  background: #eaeaea;
}

.company-feedback-social-item.disabled > .company-feedback-social-icon > svg {
  fill: #aba9a8;
  color: #aba9a8;
}

.company-feedback-social-item.disabled > .company-feedback-social-icon {
  background: #fff;
}

.company-feedback-social-item.disabled > p {
  color: #aba9a8;
}
/*.company-feedback-social-item.active {*/
/*    background-color: #fff;*/
/*}*/

/*.company-feedback-social-item.active .company-feedback-social-icon {*/
/*    background-color: var(--color-green);*/
/*}*/

/*.company-feedback-social-item.active p {*/
/*    font-weight: 600;*/
/*    color: var(--color-green);*/
/*}*/

/* .company-feedback-social-item:hover { */
/* background-color: #fff; */
/* } */

.company-feedback-social-item:hover .company-feedback-social-icon {
  /* background-color: #fff; */
  /* border: 1px; */
  /* background-color: var(--color-green); */
}
.company-feedback-social-item:hover .company-feedback-social-icon svg {
}
.company-feedback-social-icon > svg {
  color: #fff;
  fill: #fff;
}
/* .company-feedback-social-item:hover p {
  font-weight: 600;
} */
.company-feedback-social-item:hover {
  border: 1px solid #b52e51;
}

.company-feedback-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b52e51;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 50%;
  color: #fff;
  width: 2rem;
  height: 2rem;
  margin-right: 10px;
}

.company-feedback-social-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.company-feedback-social-icon svg.facebook-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.company-feedback-social-text {
  color: #282727;
  font-size: 1.25rem;
  font-weight: 500;
}

.company-feedback-social-text > span {
  font-size: 14px;
  font-weight: 500;
}

.company-feedback-location-wrapper {
  display: flex;
  flex-direction: column;
  width: 53%;
}

.company-feedback-location {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.company-feedback-map {
  height: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.company-feedback-location iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.company-feedback-street {
  display: flex;
  align-items: center;
  background: #f4f4f6;
  /* background: rgba(255, 255, 255, 0.1); */
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.company-feedback-street-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  /* color: #fff; */
  color: #282727;
  background: #fff;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.1); */
  margin-right: 0.5rem;
}

.company-feedback-street-icon svg {
  max-width: 20px;
  max-height: 20px;
}

.company-feedback-street p {
  color: #282727;
}

.other-companies {
  margin-bottom: 6.25rem;
}

.other-companies-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 2rem;
}

.other-companies-title span {
  color: rgba(30, 56, 57, 0.5);
}

.company-freeEstimate-mobile {
  display: none;
}

.mobile-menu-wrapper.menu-closed {
  -webkit-clip-path: circle(0 at 100% 0);
  clip-path: circle(0 at 100% 0);
}

.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.5s ease all;
  -webkit-clip-path: circle(100%);
  clip-path: circle(100%);
  background: rgba(244, 244, 246, 1);
}

.mobile-menu {
  height: 100vh;
  overflow-y: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 15px;
  padding-top: 105px;
}

.mobile-menu-inner > * {
  margin-bottom: 32px;
}

.mobile-menu-inner > *:last-child {
  margin-bottom: 0;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
}
.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}

/* один пункт меню */
.mobile-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f4f4f6;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.mobile-menu-magazine-sub {
  margin-top: 10px;
}

.mobile-menu-item-magazine {
  .magazine-toggle {
    display: none;
  }

  .mobile-menu-magazine-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding-left: 12px;
    list-style: none;
    margin: 0;
  }

  .mobile-menu-magazine-sub a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
  }

  .mobile-menu-magazine-sub a:hover,
  .mobile-menu-magazine-sub a:focus {
    background: #ececec;
  }

  .magazine-toggle:checked + label + .mobile-menu-magazine-sub {
    max-height: 1000px;
    margin-top: 10px;
  }

  .magazine-toggle:checked + label img {
    transform: rotate(180deg);
  }

  label img {
    transition: transform 0.25s ease;
  }
}

.mobile-menu-items > * {
  margin-bottom: 10px;
}

.mobile-menu-items > *:last-child {
  margin-bottom: 0;
}

.mobile-subMenu-items {
  display: flex;
  flex-direction: column;
}

.mobile-subMenu-items > * {
  margin-bottom: 10px;
}

.mobile-subMenu-items > *:last-child {
  margin-bottom: 0;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  color: var(--color-black);
  cursor: pointer;
}

.mobile-menu-item p {
  font-size: 14px;
  color: var(--color-black);
}

.mobile-menu-item a {
  font-size: 14px;
  color: var(--color-black);
}

.mobile-menu-item svg {
  width: 8px;
  height: 8px;
}

.mobile-menu-social {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.mobile-menu-social > * {
  margin-right: 10px;
}

.mobile-menu-social > *:last-child {
  margin-right: 0;
}

.filter-link.active .radio-label {
  font-weight: 700;
}

.mobile-menu-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  color: #000;
  width: 32px;
  height: 32px;
}

.mobile-menu-social-link svg {
  max-width: 20px;
  max-height: 20px;
}

.mobile-menu-back {
  display: flex;
  align-items: center;
  color: rgba(181, 46, 81, 1);
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  cursor: pointer;
}

.mobile-menu-back-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  color: rgba(181, 46, 81, 1);
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.mobile-menu-back-icon svg {
  width: 8px;
  height: 8px;
}

.main-menu {
  display: flex;
}

.sub-menu {
  margin-top: -30px;
  display: none;
}

.bar {
  display: inline-block;
  width: 15px;
  height: 4px;
  background-color: lightgray;
  margin-right: 2px;
  border-radius: 18px;
  position: relative;
}

.bar.filled {
  background-color: rgba(24, 122, 107, 1);
}

.bar.partial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 18px;
  background-color: rgba(24, 122, 107, 1);
  width: var(--partial-width);
}

.item-stars {
  display: flex;
  border-radius: 25px;
  border: 1px solid #e8b24e;
  padding: 0 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.star-wrapper {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  overflow: hidden;
}

.item-star {
  width: 100%;
  height: 100%;
  color: #ccc;
}

.star-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #e8b24e;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  transition: width 0.3s ease;
  mix-blend-mode: color;
}

.card-item-buttons-mobile {
  display: none;
}

.card-item-rank-wrapper {
  position: absolute;
  left: 12px;
  top: 0;
}

.card-item-overlay {
  display: none;
}

.card-item-rank {
  position: relative;
  height: 94px;
  width: 56px;
}

.card-item-rank img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.card-item-top {
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  top: 50%;
  left: 50%;
  z-index: 1;
  color: #fff;
  transform: translateY(-63%) translateX(-50%);
}

.card-item-year {
  position: absolute;
  font-size: 10px;
  font-weight: 400;
  bottom: 8%;
  left: 50%;
  z-index: 1;
  color: var(--color-green);
  transform: translateY(-20%) translateX(-50%);
}

.card-show-more {
  display: none;
}

.home-content-placement-more {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 11;
}

.modal-wrapper {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 32.5rem;
  overflow-y: auto;
}

.modal-wrapper > * {
  margin-bottom: 20px;
}

.modal-wrapper > *:last-child {
  margin-bottom: 0;
}

.modal-wrapper::-webkit-scrollbar {
  width: 0.3em;
}

.modal-wrapper::-webkit-scrollbar,
.modal-wrapper::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

.modal-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

.modal-order-header,
.modal-contacts-header {
  display: flex;
  flex-direction: column;
}

.modal-order-header > *,
.modal-contacts-header > * {
  margin-bottom: 20px;
}

.modal-order-header > *:last-child,
.modal-contacts-header > *:last-child {
  margin-bottom: 0;
}

.modal-order-socials,
.modal-contacts-socials {
  display: flex;
  justify-content: space-between;
}

.modal-order-socials > *,
.modal-contacts-socials > * {
  margin-right: 10px;
}

.modal-order-socials > *:last-child,
.modal-contacts-socials > *:last-child {
  margin-right: 0;
}

.modal-order-social,
.modal-contacts-social {
  display: flex;
  align-items: center;
  border: 1px solid rgba(224, 224, 224, 1);
  border-radius: 6px;
  width: 100%;
}

.modal-order-social > *,
.modal-contacts-social > * {
  margin-right: 4px;
}

.modal-order-social > *:last-child,
.modal-contacts-social > *:last-child {
  margin-right: 0;
}

.modal-order-social a,
.modal-contacts-social a {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
}

.modal-order-social a > *,
.modal-contacts-social a > * {
  margin-right: 4px;
}

.modal-order-social a > *:last-child,
.modal-contacts-social a > *:last-child {
  margin-right: 0;
}

.modal-order-social a.disabled,
.modal-contacts-social a.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.modal-order-social a.disabled .modal-order-social-icon,
.modal-contacts-social a.disabled .modal-contacts-social-icon {
  background: #e0e0e0;
}

.modal-order-social-icon,
.modal-contacts-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 46, 81, 1);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff;
}

.modal-order-social-icon svg,
.modal-contacts-social-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #fff;
  fill: #fff;
}

.modal-order-social-icon svg.facebook-icon,
.modal-contacts-social-icon svg.facebook-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.modal-order-social p,
.modal-contacts-social p {
  font-size: 0.875rem;
  color: var(--color-black);
}

.modal-close {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-contacts-title {
  text-align: center;
}

.modal-contacts-title h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-green);
}

.modal-contacts-title h4 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-green);
}

.modal-contacts-header .btn-primary {
  font-weight: 500;
}

.modal-contacts-header .btn-primary svg {
  width: 20px;
  height: 20px;
}

.modal-thanks-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-thanks-body > * {
  margin-bottom: 2rem;
}

.modal-thanks-body > *:last-child {
  margin-bottom: 0;
}

.modal-thanks-body p {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 500;
  color: var(--color-black);
}

#modal-thanks .modal-thanks-body svg {
  width: 5rem;
  height: 5rem;
  color: #b52e51;
}

#modal-thanks .modal-wrapper {
  width: 37rem;
  max-width: none;
}

.modal-contacts-body {
  display: flex;
  flex-direction: column;
}

.modal-contacts-body > * {
  margin-bottom: 12px;
}

.modal-contacts-body > *:last-child {
  margin-bottom: 0;
}

.modal-review-body {
  display: flex;
  flex-direction: column;
}

.modal-review-body > * {
  margin-bottom: 12px;
}

.modal-review-body > *:last-child {
  margin-bottom: 0;
}

.modal-review-stars {
  display: flex;
  margin-bottom: 1rem;
}

.modal-review-stars > * {
  margin-right: 0.5rem;
}

.modal-review-stars > *:last-child {
  margin-right: 0;
}

.modal-review-stars svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #e3e3e3;
  cursor: pointer;
}

.modal-review-stars svg.filled {
  color: rgba(232, 178, 78, 1);
}

.modal-review-title h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-green);
}

.modal-review-body input,
.modal-review-body textarea {
  transition: 0.3s;
  border: none;
  outline: none;
  background: rgba(244, 244, 246, 1);
  border-radius: 8px;
  padding: 0.875rem 0.75rem;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 400;
}

.modal-review-body input.error,
.modal-review-body textarea.error {
  outline: 1px solid #b52e51;
  transition: 0.3s;
}

.modal-contacts-body input,
.modal-contacts-body textarea {
  transition: 0.3s;
  border: none;
  outline: none;
  background: rgba(244, 244, 246, 1);
  border-radius: 8px;
  padding: 0.875rem 0.75rem;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 400;
}

.modal-contacts-body input.error,
.modal-contacts-body textarea.error {
  outline: 1px solid #b52e51;
  transition: 0.3s;
}

.modal-contacts-body textarea::-webkit-scrollbar {
  width: 0.4em;
}

.modal-contacts-body textarea::-webkit-scrollbar,
.modal-contacts-body textarea::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

.modal-contacts-body textarea::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

.modal-contacts-body input:focus,
.modal-contacts-body textarea:focus {
  border: none;
  outline: none;
}

.modal-contacts-body input::-webkit-input-placeholder,
.modal-contacts-body textarea::-webkit-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input::-moz-placeholder,
.modal-contacts-body textarea::-moz-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input:-ms-input-placeholder,
.modal-contacts-body textarea:-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input::-ms-input-placeholder,
.modal-contacts-body textarea::-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input::-webkit-input-placeholder,
.modal-contacts-body textarea::-webkit-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input::-moz-placeholder,
.modal-contacts-body textarea::-moz-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input:-ms-input-placeholder,
.modal-contacts-body textarea:-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input::-ms-input-placeholder,
.modal-contacts-body textarea::-ms-input-placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-body input::placeholder,
.modal-contacts-body textarea::placeholder {
  color: rgba(165, 175, 176, 1);
}

.modal-contacts-file {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-contacts-file p {
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
  margin: 4px 0;
  margin-right: 4px;
}

.modal-contacts-file svg {
  width: 16px;
  height: 16px;
}

.modal-contacts-location {
  display: flex;
  align-items: center;
}

.modal-contacts-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(244, 244, 246, 1);
  border-radius: 50%;
  margin-right: 10px;
}

.modal-contacts-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-order-header h2 {
  color: var(--color-green);
  font-size: 1.75rem;
  font-weight: 600;
}

.modal-order-header p {
  color: var(--color-black);
}

.modal-order-footer {
  display: flex;
  flex-direction: column;
}

.modal-order-footer > * {
  margin-bottom: 20px;
}

.modal-order-footer > *:last-child {
  margin-bottom: 0;
}

.modal-order-footer-title {
  text-align: center;
}

.modal-order-footer-title h3 {
  color: var(--color-green);
  font-size: 1.25rem;
  font-weight: 500;
}

.modal-order-footer .btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.photo-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 244, 246, 1);
  justify-content: center;
  align-items: center;
  z-index: 12;
}

.photo-gallery-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  height: 100%;
}

.photo-gallery-wrapper {
  height: 100%;
  overflow-y: auto;
  max-width: 1920px;
  margin: 0 auto;
}

.photo-gallery-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  row-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.photo-gallery-wrapper::-webkit-scrollbar {
  width: 0.4em;
}

.photo-gallery-wrapper::-webkit-scrollbar,
.photo-gallery-wrapper::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

.photo-gallery-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

.photo-gallery-items picture:nth-child(3n) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.photo-gallery-items img {
  width: 100%;
  height: 100%;
  max-height: 16.5625rem;
  border-radius: 12px;
  cursor: pointer;
  object-fit: cover;
}

.photo-gallery-header {
  display: flex;
  flex-direction: row-reverse;
}

.photo-gallery-title {
  display: flex;
  justify-content: center;
  margin-bottom: 6.625rem;
  width: 100%;
  margin-right: -3rem;
}

.photo-gallery-title h2 {
  color: var(--color-black);
  font-weight: 600;
  font-size: 1.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 0.625rem;
  border-radius: 6px;
}

.photo-gallery-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  cursor: pointer;
  /*position: absolute;*/
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-black);
  z-index: 2;
}

.photo-gallery-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.photo-gallery-slider-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 244, 246, 1);
  justify-content: center;
  align-items: center;
  z-index: 12;
}

.photo-gallery-slider-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.photo-gallery-slider-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-black);
}

.photo-gallery-slider-count {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 4.25rem;
  height: 3rem;
  border-radius: 6px;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--color-black);
}

.photo-gallery-slider-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

#large-photo-container {
  width: 80%;
  border-radius: 12px;
  max-height: 80%;
  overflow: hidden;
  margin-top: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* max-width: 1920px; */
}

.con-us-block {
  background: #fff;
}

#large-photo {
  max-width: 1920px;
  height: 100%;
  width: 100%;
  margin: auto;
}

.photo-gallery-slider {
  margin-top: auto;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.photo-gallery-thumbnail-slider::-webkit-scrollbar {
  height: 0.4em;
}

.photo-gallery-thumbnail-slider::-webkit-scrollbar,
.photo-gallery-thumbnail-slider::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}

.photo-gallery-thumbnail-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

.photo-gallery-slider-prev,
.photo-gallery-slider-next {
  background: #fff;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.photo-gallery-slider-prev {
  left: 1.5rem;
}

.photo-gallery-slider-next {
  right: 1.5rem;
}

.photo-gallery-slider-prev svg,
.photo-gallery-slider-next svg {
  width: 7px;
  height: 15px;
}

.photo-gallery-thumbnail-slider {
  display: flex;
  overflow-x: auto;
  padding: 0 1rem;
  transition: transform 0.4s ease;
}

.photo-gallery-thumbnail-slider > * {
  margin-right: 10px;
}

.photo-gallery-thumbnail-slider > *:last-child {
  margin-right: 0;
}

.photo-gallery-thumbnail-slider img {
  width: 8.75rem;
  height: 7rem;
  border-radius: 6px;
  cursor: pointer;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.photo-gallery-thumbnail-slider picture {
  position: relative;
  cursor: pointer;
}

.photo-gallery-thumbnail-slider picture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  transition: background-color 0.3s;
}

.photo-gallery-thumbnail-slider picture.active::before {
  background-color: rgba(0, 0, 0, 0);
}

.filter-options-stage-additional {
  display: none;
}

.filter-options-back {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  cursor: pointer;
}

.filter-options-back p {
  font-size: 20px;
  color: var(--color-black);
}

.filter-options-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
}

.filter-options-arrow svg {
  width: 4px;
  height: 8px;
}

.home-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.75rem;
}

.home-content > * {
  margin-bottom: 3.75rem;
}

.home-content > *:last-child {
  margin-bottom: 0;
}

.home-nationalRanking {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 1rem auto 1rem auto;
  grid-template-areas:
    "ranking-title ranking-slider"
    "ranking-rating ranking-slider"
    "ranking-rating ranking-awards";
  padding: 2rem;
  row-gap: 1rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 1.25rem;
}

.home-nationalRanking-logos {
  float: right;
  display: flex;
  align-items: center;
  transform: translateY(5px);
}

.home-nationalRanking-left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.home-nationalRanking-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: ranking-title;
}

.home-nationalRanking-title h1 {
  font-size: 3.5rem;
  font-weight: 500;
  width: 95%;
  line-height: 4rem;
  margin-bottom: 1.25rem;
}

.home-nationalRanking-logo {
  background-color: rgba(244, 244, 246, 1);
  border-radius: 50%;
  border: 2px solid #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}

.home-nationalRanking-logo:nth-child(2) {
  transform: translateX(-10px);
}

.home-nationalRanking-logo:nth-child(3) {
  transform: translateX(-20px);
}

.home-nationalRanking-subtitle span {
  font-weight: 600;
}

.home-nationalRanking-subtitle {
  color: rgba(92, 93, 94, 1);
}

.home-nationalRanking-awardDesk {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: ranking-rating;
  background-color: rgba(244, 244, 246, 1);
  border-radius: 1.25rem;
  margin-top: auto;
  padding: 3.5rem 2rem 2.125rem 2rem;
  position: relative;
}

.home-nationalRanking-award {
  position: absolute;
  top: 0;
  right: 1.5rem;
  max-width: 5.875rem;
  max-height: 11.0625rem;
}

.home-nationalRanking-awardDesk-text {
  width: 70%;
}

.home-nationalRanking-awardDesk-text h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.home-nationalRanking-awardDesk-text p {
  color: rgba(92, 93, 94, 1);
}

.home-nationalRanking-awardDesk-link a {
  font-weight: 500;
  border-bottom: 1.5px solid rgba(224, 224, 224, 1);
  cursor: pointer;
}

.home-nationalRanking-awardDesk-link {
  display: flex;
  justify-content: flex-end;
}

.home-nationalRanking-right {
  width: 50%;
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.home-nationalRanking-slider-photo img,
.home-nationalRanking-slider-photo picture {
  max-height: 31.5rem;
  height: 31.5rem;
  width: 100%;
  border-radius: 12px;
}

.home-nationalRanking-slider-items {
  display: flex;
}

.home-nationalRanking-slider-item {
  position: relative;
  min-width: 100%;
  width: 100%;
}

.home-nationalRanking-slider-circle {
  width: 0.9375rem;
  height: 0.9375rem;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  top: -1.25rem;
  left: -1.25rem;
}

.home-nationalRanking-slider-heart svg {
  height: 1.5rem;
  width: 1.5rem;
}

.home-nationalRanking-slider-heart {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(234, 226, 224, 1);
}

.home-nationalRanking-slider-comment {
  background-color: #fff;
  position: absolute;
  top: 7.5rem;
  right: 3.5rem;
  max-width: 14.875rem;
  border-radius: 10px;
}

.home-nationalRanking-slider-comment-inner {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 1rem 0.875rem 1.5rem 0.875rem;
}

.home-nationalRanking-slider-comment-inner i {
  font-size: 0.875rem;
  font-weight: 400;
  width: 75%;
}

.home-nationalRanking-slider-comment-inner picture {
  position: absolute;
  top: 0;
  left: 0.875rem;
}

.home-nationalRanking-slider-comment-inner img {
  width: 2.625rem;
  height: 5rem;
}

.home-nationalRanking-slider {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: ranking-slider;
  display: flex;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  transition: 0.3s;
  width: 100%;
}

.home-nationalRanking-slider-controllers {
  position: absolute;
  display: flex;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
}

.home-nationalRanking-slider-controllers > * {
  margin-right: 0.5rem;
}

.home-nationalRanking-slider-controllers > *:last-child {
  margin-right: 0;
}

.home-nationalRanking-slider-controller {
  width: 0.75rem;
  cursor: pointer;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(224, 224, 224, 1);
}

.home-nationalRanking-slider-controller.active {
  background-color: #b52e51;
}

.home-nationalRanking-quantityCompanies {
  background-color: rgba(30, 56, 57, 1);
  flex: 0 1 50%;
  padding: 2.5625rem;
  border-radius: 16px;
}

.home-nationalRanking-quantityCompanies h3 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 48px;
  color: rgba(255, 255, 255, 1);
}

.home-nationalRanking-quantityCompanies p {
  color: rgba(224, 224, 224, 1);
  margin-top: 10px;
}

.home-nationalRanking-ratingCompanies {
  flex: 0 1 50%;
  padding: 1.6875rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: rgba(234, 226, 224, 1);
  border-radius: 16px;
}

.home-nationalRanking-information {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  display: flex;
  grid-area: ranking-awards;
}

.home-nationalRanking-information > * {
  margin-right: 15px;
}

.home-nationalRanking-information > *:last-child {
  margin-right: 0;
}

.home-nationalRanking-ratingCompanies-title {
  display: flex;
  position: relative;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.home-nationalRanking-ratingCompanies-title h3 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 48px;
}

.home-nationalRanking-ratingCompanies-title p {
  text-align: center;
  font-size: 1rem;
}

.ratingCompanies-wreath-left {
  width: 35px;
  height: 54px;
  left: -35px;
  top: 0;
  position: absolute;
}

.ratingCompanies-wreath-right {
  width: 35px;
  position: absolute;
  right: -35px;
  top: 0;
  height: 54px;
}

.ratingCompanies-star {
  width: 16px;
  right: -15px;
  top: 0;
  position: absolute;
  height: 16px;
}

.home-nationalRanking-ratingCompanies-score p {
  text-align: center;
  font-size: 1rem;
  width: 75%;
  margin: 0 auto;
  margin-top: 8px;
}

.home-content-placement {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 1.25rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "placement-awards placement-title"
    "placement-awards placement-block";
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  padding: 2rem;
}

.home-content-placement-item {
  position: relative;
  border-radius: 12px;
  display: flex;
  padding: 1.25rem 1.375rem 1.5rem 1.5rem;
  flex-direction: column;
  background-color: rgba(244, 244, 246, 1);
}

.home-content-placement-item-first {
  position: relative;
  border-radius: 12px;
  display: flex;
  padding: 1.25rem 1.375rem 1.5rem 1.5rem;
  flex-direction: column;
  background-color: rgba(181, 46, 81, 1);
}

.placement-item-award {
  position: absolute;
  top: 0;
  right: 24px;
}

.placement-item-award {
  height: 5rem;
  width: 2.6875rem;
}

.placement-item-title h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}

.placement-item-title-first h3 {
  color: rgba(255, 255, 255, 1);
}

.placement-item-text h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.placement-item-text-first h3 {
  color: rgba(255, 255, 255, 1);
}

.placement-item-text p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 12px;
}

.placement-item-text-first p {
  color: rgba(255, 255, 255, 1);
}

.placement-item-text {
  margin-bottom: 2rem;
}

.placement-item-link a {
  color: rgba(40, 39, 39, 1);
  border-bottom: 1px solid rgba(171, 169, 168, 1);
  padding-bottom: 3px;
}

.placement-item-link-first a {
  color: rgba(255, 255, 255, 1);
}

.placement-item-link-first {
  margin-top: auto;
}

.placement-item-link {
  margin-top: auto;
}

.home-content-placement-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -ms-grid-columns: 1fr 1.25rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.home-content-placement-items > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.home-content-placement-items > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.home-content-placement-items-wrapper {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: placement-awards;
}

.home-content-placement-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: placement-title;
}

.home-content-placement-title h2 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 4rem;
  color: var(--color-green);
}

.home-content-placement-title p {
  color: rgba(92, 93, 94, 1);
  line-height: 24px;
  font-size: 1rem;
}

.home-content-placement-local-rankings-mobile {
  display: none;
}

.home-content-placement-local-rankings {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  --card-color: rgba(181, 46, 81, 1);
  --pillar-size: 30px;
  --big-circle-r: 30px;
  --circle-r: 16px;
  --circle-d: calc(var(--circle-r) * 2);
  --circles-space: calc(var(--big-circle-r) + var(--pillar-size));
  --circle-extend-inset: calc(var(--circle-r) + var(--circles-space));

  background: /* Big Circle Cutout */ radial-gradient(
        circle at 100% 0%,
        transparent var(--big-circle-r),
        var(--card-color) calc(var(--big-circle-r) + 1px)
      )
      0px var(--pillar-size) / calc(100% - var(--pillar-size)) 100% no-repeat
      no-repeat,
    /* Top Circle  */
      radial-gradient(
        circle closest-side,
        var(--card-color) 100%,
        transparent calc(100% + 1px)
      )
      calc(100% - var(--circles-space)) 0 / var(--circle-d) var(--circle-d)
      no-repeat no-repeat,
    /* Right Circle */
      radial-gradient(
        circle closest-side,
        var(--card-color) 100%,
        transparent calc(100% + 1px)
      )
      100% var(--circles-space) / var(--circle-d) var(--circle-d) no-repeat
      no-repeat,
    /* Top Circle Extend */
      linear-gradient(0deg, var(--card-color) 100%, var(--card-color) 100%) 0px
      var(--circle-r) / calc(100% - var(--circles-space))
      calc(100% - var(--circle-r)) no-repeat no-repeat,
    /* Right Gap fill Pillar */
      linear-gradient(0deg, var(--card-color) 100%, var(--card-color) 100%) 0px
      0px / calc(100% - var(--circle-extend-inset)) var(--circle-d) no-repeat
      no-repeat,
    /* Right Circle Extend  */
      linear-gradient(0deg, var(--card-color) 100%, var(--card-color) 100%) 100%
      var(--circle-extend-inset) / var(--circle-d) 100% no-repeat no-repeat,
    /* Right Gap fill Pillar */
      linear-gradient(0deg, var(--card-color) 100%, var(--card-color) 100%) 0
      var(--circles-space) / calc(100% - var(--circle-r)) 100% no-repeat
      no-repeat;

  grid-area: placement-block;
  position: relative;
  border-radius: 16px;
  margin-top: auto;
}

.home-content-placement-local-rankings img {
  position: absolute;
  left: -5px;
  top: 0;
}

.home-content-placement-overlay {
  display: none;
}

.placement-local-rankings-text {
  padding: 3.5625rem 3.25rem 3.5625rem 2rem;
  justify-content: space-between;
  display: flex;
  align-items: end;
}

.placement-local-rankings-text svg {
  width: 3.8125rem;
  height: 3.8125rem;
  min-width: 3.8125rem;
  min-height: 3.8125rem;
}

.home-content-placement-local-rankings p {
  color: #fff;
  font-size: 1.75rem;
  line-height: 2rem;
  width: 80%;
}

.home-content-localRankings {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
}

.home-content-localRankings-description {
  display: flex;
  width: 100%;
}

.home-content-localRankings-title h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: var(--color-green);
}

.home-content-localRankings-title {
  margin-right: 33px;
}

.home-content-localRankings-subtitle {
  width: 90%;
}

.home-content-localRankings-subtitle p {
  font-size: 1rem;
  line-height: 1.5rem;
  width: 85%;
  color: rgba(92, 93, 94, 1);
}

.home-content-localRankings-item {
  background-color: rgba(244, 244, 246, 1);
  border-radius: 6px;
  padding: 0.625rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.home-content-localRankings-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 1.5em;
  border-radius: 0.75rem;
  background: #fff;
  display: none;
  z-index: 1;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.home-content-localRankings-dropdown-inner {
  display: flex;
  flex-direction: column;
}

.home-content-localRankings-dropdown-inner > * {
  margin-bottom: 1rem;
}

.home-content-localRankings-dropdown-inner > *:last-child {
  margin-bottom: 0;
}

.home-content-localRankings-dropdown h3 {
  color: var(--color-black);
  font-weight: 500;
  font-size: 1.25rem;
}

.localRankings-dropdown-state {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
}

.localRankings-dropdown-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 1rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.localRankings-dropdown-items a {
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.localRankings-item-title {
  display: flex;
  align-items: center;
}

.localRankings-item-title h3 {
  line-height: 1.125rem;
  font-size: 0.875rem;
  color: var(--color-black);
  font-weight: 400;
}

.localRankings-item-title img {
  border-radius: 4px;
  margin-right: 8px;
  width: 2.25rem;
  height: 1.5rem;
}

.home-content-localRankings-item-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.home-content-localRankings-item svg {
  width: 15px;
  height: 7px;
  transition: transform 0.3s ease;
}

.home-content-localRankings-item svg.rotated {
  transform: rotate(180deg);
}

.home-content-localRankings-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.sponsors-logos-item-empty {
  display: flex;
  cursor: pointer;
  color: rgba(171, 169, 168, 1);
  background-color: rgba(244, 244, 246, 1);
  border: 1.36px dashed rgba(224, 224, 224, 1);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sponsors-logos-item-empty svg {
  width: 16px;
  height: 16px;
}

.sponsors-logos-item-empty h4 {
  font-weight: 400;
  line-height: 1.125rem;
  color: rgba(171, 169, 168, 1);
}

.sponsors-logos-item-empty p {
  font-weight: 400;
  line-height: 1.125rem;
}

.right-partners-title {
  margin-bottom: 32px;
}

.right-partners-title h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.home-content-howSelect {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
}

.howSelect-description-title h2 {
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 3.5rem;
  color: var(--color-green);
}

.howSelect-description-subTitle {
  -ms-grid-row-align: end;
  align-self: end;
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgba(92, 93, 94, 1);
}

.howSelect-description-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.25rem;
}

.howSelect-description-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease, transform 0.5s ease;
}

.howSelect-description-image.active {
  position: static;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease, transform 0.5s ease;
}

.howSelect-description-image.leaving {
  position: absolute;
  transform: translateX(100%);
  opacity: 0;
  transition: opacity 1s ease, transform 0.5s ease;
}

.home-content-howSelect-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.howSelect-information-items {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  padding-bottom: 1.25rem;
}

.home-content-howSelect-information {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1.875rem 40%;
  grid-template-columns: auto 40%;
  row-gap: 1.5rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
}

.howSelect-information-left img {
  width: 100%;
}

.information-item-title {
  margin-bottom: 8px;
}

.information-item-title h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.howSelect-information-item {
  padding: 1.25rem;
  border-radius: 1rem;
}

.information-item-text {
  margin-bottom: 16px;
}

.information-item-link a {
  font-weight: 600;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  line-height: 1.25rem;
}

.howSelect-information-item:hover {
  background-color: rgba(244, 244, 246, 1);
}

.information-item-text p {
  line-height: 1.125rem;
  color: rgba(92, 93, 94, 1);
}

.information-item-link .btn-primary {
  width: 60%;
}

.howSelect-information-footer {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  margin-top: 1.25rem;
}

.howSelect-information-footer-description {
  margin-right: 29px;
}

.howSelect-information-footer img {
  width: 2.625rem;
  min-width: 2.625rem;
  min-height: 5rem;
  height: 5rem;
}

.howSelect-information-footer-text {
  color: var(--color-black);
  font-size: 1rem;
}

.home-content-news-description-title h2 {
  font-weight: 500;
  font-size: 4rem;
  line-height: 4rem;
  margin-bottom: 10px;
}

.home-content-news-description-subtitle p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgba(92, 93, 94, 1);
  width: 65%;
}

.home-content-news-item-date {
  margin-bottom: 4px;
}

.home-content-news-item-text p {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: var(--color-black);
}

.home-content-news-item {
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  cursor: pointer;
}

.home-content-news-item-date p {
  color: rgba(171, 169, 168, 1);
}

.home-content-news-items {
  display: -ms-grid;
  display: grid;
  margin-top: 32px;
  margin-bottom: 32px;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 30px;
}

.home-content-news-item img {
  margin-bottom: 10px;
}

.home-content-subscribe-img img {
  border-radius: 20px;
}

.home-content-subscribe {
  background-color: rgba(30, 56, 57, 1);
  margin-bottom: 60px;
  display: flex;
  padding: 32px;
  border-radius: 20px;
}

.home-content-subscribe-descriptionAndForm {
  display: flex;
  margin-left: 99px;
  width: 40%;
  justify-content: space-around;
  flex-direction: column;
  color: #fff;
}

.subscribe-descriptionAndForm-form {
  display: flex;
}

.descriptionAndForm-form-input input {
  padding: 16px;
  width: 21.625rem;
  border-radius: 8px;
  height: 3rem;
  margin-right: 16px;
  outline: none;
  border: 1px solid rgba(244, 244, 246, 1);
}

.subscribe-descriptionAndForm-description h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.home-content-information {
  padding: 2rem;
  display: flex;
  border-radius: 1.25rem;
  background: #fff;
}

.home-content-information-right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5625rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
  -ms-grid-rows: auto 1.5625rem auto 1.5625rem auto;
  grid-template-areas:
    "info-card-1 info-card-2"
    "info-card-1 info-card-4"
    "info-card-3 info-card-4";
}

.home-content-information-card {
  border-radius: 1rem;
}

.home-content-information-card:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  display: flex;
  flex-direction: column;
  grid-area: info-card-1;
  background-image: url("../png/modern-skyscraper.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.5rem 1.25rem;
}

.home-content-information-card:nth-child(1) .information-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.home-content-information-card:nth-child(1) .information-card-header span {
  font-weight: 500;
  white-space: nowrap;
  font-size: 2rem;
  color: #fff;
}

.home-content-information-card:nth-child(1) p {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
}

.home-content-information-card:nth-child(1) .information-card-images {
  display: flex;
}

.home-content-information-card:nth-child(1) .information-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border: 2px solid var(--color-green);
  border-radius: 50%;
}

.home-content-information-card:nth-child(1) .information-card-image img {
  width: 100%;
  height: 100%;
}

.home-content-information-card:nth-child(1) .information-card-image picture {
  width: 60%;
  height: 60%;
}

.home-content-information-card:nth-child(1)
  .information-card-image:nth-child(2) {
  transform: translateX(-9px);
}

.home-content-information-card:nth-child(1)
  .information-card-image:nth-child(3) {
  transform: translateX(-18px);
}

.home-content-information-card:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: flex;
  flex-direction: column;
  grid-area: info-card-2;
  background: #f4f4f6;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
}

.home-content-information-card:nth-child(2)
  .home-content-information-card-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1rem;
}

.home-content-information-card:nth-child(2)
  .home-content-information-card-item:nth-child(1) {
  margin-bottom: 1rem;
}

.home-content-information-card:nth-child(2)
  .home-content-information-card-item:nth-child(2)
  .home-content-information-header {
  margin-bottom: 10px;
}

.home-content-information-card:nth-child(2)
  .home-content-information-card-item:nth-child(2) {
  padding-right: 1.5rem;
}

.home-content-information-card:nth-child(2) .home-content-information-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.home-content-information-card:nth-child(2) .home-content-information-images {
  display: flex;
}

.home-content-information-card:nth-child(2)
  .home-content-information-images
  img {
  width: 3rem;
  height: 3rem;
  /*outline: 2px solid #fff;*/
  border-radius: 50%;
}

.home-content-information-card:nth-child(2)
  .home-content-information-images
  picture:nth-child(2) {
  transform: translateX(-9px);
}

.home-content-information-card:nth-child(2)
  .home-content-information-images
  picture:nth-child(3) {
  transform: translateX(-18px);
}

.home-content-information-card:nth-child(2) span {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-green);
  line-height: 2rem;
}

.home-content-information-card:nth-child(2) p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-green);
  line-height: 1.125rem;
}

.home-content-information-card:nth-child(2) .home-content-information-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #eae2e0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 10px;
}

.home-content-information-card:nth-child(2)
  .home-content-information-image
  svg {
  width: 1.5rem;
  height: 1.5rem;
}

.home-content-information-card:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  display: flex;
  flex-direction: column;
  grid-area: info-card-3;
  background: #f4f4f6;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
}

.home-content-information-card:nth-child(3)
  .home-content-information-card-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1rem;
}

.home-content-information-card:nth-child(3)
  .home-content-information-card-item:nth-child(1) {
  margin-bottom: 1rem;
}

.home-content-information-card:nth-child(3) .home-content-information-header {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.home-content-information-card:nth-child(3) .home-content-information-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #eae2e0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 10px;
}

.home-content-information-card:nth-child(3)
  .home-content-information-image
  svg {
  width: 1.5rem;
  height: 1.5rem;
}

.home-content-information-card:nth-child(3) span {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-green);
}

.home-content-information-card:nth-child(3) p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-green);
}

.home-content-information-card:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: info-card-4;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  background: #eae2e0;
}

.home-content-information-card:nth-child(4) > * {
  margin-bottom: 1.75rem;
}

.home-content-information-card:nth-child(4) > *:last-child {
  margin-bottom: 0;
}

.home-content-information-card:nth-child(4) .line {
  border-bottom: 1px solid var(--color-black);
  opacity: 25%;
}

.home-content-information-card:nth-child(4)
  .home-content-information-card-item {
  display: flex;
  align-items: center;
}

.home-content-information-card:nth-child(4)
  .home-content-information-card-item
  .home-content-information-text {
  margin-left: 1rem;
}

.home-content-information-card:nth-child(4)
  .home-content-information-text
  span {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-black);
}

.home-content-information-card:nth-child(4) .home-content-information-text p {
  color: var(--color-black);
}

.home-content-information-card:nth-child(4)
  .home-content-information-card-item
  img {
  border-radius: 7px;
  width: 5.625rem;
  min-width: 5.625rem;
  height: 5.625rem;
  min-height: 5.625rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-content-information-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 2rem;
}

.home-content-information-title h2 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 4rem;
  margin-bottom: 1.25rem;
  width: 95%;
}

.home-content-information-title p {
  font-size: 1rem;
  color: #5c5d5e;
}

.home-content-information-us {
  background: #f4f4f6;
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-top: 7.5rem;
  background-image: url("../png/us-flag.png");
  background-position: center;
  background-repeat: no-repeat;
}

.home-content-information-us > * {
  margin-bottom: 6.125rem;
}

.home-content-information-us > *:last-child {
  margin-bottom: 0;
}

.home-content-information-us picture {
  position: absolute;
  top: 50%;
  left: 50%;
}

.information-us-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  width: 16.25rem;
}

.information-us-card:first-child {
  align-self: flex-end;
}

.information-us-card span {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.information-us-card span > * {
  margin-right: 0.625rem;
}

.information-us-card span > *:last-child {
  margin-right: 0;
}

.information-us-card p {
  color: var(--color-black);
  font-size: 1rem;
}

.information-us-card svg {
  width: 1.75rem;
  height: 1.75rem;
}

.home-content-cooperation {
  display: -ms-grid;
  display: grid;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 2rem auto 2rem auto;
  grid-template-areas:
    "cooperation-title cooperation-sponsors"
    "cooperation-founder cooperation-partners"
    "cooperation-sponsorship cooperation-partners";
  gap: 2rem;
}

.home-content-cooperation-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  font-size: 3.5rem;
  line-height: 3.5rem;
  font-weight: 500;
  grid-area: cooperation-title;
}

.home-content-cooperation-founder {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  display: flex;
  grid-area: cooperation-founder;
}

.home-content-cooperation-image {
  position: relative;
  width: 50%;
  max-height: 22rem;
  margin-right: 2.8125rem;
}

.home-content-cooperation-image picture {
  height: 100%;
}

.home-content-cooperation-image img {
  border-radius: 0.75rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-content-cooperation-image p {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  color: #fff;
  padding: 6px 10px;
  background: linear-gradient(rgba(87, 87, 87, 0.51), rgba(87, 87, 87, 0.2));
  -webkit-backdrop-filter: blur(20.51px);
  backdrop-filter: blur(20.51px);
  border-radius: 6px;
  width: 70%;
}

.home-content-cooperation-founder i {
  font-size: 1rem;
  font-weight: 400;
  width: 50%;
  color: #5c5d5e;
  line-height: 1.5rem;
}

.home-content-cooperation-sponsorship {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  display: flex;
  grid-area: cooperation-sponsorship;
  margin-top: auto;
}

.home-content-cooperation-sponsorship > * {
  margin-right: 2rem;
}

.home-content-cooperation-sponsorship > *:last-child {
  margin-right: 0;
}

.home-content-cooperation-card-active {
  display: flex;
  flex-direction: column;
  background: #b52e51;
  padding: 1rem;
  border-radius: 0.75rem;
  position: relative;
  width: 50%;
}

.home-content-cooperation-card-active h2 {
  margin-bottom: 0.625rem;
  font-size: 1.75rem;
  line-height: 1.75rem;
  color: #fff;
  font-weight: 600;
}

.home-content-cooperation-card-active p {
  color: #fff;
  width: 75%;
  line-height: 1.125rem;
}

.home-content-cooperation-card-active a {
  width: auto;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 1.5px solid #aba9a8;
  margin-top: auto;
}

.home-content-cooperation-card-active picture {
  position: absolute;
  top: 0;
  right: 1.25rem;
}

.home-content-cooperation-card-active img {
  height: 5rem;
  width: 2.625rem;
}

.home-content-cooperation-card {
  padding: 0.875rem;
  background: #f4f4f6;
  border-radius: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 2.5rem;
  height: 8.8125rem;
}

.home-content-cooperation-card p {
  color: #aba9a8;
}

.home-content-cooperation-sponsorship .home-content-cooperation-card {
  background-image: url("../png/partner-multisite.png");
  width: 50%;
}

.home-content-cooperation-sponsors {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: flex;
  flex-direction: column;
  grid-area: cooperation-sponsors;
}

.home-content-placement-opening {
  display: none;
}

.home-content-localRankings-opening {
  display: none;
}

.home-content-cooperation-sponsors .home-content-cooperation-card:nth-child(1) {
  background-image: url("../png/partner-multisite.png");
}

.home-content-cooperation-sponsors .home-content-cooperation-card:nth-child(2) {
  background-image: url("../png/partner-unknown.png");
}

.home-content-cooperation-sponsors h2 {
  font-weight: 600;
  margin-bottom: 2rem;
}

.home-content-cooperation-card-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 1.8125rem;
  -ms-grid-columns: 1fr 1.8125rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.home-content-cooperation-card-wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.home-content-cooperation-card-wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.home-content-cooperation-partners {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  display: flex;
  flex-direction: column;
  grid-area: cooperation-partners;
}

.home-content-cooperation-partners .home-content-cooperation-card:nth-child(1) {
  background-image: url("../png/partner-wextractor.png");
}

.home-content-cooperation-partners .home-content-cooperation-card:nth-child(2) {
  background-image: url("../png/partner-serpapi.png");
}

.home-content-cooperation-partners .home-content-cooperation-card:nth-child(3) {
  background-image: url("../png/partner-perfectstones.png");
}

.home-content-cooperation-partners .home-content-cooperation-card:nth-child(4) {
  background-image: url("../png/partner-wpmudev.png");
}

.home-content-cooperation-partners .home-content-cooperation-card:nth-child(5) {
  background-image: url("../png/partner-hsi.png");
}

.home-content-cooperation-partners .home-content-cooperation-card:nth-child(6) {
  background-image: url("../png/partner-unknown.png");
}

.home-content-cooperation-partners h2 {
  font-weight: 600;
  margin-bottom: 2rem;
}

.howSelect-description-items-wrapper {
  display: flex;
  flex-direction: column;
}

.home-content-benefits-buttons {
  display: none;
}

.home-content-benefits-inner {
  position: relative;
  display: flex;
}

.home-content-benefits-inner > * {
  margin-right: 2rem;
}

.home-content-benefits-inner > *:last-child {
  margin-right: 0;
}

.home-content-benefits-customers,
.home-content-benefits-contractors {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 50%;
}

.home-content-benefits-header {
  display: flex;
  margin-bottom: 2rem;
}

.home-content-benefits-header h2 {
  color: var(--color-green);
  font-size: 2.5rem;
  font-weight: 700;
  width: 45%;
  margin-right: 10px;
  line-height: 2.5rem;
}

.home-content-benefits-header img {
  border-radius: 0.75rem;
  width: 100%;
  max-height: 13rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-content-benefits-header picture {
  width: 55%;
}

.home-content-giveApplication {
  background-image: url("../png/green-rectangle.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem;
  padding-right: 6.125rem;
  position: relative;
  display: flex;
  border-radius: 1.25rem;
}

.home-content-giveApplication > * {
  margin-right: 2rem;
}

.home-content-giveApplication > *:last-child {
  margin-right: 0;
}

.home-content-giveApplication-award {
  position: relative;
  top: -2rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.home-content-giveApplication-award img {
  width: 5.875rem;
  height: 11.0625rem;
  min-width: 5.875rem;
  min-height: 11.0625rem;
}

.home-content-giveApplication-suggestion {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-content-giveApplication-image img,
.home-content-giveApplication-image {
  width: 100%;
}

.home-content-giveApplication-suggestion h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 2.3125rem;
}

.home-content-giveApplication-suggestion .btn-primary {
  font-size: 1.75rem;
  height: 4.0625rem;
}

.home-content-giveApplication-suggestion .btn-primary .getListed-icon-wrapper {
  height: 3.3125rem;
  width: 3.3125rem;
}

.home-content-giveApplication-suggestion
  .btn-primary
  .getListed-icon-wrapper
  svg {
  width: 0.875rem;
  height: 0.875rem;
}

.white-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.white-corner img {
  border-radius: 0;
  width: 7.5rem;
  height: 4.25rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hover-tooltip,
.hover-tooltip.right {
  position: absolute;
  background-color: rgba(40, 39, 39, 0.8);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  z-index: 12;
  width: 183px;
  bottom: 110%;
  text-align: left;
  transform: translateY(-10px);
}

.hover-tooltip.default {
  bottom: 140%;
  left: 50%;
  transform: translate(-50%, -10px);
}

.hover-tooltip.left {
  bottom: 120%;
  transform: translateY(-10px);
}

.hover-tooltip.default::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: rgba(40, 39, 39, 0.8) transparent transparent transparent;
}

.hover-tooltip.left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  left: 10px;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: rgba(40, 39, 39, 0.8) transparent transparent transparent;
}

.hover-tooltip.right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  right: 10px;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: rgba(40, 39, 39, 0.8) transparent transparent transparent;
}

/*.hover-tooltip.active {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

@media (min-width: 993px) {
  .company-title-placement:hover .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .company-info-total:hover .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .feedback-header-rating-count:hover .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .company-report-points-rating:hover .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .score-cup:hover .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .card-item-rank:hover .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .shopperReport-title-like:hover .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.block-404 {
  display: flex;
  border-radius: 1.25rem;
  background: #fff;
  gap: 2rem;
  justify-content: center;
  font-size: 29px;
  height: 50vh;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.modal-order-header h2 {
  text-align: center;
}

.footer-copyright-title {
  color: rgba(171, 169, 168, 1);
  font-size: 1.25rem;
  font-weight: 500;
}

.modal-contacts-body input.invalid-field,
.modal-contacts-body textarea.invalid-field {
  outline: 1px solid #b52e51;
  background: rgba(244, 244, 246, 1);
}

.company-feedback-form input.invalid-field,
.company-feedback-form textarea.invalid-field {
  outline: 1px solid #b52e51;
  background: rgba(255, 255, 255, 0.1);
}

.modal-review-body input.invalid-field,
.modal-review-body textarea.invalid-field {
  outline: 1px solid #b52e51;
  background: rgba(244, 244, 246, 1);
}

.modal-full-review-rating[data-rating="1"] .star:nth-child(n + 2),
.modal-full-review-rating[data-rating="2"] .star:nth-child(n + 3),
.modal-full-review-rating[data-rating="3"] .star:nth-child(n + 4),
.modal-full-review-rating[data-rating="4"] .star:nth-child(n + 5) {
  color: #ccc;
}

.company-reviews-item-rating[data-rating="1"] .star:nth-child(n + 2),
.company-reviews-item-rating[data-rating="2"] .star:nth-child(n + 3),
.company-reviews-item-rating[data-rating="3"] .star:nth-child(n + 4),
.company-reviews-item-rating[data-rating="4"] .star:nth-child(n + 5) {
  color: #ccc;
}

.modal-full-review-rating[data-rating="recommends"] .star,
.modal-full-review-rating[data-rating="doesnt_recommend"] .star {
  display: none;
}

.modal-full-review-recommendation {
  display: none;
}

.modal-full-review-rating[data-rating="recommends"]
  .modal-full-review-recommendation,
.modal-full-review-rating[data-rating="doesnt_recommend"]
  .modal-full-review-recommendation {
  display: block;
}

#modal-full-review .modal-wrapper {
  width: 32.5rem;
  gap: 0;
}

.modal-full-review-content {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  flex: 0 0 calc(33.3333333333% - var(--gap) * 2 / 3);
}

.modal-full-review-content > * {
  margin-bottom: 1rem;
}

.modal-full-review-content > *:last-child {
  margin-bottom: 0;
}

.modal-full-review-source {
  display: flex;
  align-items: center;
}

.modal-full-review-source > * {
  margin-right: 5px;
}

.modal-full-review-source > *:last-child {
  margin-right: 0;
}

.modal-full-review-source span {
  color: rgba(171, 169, 168, 1);
  font-size: 0.875rem;
  font-weight: 400;
}

.modal-full-review-source svg {
  width: 16px;
  height: 16px;
}

.modal-full-review-header {
  display: flex;
  align-items: center;
}

.modal-full-review-header > * {
  margin-right: 12px;
}

.modal-full-review-header > *:last-child {
  margin-right: 0;
}

.modal-full-review-header img {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
}

.modal-full-review-name h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-full-review-name p {
  color: rgba(171, 169, 168, 1);
}

.modal-full-review-rating {
  display: flex;
  align-items: center;
  border-radius: 25px;
  border: 1px solid rgba(232, 178, 78, 1);
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: auto;
  padding: 2px 4px;
  color: rgba(232, 178, 78, 1);
  height: 23px;
}

.modal-full-review-rating > * {
  margin-right: 3px;
}

.modal-full-review-rating > *:last-child {
  margin-right: 0;
}

.modal-full-review-recommendation {
  font-size: 0.875rem;
  padding: 0 4px;
}

.modal-full-review-rating svg {
  width: 15px;
  height: 14px;
}

.modal-full-review-comment {
  color: var(--color-black);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal-full-review-comment.expanded {
  display: block;
  -webkit-line-clamp: unset;
  transition: max-height 0.4s ease;
}

.modal-full-review-link {
  font-weight: 600;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  cursor: pointer;
}

.no-click {
  pointer-events: none;
}

.share {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.mask-loader {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.39);
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mask-loader svg {
  margin: auto;
  background: rgba(255, 255, 255, 0);
  display: block;
  shape-rendering: auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

a.filter-link {
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dropdown-menu-item {
  padding-left: 5px;
}

p.comments-item-text.comments-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#anchor-01,
#anchor-company-reviews {
  scroll-margin-top: 200px;
}

.contactors-page-warning-block {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  padding: 10px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* ADAPTIVE (FOR CTRL + F)*/

@media (max-width: 1440px) {
  .footer-content-articles-grid {
    -ms-grid-columns: 1fr 6rem 1fr 6rem 1fr 6rem 1fr 6rem 1fr 6rem 1fr;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 1rem;
    -moz-column-gap: 6rem;
    column-gap: 6rem;
  }

  .company-reviews-item {
    flex: 0 0 calc(50% - var(--gap) / 2);
  }

  .company-report-items {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1220px) {
  .company-aside > * {
    margin-bottom: 0;
  }
  .frame-description-text {
    font-size: 14px;
  }

  .company-aside img,
  .company-aside picture {
    border-radius: 12px;
    height: 134px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .company-aside .photo-item:nth-child(1) img,
  .company-aside .photo-item:nth-child(2) img {
    height: 204px;
  }

  .frame-showMore {
    margin-top: 24px;
  }

  .frame-rightColumn picture {
    display: none;
  }

  .frame-leftColumn {
    position: relative;
    width: 100%;
  }

  .main-content-frame {
    border-radius: 16px;
  }

  .main-content-frame::before {
    content: "";
    background-image: url("../png/main-bg-mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    pointer-events: none;
  }

  .card-item-feedBackAndButton {
    width: 40%;
  }

  .header-content-logo p {
    display: none;
  }

  .company-body {
    flex-direction: column;
  }

  .company-aside-title {
    display: none;
  }

  .company-title-name h1 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
  }

  .shopperReport-score {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    row-gap: 5px;
  }

  .home-nationalRanking-awardDesk {
    padding: 16px;
  }

  .company-aside-photos {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 10px 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "aside-photo-1 aside-photo-1 aside-photo-1 aside-photo-2 aside-photo-2 aside-photo-2"
      "aside-photo-3 aside-photo-3 aside-photo-4 aside-photo-4 aside-photo-5 aside-photo-5";
  }

  .company-aside-photos picture:nth-child(1) {
    grid-area: aside-photo-1;
  }

  .company-aside-photos picture:nth-child(2) {
    grid-area: aside-photo-2;
  }

  .company-aside-photos picture:nth-child(3) {
    grid-area: aside-photo-3;
  }

  .company-aside-photos picture:nth-child(4) {
    grid-area: aside-photo-4;
  }

  .company-aside-photos picture:nth-child(5) {
    grid-area: aside-photo-5;
  }

  .company-main {
    width: 100%;
  }

  .company-aside {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    top: 0;
    position: relative;
  }

  .frame-rightColumn {
    display: contents;
  }

  .frame-rightColumn-flag-wrapper {
    display: none;
  }

  .frame-flag-year {
    position: absolute;
    bottom: 12%;
    width: 100%;
    text-align: center;
    color: var(--color-green);
    font-size: 8px;
    line-height: 7px;
  }

  .frame-flag-wrapper {
    /*display: block;*/
    display: none;
    position: absolute;
    top: 0;
    right: 15px;
  }

  .frame-flag-top {
    position: absolute;
    top: 26%;
    white-space: nowrap;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 8px;
  }

  .frame-flag-text {
    position: absolute;
    bottom: 42%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .frame-flag-text p {
    position: absolute;
    width: 90%;
    color: var(--color-green);
    text-align: center;
    font-size: 6px;
    line-height: 6px;
  }

  .frame-flag img {
    border-radius: 0;
    width: 52px;
    height: 90px;
  }
}

@media (max-width: 1220px) {
  .company-aside-photos picture:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }

  .company-aside-photos picture:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
    -ms-grid-column-span: 5;
  }

  .company-aside-photos picture:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .company-aside-photos picture:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
  }

  .company-aside-photos picture:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
    -ms-grid-column-span: 3;
  }
}

@media (max-width: 992px) {
  /*.company-content .breadcrumbs-back {*/
  /*    display: none;*/
  /*}*/
  .home-content-benefits-inner > * {
    margin-right: 0;
  }

  .home-content-cooperation-sponsors h2 {
    margin-bottom: 16px;
  }

  .company-feedback-location {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    height: 110px;
  }

  .card-item-header {
    gap: 0;
  }

  #modal-full-review .modal-wrapper {
    width: 100%;
  }

  #modal-full-review .modal-full-review-content {
    order: 2;
  }

  .photo-gallery-wrapper {
    margin: 0;
  }

  .description-readMore {
    padding: 0 14px 14px 14px;
    margin-top: 8px;
  }

  .company-reviews-item-name h3 {
    line-height: 24px;
    font-size: 20px;
  }

  .company-content .breadcrumbs-return {
    display: flex;
    align-items: center;
    gap: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .breadcrumbs-return-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
  }

  .breadcrumbs-return-icon svg {
    height: 8px;
    width: 4px;
  }

  .breadcrumbs-return-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
  }

  .hover-tooltip,
  .hover-tooltip.right,
  .hover-tooltip.default,
  .hover-tooltip.left,
  .hover-tooltip.default::after,
  .hover-tooltip.left::after,
  .hover-tooltip.right::after {
    display: none;
  }

  .hover-tooltip {
    font-size: 12px;
  }

  .company-title-placement .hover-tooltip {
    top: 120%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .localRankings-item-title h3 {
    line-height: 18px;
    font-size: 14px;
    color: var(--color-black);
  }

  .placement-item-award {
    height: 80px;
    width: 42px;
  }

  .shopperReport-title-name h4 {
    font-size: 14px;
  }

  .feedback-header-title h4 {
    font-size: 14px;
  }

  .card-information-title h4 {
    font-size: 14px;
  }

  .modal-order-header {
    order: 2;
  }

  .modal-order-footer {
    order: 3;
  }

  .card-items {
    display: flex;
    flex-direction: column;
    padding: 14px;
    overflow: hidden;
    height: 730px;
    transition: 0.3s ease;
    position: relative;
  }

  .feedback-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback-body-title {
    width: 60px;
  }

  .shopperReport-score {
    -ms-grid-columns: (1fr) [6];
    grid-template-columns: repeat(6, 1fr);
  }

  .card-item-img .card-bg img {
    width: 100%;
    max-height: 186px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .footer-content-top-grid {
    -ms-grid-columns: (14rem) [3];
    grid-template-columns: repeat(3, 14rem);
    grid-template-areas:
      "rankings contractors partners"
      "rankings customers evaluation"
      "about marketing .";
  }

  .header-content-menu-toggle {
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .company-reviews-next {
    right: -8px;
  }

  .company-reviews-prev {
    left: -8px;
  }

  .FAQ {
    flex-direction: column;
  }

  .questions-wrapper {
    margin-bottom: 40px;
  }

  .questions-wrapper,
  .comments-wrapper {
    width: 100%;
    padding: 24px 15px;
    margin: 0;
  }

  .comments-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content-top-image-wrapper {
    display: block;
    margin-bottom: 0;
    position: absolute;
    right: 15px;
    top: 0;
  }

  .footer-content-top-text {
    width: 70%;
    margin-bottom: 32px;
  }

  .footer-content-top-image img {
    max-height: 142px;
  }

  .footer-achievement-top {
    position: absolute;
    top: 26%;
    white-space: nowrap;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 12px;
  }

  .footer-achievement-text {
    position: absolute;
    bottom: 42%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-achievement-text p {
    position: absolute;
    width: 90%;
    color: var(--color-green);
    text-align: center;
    font-size: 8px;
    line-height: 9px;
  }

  .footer-achievement-year {
    position: absolute;
    bottom: 12%;
    width: 100%;
    text-align: center;
    color: var(--color-green);
    font-size: 11px;
    line-height: 100%;
  }

  .header-content-menu {
    display: none;
  }

  .header-content-navbar {
    display: none;
  }

  .header-content .line {
    display: none;
  }

  .header-content_button .btn-primary {
    display: none;
  }

  .header-content-last {
    padding: 16px;
  }

  .header-content-logo {
    height: 33px;
  }

  .header-content-logo p {
    display: block;
    margin-right: 4px;
  }

  .breadcrumbs {
    padding: 0 16px;
    margin-bottom: 10px;
  }

  .header-content {
    position: relative;
    margin-bottom: 10px;
    padding: 0;
  }

  .frame-leftColumn h1 {
    font-size: 32px;
  }

  .frame-updateDate {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .frame-showMore {
    margin-top: 24px;
  }

  .block-filter {
    display: none;
  }

  .main-content-filters {
    justify-content: flex-start;
    padding: 0 16px;
    margin-top: 20px;
  }

  .main-content-filters > * {
    margin-right: 8px;
  }

  .main-content-filters > *:last-child {
    margin-right: 0;
  }

  .comments-item-avatar {
    margin-bottom: 10px;
  }

  .comments-item > * {
    margin-right: 0;
  }

  .main-content-sort,
  .main-content-search {
    display: none;
  }

  .search-mobile-wrapper,
  .filter-mobile-wrapper,
  .sort-mobile-wrapper {
    display: block;
    padding: 6px;
    border-radius: 8px;
    background-color: #fff;
  }

  .filter-mobile-wrapper,
  .sort-mobile-wrapper {
    flex: 1;
  }

  .search-mobile,
  .filter-mobile,
  .sort-mobile {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: none;
    padding: 14px 28px;
    background-color: #f4f4f6;
  }

  .search-mobile {
    padding: 14px;
  }

  .search-mobile-wrapper svg,
  .filter-mobile-wrapper svg,
  .sort-mobile-wrapper svg {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  .frame-columns {
    padding: 20px 16px;
  }

  .main-content-description .main-content-title {
    display: none;
  }

  .main-content-description .main-content-title-mobile {
    display: block;
    padding: 14px 14px 0 14px;
  }

  .main-content-description-mobile {
    display: block;
    background-color: #fff;
    border-radius: 16px;
    margin-top: 20px;
    padding: 20px 15px;
  }

  .main-content-description-mobile h2 {
    color: var(--color-green);
    font-size: 16px;
  }

  .card-item-overlay {
    display: block;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      #fff 75%
    );
    transition: opacity 0.3s ease;
    opacity: 1;
    pointer-events: none;
  }

  .card-items.expanded .card-item-overlay {
    opacity: 0;
  }

  .card-item-opening {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    width: 100%;
    margin-top: 2px;
  }

  .card-show-more {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }

  .card-show-more p {
    font-size: 14px;
    margin-right: 4px;
    font-weight: 700;
    color: var(--color-black);
  }

  .card-show-more svg {
    width: 15px;
    height: 7px;
    transition: 0.1s;
  }

  .gold-cup {
    height: 36px;
  }

  .card-bg-heart-icon {
    display: flex;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    top: 8px;
    right: 8px;
    color: #fff;
    transition: 0.1s;
  }

  .card-bg-heart-icon:hover {
    transform: scale(1.1);
  }

  .card-item-description {
    width: 100%;
  }

  .description-like {
    display: none;
  }

  .name-title a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
  }

  .name-logo picture {
    display: flex;
    align-items: center;
    height: 40px;
  }

  .name-logoTitle {
    padding: 8px;
  }

  .shopperReport-score-descriptionItems {
    flex-grow: 1;
  }

  .card-item-img {
    order: 1;
  }

  .shopperReport-score-title {
    font-size: 12px;
  }

  .shopperReport-score-text {
    font-size: 12px;
    padding-right: 0;
  }

  .shopperReport-score-rating p {
    font-size: 14px;
    width: 20px;
  }

  .card-item-body-wrapper {
    order: 2;
  }

  .card-item-feedback {
    order: 3;
  }

  .card-item-information {
    order: 4;
    border: none;
    padding: 0;
  }

  .card-item-buttons {
    order: 5;
    display: none;
  }

  .card-item-buttons-mobile {
    display: flex;
    padding: 0 14px;
    padding-bottom: 14px;
  }

  .main-content-card {
    flex-direction: column;
  }

  .btn-showMore-wrapper {
    padding: 0 16px;
  }

  .products {
    margin-bottom: 40px;
  }

  .questions-wrapper-title {
    font-size: 22px;
  }

  .home-content-google-reviews {
    display: none;
  }

  .comments-wrapper-title {
    font-size: 22px;
  }

  .comments-item-rating-stars svg {
    width: 15px;
    height: 15px;
  }

  .business {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 40px;
  }

  .business-left {
    width: 100%;
    flex-direction: column;
    margin-bottom: 60px;
  }

  .business-left img {
    width: 100%;
    height: 158px;
  }

  .rating {
    margin-bottom: 40px;
    cursor: pointer;
  }

  .rating-title {
    font-size: 22px;
  }

  .rating-grid {
    display: none;
  }

  .rating-grid.open {
    display: flex;
    flex-direction: column;
  }

  .business-text-block {
    margin-top: 16px;
    margin-left: 0;
    width: 100%;
  }

  .business-right {
    width: 100%;
  }

  .business-right button {
    width: 100%;
  }

  .business-text {
    font-size: 20px;
  }

  .footer-item-list {
    display: none;
    padding-top: 20px;
  }

  .footer-item-list > * {
    margin-bottom: 0;
  }

  .footer-item-list li:not(:last-child) {
    padding-bottom: 20px;
  }

  .footer-content-top {
    flex-direction: column;
    padding-bottom: 32px;
  }

  .footer-content-top-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-content-top-grid > * {
    margin-bottom: 12px;
  }

  .footer-content-top-grid > *:last-child {
    margin-bottom: 0;
  }

  .footer-content {
    position: relative;
    padding: 32px 15px;
  }

  .footer-first-block {
    width: 100%;
    margin-bottom: 32px;
  }

  .footer-content-top-social-links {
    display: none;
  }

  .footer-item-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-item-title-wrapper svg {
    display: block;
    width: 8px;
    height: 8px;
    color: #fff;
    transition: 0.3s;
  }

  .footer-content-articles-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
  }

  .footer-content-articles-title-wrapper svg {
    display: block;
    width: 8px;
    height: 8px;
    color: #fff;
    transition: 0.3s;
  }

  .footer-content-articles.active svg {
    transform: rotate(-180deg);
  }

  .footer-item.active .footer-item-title-wrapper svg {
    transform: rotate(-180deg);
  }

  .footer-item-title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 20px;
  }

  .footer-item-list li {
    font-size: 14px;
  }

  .footer-item {
    cursor: pointer;
    padding: 16px 20px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-tertiary,
  .btn-disabled {
    height: 48px;
    font-size: 14px;
    transition: 0.2s;
  }

  .footer-content-articles-grid {
    display: none;
    margin-bottom: 0;
    margin-top: 32px;
  }

  .footer-content-articles-grid div:not(:last-child) {
    padding-bottom: 20px;
  }

  .footer-content-articles {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-top: 32px;
    margin-bottom: 32px;
    cursor: pointer;
  }

  .footer-content-articles-title {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 500;
  }

  .footer-content-articles-title-desktop {
    display: none;
  }

  .footer-content-articles-title-mobile {
    display: block;
  }

  .footer-content-articles .footer-line {
    display: none;
  }

  .footer-content-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .footer-content-bottom-image {
    display: none;
  }

  .footer-content-bottom-copyright {
    flex-direction: column;
  }

  .footer-content-bottom-copyright > * {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .footer-content-bottom-copyright > *:last-child {
    margin-bottom: 0;
  }

  .footer-content-bottom-copyright p span {
    display: none;
  }

  .footer-content-bottom-links {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }

  .footer-content-bottom-links a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 32px;
    height: 32px;
  }

  .footer-content-bottom-links > * {
    margin-right: 10px;
  }

  .footer-content-bottom-links > *:last-child {
    margin-right: 0;
  }

  .footer-content-bottom-links svg {
    fill: #fff;
    width: 16px;
    height: 16px;
  }

  .footer-content-bottom-links svg.facebook-icon {
    width: 24px;
    height: 24px;
  }

  .footer-content-copyright {
    padding-bottom: 24px;
  }

  .footer-content-image {
    display: block;
  }

  .footer-content-copyright h3 {
    font-size: 20px;
    line-height: 20px;
  }

  .burger-menu {
    width: 32px;
    height: 32px;
    background-color: rgba(181, 46, 81, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
  }

  .burger-menu-icon {
    width: 16px;
    height: 1px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
  }

  .burger-menu-icon::before,
  .burger-menu-icon::after {
    content: "";
    width: 16px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: transform 0.3s, top 0.3s;
  }

  .burger-menu-icon::before {
    top: -6px;
  }

  .burger-menu-icon::after {
    top: 6px;
  }

  .burger-menu.is-open .burger-menu-icon {
    background-color: transparent;
  }

  .burger-menu.is-open .burger-menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .burger-menu.is-open .burger-menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .rating-title-wrapper svg {
    display: block;
    width: 8px;
    min-width: 8px;
    min-height: 8px;
    height: 8px;
    transition: 0.3s;
  }

  .rating.active .rating-title-wrapper svg {
    transform: rotate(-180deg);
  }

  .other-companies-title {
    padding: 0 16px;
  }

  .company-photo-overlay .overlay {
    font-size: 14px;
    font-weight: 400;
  }

  .company-freeEstimate-mobile {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    border-radius: 12px;
    background: #fff;
  }

  .company-freeEstimate-mobile > * {
    margin-bottom: 12px;
  }

  .company-freeEstimate-mobile > *:last-child {
    margin-bottom: 0;
  }

  .company-freeEstimate-mobile-text {
    color: var(--color-black);
  }

  .company-freeEstimate-buttons {
    display: flex;
  }

  .company-freeEstimate-buttons > * {
    margin-right: 8px;
  }

  .company-freeEstimate-buttons > *:last-child {
    margin-right: 0;
  }

  .company-freeEstimate-buttons .btn-quaternary {
    font-size: 14px;
    height: 40px;
  }

  .company-freeEstimate-buttons button {
    height: 40px;
    font-size: 12px;
  }

  .company-freeEstimate-buttons svg {
    width: 16px;
    height: 16px;
  }

  .company-freeEstimate-socials {
    display: flex;
    justify-content: space-between;
  }

  .company-freeEstimate-socials > * {
    margin-right: 8px;
  }

  .company-freeEstimate-socials > *:last-child {
    margin-right: 0;
  }

  .company-freeEstimate-social {
    border-radius: 6px;
    border: 1px solid rgba(224, 224, 224, 1);
    padding: 4px 8px;
    width: 100%;
  }

  .company-freeEstimate-social a {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .company-freeEstimate-social a.disabled .company-freeEstimate-social-icon {
    background: #e0e0e0;
  }

  .company-freeEstimate-social a.disabled {
    pointer-events: none;
    cursor: not-allowed;
  }

  .company-freeEstimate-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: rgba(181, 46, 81, 1);
    color: #fff;
    border-radius: 50%;
    margin-right: 6px;
  }

  .company-freeEstimate-social-icon svg {
    width: 13px;
    height: 13px;
    color: #fff;
    fill: #fff;
  }

  .company-freeEstimate-social-icon svg.facebook-icon {
    width: 18px;
    height: 18px;
  }

  .company-freeEstimate-social p {
    font-size: 12px;
    line-height: 12px;
    color: var(--color-black);
  }

  .company-score {
    flex-direction: column;
  }

  .company-info {
    padding: 20px 15px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .company-info > p {
    font-size: 14px;
  }

  .company-info-more span {
    font-size: 14px;
  }

  .totalscore-value-title {
    font-size: 16px;
  }

  .company-main > * {
    margin-bottom: 30px;
  }

  .company-main > *:last-child {
    margin-bottom: 0;
  }

  .company-report-header p {
    font-size: 18px;
  }

  .company-report-header h3 {
    font-size: 18px;
  }

  .company-report-points h3 {
    font-size: 20px;
  }

  .company-report-points span {
    font-size: 14px;
  }

  .company-report-items {
    -ms-grid-columns: 1fr 4px 1fr;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    -moz-column-gap: 4px;
    column-gap: 4px;
  }

  .company-report-item-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-report-item-body > * {
    margin-right: 0;
    margin-bottom: 6px;
  }

  .company-report-item-body > *:last-child {
    margin-bottom: 0;
  }

  .company-report-item-header h3 {
    font-size: 18px;
  }

  .company-report-item-body span {
    font-size: 14px;
  }

  .company-report {
    padding: 24px 15px;
    border-radius: 12px;
  }

  .company-aside {
    border-radius: 12px;
    padding: 15px;
  }

  .company-services {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 0;
    border-radius: 12px;
  }

  .company-services-items-wrapper {
    overflow: auto;
    padding-right: 15px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .company-services-items-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .company-services-items {
    display: inline-flex;
  }

  .company-services-item:hover {
    transform: none;
  }

  .company-services-item {
    width: 290px;
    height: 224px;
  }

  .company-director {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .company-director-left {
    width: 100%;
  }

  .company-director-right {
    display: none;
  }

  .company-director-header {
    margin-bottom: 8px;
  }

  .company-director-header picture {
    display: block;
  }

  .company-director-title {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .company-director-subtitle {
    margin-bottom: 0;
    font-size: 18px;
  }

  .company-director-header img {
    width: 100px;
    height: 85px;
    border-radius: 8px;
  }

  .company-director-audio {
    display: none;
  }

  .company-director-text {
    color: var(--color-black);
    line-height: 24px;
  }

  .company-director-more span {
    font-size: 14px;
  }

  .company-video {
    padding: 20px;
    padding-right: 0;
    border-radius: 12px;
  }

  .company-video-items-wrapper {
    overflow: auto;
    padding-right: 15px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .company-video-items-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .company-video-items {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .company-video-item {
    width: 293px;
    height: 100%;
  }

  .company-video-name {
    font-size: 20px;
  }

  .company-video-duration {
    font-size: 14px;
  }

  .company-video button {
    display: none;
  }

  .company-contacts {
    padding: 20px;
    row-gap: 0;
    -ms-grid-columns: none;
    grid-template-columns: none;
    -ms-grid-rows: auto 0 auto 0 auto;
    grid-template-areas:
      "contacts-title"
      "contacts-location"
      "contacts-social";
    border-radius: 12px;
  }

  .company-contacts-location {
    margin-bottom: 16px;
  }

  .company-contacts-title {
    font-size: 22px;
  }

  .company-benefits {
    margin-top: 0;
    padding: 0 15px;
  }

  .company-benefits-title {
    font-size: 22px;
  }

  .company-reviews {
    padding-left: 15px;
    padding-right: 0;
  }

  .company-reviews-control {
    display: none;
  }

  .company-reviews .btn-primary {
    width: auto;
    height: auto;
    padding: 15px;
    margin-right: 15px;
  }

  .company-reviews-items {
    margin-bottom: 0;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-right: 15px;
  }

  .company-reviews-items::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .company-reviews-item {
    flex: 0 0 306px;
  }

  .company-reviews-filters {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-right: 15px;
    margin: 0;
  }

  .company-reviews-filters > * {
    margin: 0;
    margin-right: 12px;
  }

  .company-reviews-filters > *:last-child {
    margin-right: 0;
  }

  .company-reviews-filters::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .company-articles {
    padding-left: 15px;
  }

  .company-articles-title {
    font-size: 22px;
  }

  .company-articles-items {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-right: 15px;
  }

  .company-articles-item {
    flex: 0 0 306px;
  }

  .company-articles-items::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .company-feedback {
    padding: 24px 11px;
    gap: 0;
    border-radius: 12px;
  }

  .company-feedback-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .company-feedback-subtitle {
    margin-bottom: 18px;
  }

  .company-feedback-grid {
    flex-direction: column-reverse;
  }

  .company-feedback-form {
    width: 100%;
    padding: 24px 15px;
  }

  .company-feedback-location-wrapper {
    width: 100%;
  }

  .company-feedback-map {
    width: 100%;
    height: 98px;
  }

  .company-feedback-street {
    padding: 8px 12px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .company-feedback-form input,
  .company-feedback-form textarea {
    font-size: 14px;
    padding: 14px 12px;
  }

  .company-feedback-social-dropdown {
    display: flex;
    flex-direction: column;
  }

  .company-feedback-social-toggle {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
  }

  .company-feedback-social-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    transition: border-radius 0.3s ease;
    cursor: pointer;
  }

  .company-feedback-social-item {
    display: flex;
    align-items: center;
    padding: 20px 12px;
    cursor: pointer;
  }

  .company-feedback-social-items {
    transition: border-radius 0.3s ease;
  }

  .company-feedback-social-selected-left {
    display: flex;
    align-items: center;
  }

  .company-feedback-social-selected-right {
    display: flex;
    align-items: center;
  }

  .company-feedback-social-selected-right span {
    font-weight: 700;
    font-size: 14px;
  }

  .company-feedback-social-selected-right svg {
    width: 15px;
    height: 7px;
  }

  .company-feedback-social-icon {
    /* background: var(--color-green); */
    width: 24px;
    height: 24px;
  }

  .company-feedback-social-icon svg {
    width: 16px;
    height: 16px;
  }

  .company-feedback-social-icon svg.facebook-icon {
    width: 20px;
    height: 20px;
  }

  .company-feedback-social-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .other-companies-title {
    font-size: 28px;
  }

  .company-getEstimate {
    display: none;
  }

  .company-title-rating {
    width: 40px;
    min-width: 40px;
    height: 35px;
    margin-right: 3px;
  }

  .company-title-placement {
    height: 59px;
    width: 40px;
    top: 0;
  }

  .company-title-placement picture,
  .company-title-placement img {
    height: 59px;
    width: 40px;
  }

  .company-title-rating svg {
    min-width: 20px;
    width: 20px;
    min-height: 20px;
    height: 20px;
  }

  .company-title-logo {
    height: 35px;
    padding: 3px;
    border-radius: 6px;
  }

  .company-score .card-item-feedback {
    border-radius: 12px;
  }

  .company-title-logo picture {
    height: 100%;
    width: 100%;
  }

  .company-title-rating span {
    font-size: 14px;
    font-weight: 500;
    top: 51%;
  }

  .company-header {
    border-radius: 12px;
    top: 65px;
    padding-left: 16px;
    padding-right: 16px;
    /* padding: 6px 7px; */
  }
  .company-header.is-stuck {
    padding-top: 50px;
    top: 30px;
  }

  .company-title {
    width: 100%;
  }

  .company-title-name h1 {
    line-height: 18px;
    -webkit-line-clamp: 2;
  }

  .company-title-title {
    margin-right: 2px;
  }

  .company-title-name p {
    display: none;
  }

  .Rectangles {
    display: none;
  }

  .name-logo img {
    max-height: inherit;
    max-width: 80px;
  }

  .sort-options-mobile,
  .search-result-mobile,
  .filter-options-mobile {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    border-radius: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .sort-options-mobile.active,
  .search-result-mobile.active,
  .filter-options-mobile.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }

  .sort-options-inner,
  .filter-options-inner {
    display: flex;
    flex-direction: column;
    padding: 15px;
    overflow-y: auto;
  }

  .sort-options-inner::-webkit-scrollbar,
  .filter-options-inner::-webkit-scrollbar {
    width: 0.3em;
  }

  .sort-options-inner::-webkit-scrollbar,
  .sort-options-inner::-webkit-scrollbar-thumb,
  .filter-options-inner::-webkit-scrollbar,
  .filter-options-inner::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 4px;
  }

  .sort-options-inner::-webkit-scrollbar-thumb,
  .filter-options-inner::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
  }

  .filter-options-filters {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
  }

  .filter-options-filter {
    display: flex;
    border-radius: 4px;
    align-items: center;
    background: #fff;
    margin: 4px;
  }

  .filter-options-stage {
    margin-top: 20px;
  }

  .filter-options-filter p {
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
  }

  .filter-options-filter svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .search-result-mobile {
    background: #fff;
    padding: 15px;
  }

  .sort-options-mobile,
  .filter-options-mobile {
    background: rgba(244, 244, 246, 1);
  }

  .sort-options-header,
  .filter-options-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
  }

  .filter-options-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    cursor: pointer;
  }

  .sort-options-header svg,
  .filter-options-header svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .filter-options-header .back-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
  }

  .filter-options-header .back-button-wrapper svg {
    height: 8px;
    width: 4px;
  }

  .filter-options-items {
    display: flex;
    flex-direction: column;
  }

  .filter-options-items > * {
    margin-bottom: 12px;
  }

  .filter-options-items > *:last-child {
    margin-bottom: 0;
  }

  .radio-label {
    font-weight: 400;
  }

  .filter-options-selectType {
    padding: 14px 16px;
    justify-content: space-between;
  }

  .filter-options-item-empty {
    font-size: 16px;
    color: var(--color-black);
  }

  .filter-options-item {
    padding: 12px 6px;
  }

  .filter-options-selectType,
  .filter-options-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    color: var(--color-black);
  }

  .filter-options-selectType > *,
  .filter-options-item > * {
    margin-right: 3px;
  }

  .filter-options-selectType > *:last-child,
  .filter-options-item > *:last-child {
    margin-right: 0;
  }

  .filter-options-title {
    font-size: 20px;
    color: var(--color-black);
  }

  .filter-options-footer {
    margin-top: auto;
    padding: 15px;
    background: #fff;
    border-top: 1px solid rgba(224, 224, 224, 1);
  }

  .sort-options-items,
  .filter-options-items {
    display: flex;
    flex-direction: column;
  }

  .sort-options-items > * {
    margin-bottom: 12px;
  }

  .sort-options-items > *:last-child {
    margin-bottom: 0;
  }

  /*.sort-options-item {*/
  /*    display: flex;*/
  /*    align-items: center;*/
  /*    padding: 14px 16px;*/
  /*    gap: 6px;*/
  /*    background: #fff;*/
  /*    border-radius: 8px;*/
  /*    cursor: pointer;*/
  /*    transition: 0.3s;*/
  /*    width: 100%;*/
  /*}*/
  .sort-options-item {
    pointer-events: none;
  }

  a.filter-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
  }

  a.filter-link > * {
    margin-right: 6px;
  }

  a.filter-link > *:last-child {
    margin-right: 0;
  }

  .main-content-sortResult {
    padding: 0 16px;
  }

  .filter-options-selectType svg,
  .filter-options-item svg {
    width: 8px;
    height: 8px;
  }

  .filter-options-selectType p,
  .filter-options-item p {
    color: var(--color-black);
  }

  .sort-options-title,
  .filter-options-title {
    color: var(--color-black);
  }

  .sort-options-reset,
  .filter-options-reset {
    color: var(--color-black);
    font-weight: 600;
    padding-bottom: 1px;
    border-bottom: 1.5px solid rgba(224, 224, 224, 1);
    cursor: pointer;
  }

  .search-result-mobile .search-result-items {
    display: none;
    overflow: auto;
  }

  .search-result-mobile .search-result-items::-webkit-scrollbar {
    width: 0.3em;
  }

  .search-result-mobile .search-result-items::-webkit-scrollbar,
  .search-result-mobile .search-result-items::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 4px;
  }

  .search-result-mobile .search-result-items::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
  }

  .search-result-item {
    width: 100%;
  }

  .search-result-city,
  .search-result-state {
    border: none;
    width: 100%;
  }

  .search-result-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .search-result-header svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-bottom: 16px;
  }

  .text-field-icon {
    width: 100%;
  }

  .search-result-list {
    max-height: none;
    overflow: hidden;
  }

  .search-result-empty,
  .search-result-title {
    font-size: 12px;
  }

  header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
  }

  .company-report-item-content {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    top: auto;
    z-index: 1;
    pointer-events: auto;
    padding: 1.25rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .photo-overlay {
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
  }

  .company-report-item-button {
    min-width: 32px;
    min-height: 32px;
  }

  .photo-gallery-items {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-gallery-title {
    justify-content: flex-start;
    margin-bottom: 24px;
    margin-right: 0;
    margin-right: 12px;
  }

  #large-photo-container {
    width: 100%;
    height: auto;
  }

  .photo-gallery-thumbnail-slider {
    justify-content: stretch;
    padding: 0 16px;
  }

  .photo-gallery-slider-count {
    height: 40px;
    width: 68px;
  }

  .photo-gallery-slider-close {
    width: 40px;
    height: 40px;
  }

  .photo-gallery-thumbnail-slider img {
    width: 82px;
    height: 66px;
  }

  .modal-overlay {
    align-items: flex-end;
  }

  .modal-wrapper {
    max-width: none;
    width: 100%;
    /*border-bottom-right-radius: 0;*/
    /*border-bottom-left-radius: 0;*/
    /*border-top-left-radius: 12px;*/
    /*border-top-right-radius: 12px;*/
    border-radius: 0;
    padding: 20px 15px;
    overflow-y: auto;
    /*max-height: 90%;*/
    height: 100%;
    /* padding-top: 72px; */
  }

  .modal-order-social p,
  .modal-contacts-social p {
    font-size: 12px;
  }

  #modal-thanks .modal-wrapper {
    width: 100%;
  }

  .modal-contacts-file {
    justify-content: flex-start;
  }

  .modal-close {
    order: 1;
  }

  .modal-contacts-title {
    order: 2;
  }

  .modal-review-title {
    order: 2;
  }

  .modal-review-body {
    order: 3;
  }

  .modal-contacts-body {
    order: 3;
  }

  .modal-contacts-header {
    order: 4;
  }

  .modal-contacts-location {
    order: 5;
  }

  .line-desktop {
    display: none;
  }

  .modal-contacts-title h3 {
    font-size: 18px;
  }

  .modal-review-title h3 {
    font-size: 18px;
  }

  .modal-contacts-body input,
  .modal-contacts-body textarea {
    font-size: 14px;
  }

  .card-item-rank {
    position: relative;
    height: 80px;
    width: 48px;
  }

  .card-item-top {
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translateY(-63%) translateX(-50%);
  }

  .card-item-year {
    position: absolute;
    font-size: 10px;
    font-weight: 400;
    bottom: 6%;
    left: 50%;
    z-index: 1;
    color: var(--color-green);
    transform: translateY(-20%) translateX(-50%);
  }

  .home-nationalRanking-title h1 {
    font-size: 32px;
    line-height: 32px;
  }

  .home-nationalRanking-awardDesk {
    padding: 16px;
  }

  .home-nationalRanking-awardDesk-text h2 {
    font-size: 18px;
    line-height: 18px;
  }

  .home-nationalRanking-awardDesk-text {
    width: 80%;
  }

  .home-nationalRanking-award {
    width: 42px;
    height: 80px;
  }

  .home-nationalRanking-quantityCompanies h3 {
    font-size: 32px;
    line-height: 32px;
  }

  .home-nationalRanking-ratingCompanies-title h3 {
    font-size: 32px;
  }

  .home-nationalRanking-quantityCompanies {
    padding: 36px 14px;
  }

  .home-nationalRanking-ratingCompanies {
    padding: 32px 7px;
  }

  .home-nationalRanking-ratingCompanies-title h3 {
    font-weight: 600;
  }

  .home-nationalRanking-ratingCompanies-score p {
    margin: 8px 0 0 0;
    width: 100%;
  }

  .home-nationalRanking-slider-controllers {
    right: 0;
    bottom: 7px;
  }

  .home-nationalRanking-slider-controllers > * {
    margin-right: 8px;
  }

  .home-nationalRanking-slider-controllers > *:last-child {
    margin-right: 0;
  }

  .home-nationalRanking-slider-controller {
    width: 12px;
    height: 12px;
  }

  .home-nationalRanking {
    padding: 32px 15px;
    border-radius: 20px;
    grid-template-areas:
      "ranking-title ranking-slider"
      "ranking-rating ranking-awards";
  }

  .home-nationalRanking-slider-photo {
    height: 100%;
  }

  .home-nationalRanking-slider-item {
    height: 100%;
  }

  .home-nationalRanking-slider-photo img,
  .home-nationalRanking-slider-photo picture {
    height: 100%;
  }

  .home-nationalRanking-slider-comment-inner {
    padding: 6px 8px 11px 8px;
  }

  .home-nationalRanking-slider-comment-inner img {
    width: 30px;
    height: 57px;
  }

  .home-content-information {
    padding: 32px 15px;
    border-radius: 20px;
    flex-direction: column;
  }

  .home-content-information-title h2 {
    width: 100%;
    font-size: 32px;
    line-height: 32px;
  }

  .home-content-information-left {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .information-us-card span {
    font-size: 32px;
    font-weight: 700;
  }

  .home-content-information-card:nth-child(1) .information-card-header span {
    font-size: 32px;
    font-weight: 700;
  }

  .home-content-information-card:nth-child(1) p {
    font-size: 14px;
  }

  .home-content-information-card:nth-child(1) .information-card-image {
    height: 48px;
    width: 48px;
  }

  .home-content-information-card:nth-child(2) span {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
  }

  .home-content-information-card:nth-child(3) span {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
  }

  .home-content-information-card:nth-child(4)
    .home-content-information-text
    span {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
  }

  .home-content-information-card:nth-child(4)
    .home-content-information-text
    span {
    margin-bottom: 6px;
  }

  .home-content-information-us {
    margin-top: 30px;
    padding: 12px;
  }

  .home-content-information-card:nth-child(1) {
    padding: 12px;
    border-radius: 12px;
    height: 190px;
  }

  .home-content-information-card:nth-child(2)
    .home-content-information-card-item {
    padding: 12px;
  }

  .home-content-information-card:nth-child(3)
    .home-content-information-card-item {
    padding: 12px;
    height: 100%;
  }

  .home-content-information-card:nth-child(4) {
    padding: 12px;
    border-radius: 12px;
  }

  .home-content-information-card:nth-child(4) > * {
    margin-bottom: 12px;
  }

  .home-content-information-card:nth-child(4) > *:last-child {
    margin-bottom: 0;
  }

  .home-content-placement {
    position: relative;
    padding: 32px 15px;
    border-radius: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
      "placement-title"
      "placement-awards"
      "placement-block";
  }

  .home-content-information-card:nth-child(2) {
    padding: 12px;
    border-radius: 12px;
  }

  .home-content-information-card:nth-child(3) {
    padding: 12px;
    border-radius: 12px;
  }

  .home-content-information-card:nth-child(2) .home-content-information-images {
    margin-bottom: 10px;
  }

  .home-content-information-card:nth-child(2) .home-content-information-header {
    align-items: flex-start;
  }

  .home-content-information-card:nth-child(2)
    .home-content-information-card-item:nth-child(1)
    .home-content-information-header {
    flex-direction: column;
  }

  .home-content-information-right {
    grid-template-areas:
      "info-card-1 info-card-1"
      "info-card-3 info-card-2"
      "info-card-4 info-card-4";
    row-gap: 20px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }

  .home-content {
    margin-bottom: 30px;
  }

  .home-content > * {
    margin-bottom: 30px;
  }

  .home-content-placement-title h2 {
    margin-bottom: 20px;
    color: var(--color-black);
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
  }

  .home-content-placement-title p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
  }

  .home-content-placement-item-first {
    padding: 24px 20px;
  }

  .home-content-placement-item {
    padding: 24px 20px;
  }

  .placement-item-title h3 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  .placement-item-text h3 {
    font-size: 18px;
    line-height: 18px;
  }

  .placement-item-text p {
    font-size: 14px;
    line-height: 18px;
  }

  .placement-item-text {
    margin-bottom: 16px;
  }

  .home-content-placement-items {
    margin-bottom: 30px;
  }

  .placement-item-link a {
    font-weight: 600;
  }

  .home-content-placement-local-rankings {
    display: none;
  }

  .home-content-placement-local-rankings-mobile {
    display: block;
    margin: 0 15px;
  }

  .home-content-placement-local-rankings p {
    font-size: 28px;
    line-height: 28px;
  }

  .placement-local-rankings-text {
    padding: 57px 57px 57px 32px;
  }

  .placement-local-rankings-text svg {
    height: 48px;
    width: 48px;
    min-height: 48px;
    min-width: 48px;
  }

  .home-content-localRankings {
    padding: 32px 15px;
    border-radius: 20px;
  }

  .home-content-localRankings-description {
    flex-direction: column;
  }

  .home-content-localRankings-title h2 {
    font-size: 28px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .home-content-localRankings-item {
    padding: 8px;
  }

  .home-content-localRankings-subtitle p {
    width: 100%;
  }

  .home-content-localRankings-items {
    margin-top: 20px;
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .home-content-cooperation {
    padding: 32px 15px;
    border-radius: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    -ms-grid-rows: auto 20px auto 20px auto 20px auto 20px auto;
    grid-template-areas:
      "cooperation-title"
      "cooperation-founder"
      "cooperation-sponsors"
      "cooperation-partners"
      "cooperation-sponsorship";
  }

  .home-content-cooperation-image {
    max-height: 306px;
    margin-right: 20px;
  }

  .home-content-cooperation-image img {
    height: 100%;
    width: 100%;
  }

  .home-content-cooperation-title {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
  }

  .home-content-cooperation-image p {
    padding: 6px 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .home-content-cooperation-sponsors h2 {
    font-size: 22px;
  }

  .home-content-cooperation-partners h2 {
    margin-bottom: 16px;
  }

  .home-content-cooperation-sponsorship {
    flex-direction: column-reverse;
  }

  .home-content-cooperation-sponsorship > * {
    margin-top: 20px;
    margin-right: 0;
  }

  .home-content-cooperation-sponsorship > *:last-child {
    margin-top: 0;
  }

  .home-content-cooperation-card-active {
    width: 100%;
    border-radius: 12px;
  }

  .home-content-cooperation-card-active h2 {
    font-size: 28px;
    line-height: 28px;
  }

  .home-content-cooperation-card-active a {
    margin-top: 24px;
  }

  .home-content-cooperation-card-wrapper {
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 16px;
  }

  .home-content-cooperation-card {
    border-radius: 12px;
  }

  .home-content-howSelect {
    padding: 32px 15px;
    border-radius: 20px;
  }

  .howSelect-description-title h2 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
  }

  .home-content-howSelect-information {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .howSelect-buttons {
    display: flex;
  }

  .howSelect-buttons > * {
    margin-right: 8px;
  }

  .howSelect-buttons > *:last-child {
    margin-right: 0;
  }

  .howSelect-button {
    min-height: 40px;
    padding: 10px 20px;
    border-radius: 6px;
    background: rgba(235, 235, 235, 1);
    cursor: pointer;
    transition: 0.1s;
    width: 100%;
    text-align: center;
  }

  .howSelect-button.active {
    background: var(--color-green);
  }

  .howSelect-button.active p {
    color: #fff;
  }

  .howSelect-description-image img {
    width: 100%;
    height: 415px;
  }

  .information-item-title h3 {
    font-size: 18px;
    line-height: 18px;
  }

  .howSelect-information-item {
    padding: 0;
  }

  .howSelect-information-item:hover {
    background: none;
  }

  .information-item-link .btn-primary {
    width: 100%;
  }

  .howSelect-information-items {
    padding-bottom: 32px;
  }

  .howSelect-information-footer {
    margin-top: 16px;
  }

  .home-content-benefits-customers,
  .home-content-benefits-contractors {
    width: 100%;
    padding: 24px 15px;
    border-radius: 20px;
  }

  .home-content-benefits-header h2 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .home-content-benefits-header {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .home-content-benefits-header img {
    height: 446px;
    max-height: none;
  }

  .home-content-benefits-header picture {
    width: 100%;
  }

  .home-content-giveApplication {
    padding: 12px;
    flex-direction: column;
    border-radius: 20px;
  }

  .home-content-giveApplication > * {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .home-content-giveApplication > *:last-child {
    margin-bottom: 0;
  }

  .home-content-giveApplication-suggestion h2 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
  }

  .home-content-giveApplication-award {
    position: absolute;
    top: 0;
    right: 24px;
  }

  .home-content-giveApplication-suggestion .btn-primary {
    font-size: 22px;
    height: 65px;
  }

  .home-content-giveApplication-suggestion
    .btn-primary
    .getListed-icon-wrapper {
    width: 53px;
    height: 53px;
  }

  .home-content-giveApplication-suggestion
    .btn-primary
    .getListed-icon-wrapper
    svg {
    width: 15px;
    height: 15px;
  }

  .home-content-giveApplication-suggestion h2 {
    margin-bottom: 24px;
  }

  .home-content-news {
    padding: 0 0 0 15px;
  }

  .home-content-news-description-title h2 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
  }

  .home-content-news-description-subtitle p {
    font-size: 14px;
    line-height: 18px;
    width: 100%;
  }

  .home-content-news-items {
    margin-top: 16px;
    margin-bottom: 20px;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 15px;
    gap: 0;
  }

  .home-content-news-items > * {
    margin-right: 10px;
  }

  .home-content-news-items > *:last-child {
    margin-right: 0;
  }

  .home-content-news-items-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .home-content-news-item {
    width: 306px;
    height: 320px;
  }

  .home-content-news-item-text p {
    font-size: 20px;
    line-height: 20px;
  }

  .home-content-news-items-wrapper {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .home-content-news-description {
    padding-right: 15px;
  }

  .home-content-news-allNews {
    padding-right: 15px;
  }

  .howSelect-information-item {
    display: none;
  }

  .howSelect-information-item.active {
    display: block;
    -webkit-animation: fadeIn 0.5s ease;
    animation: fadeIn 0.5s ease;
  }

  .home-content-benefits {
    background: #fff;
    border-radius: 20px;
    position: relative;
  }

  .home-content-benefits-buttons {
    display: flex;
    padding: 24px 15px 0 15px;
  }

  .home-content-benefits-buttons > * {
    margin-right: 8px;
  }

  .home-content-benefits-buttons > *:last-child {
    margin-right: 0;
  }

  .home-content-benefits-button {
    min-height: 40px;
    padding: 10px 20px;
    border-radius: 6px;
    background: rgba(235, 235, 235, 1);
    cursor: pointer;
    transition: 0.1s;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
  }

  .home-content-benefits-button.active {
    background: var(--color-green);
  }

  .home-content-benefits-button.active p {
    color: #fff;
  }

  .home-content-benefits-customers,
  .home-content-benefits-contractors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease, transform 0.5s ease;
  }

  .home-content-benefits-customers.active,
  .home-content-benefits-contractors.active {
    display: flex;
    position: static;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease, transform 0.5s ease;
  }

  .home-content-benefits-customers.leaving,
  .home-content-benefits-contractors.leaving {
    position: absolute;
    transform: translateX(100%);
    opacity: 0;
    transition: opacity 1s ease, transform 0.5s ease;
  }

  .home-nationalRanking-slider-circle {
    display: none;
  }

  .localRankings-dropdown-state {
    font-size: 18px;
  }

  .photo-gallery-items img {
    max-height: 184px;
    object-fit: cover;
  }

  .modal-thanks-body {
    order: 2;
  }

  .share {
    width: 24px;
    height: 24px;
  }

  .white-corner {
    height: auto;
  }

  .white-corner img {
    border-radius: 0;
    width: 110px;
    height: 52px;
  }

  .contactors-page-warning-block {
    margin: 15px;
  }

  .card-item-report {
    overflow: hidden;
  }

  .card-item-report .hover-tooltip {
    bottom: auto;
    top: -20%;
    left: -100%;
  }

  .footer-rankings {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }

  .footer-contractors {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .footer-partners {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .footer-about {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .footer-customers {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .footer-evaluation {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }

  .footer-marketing {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }

  .company-contacts-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .company-contacts-social {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .company-contacts-location {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .home-nationalRanking-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .home-nationalRanking-awardDesk {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .home-nationalRanking-slider {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }

  .home-nationalRanking-information {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .home-content-placement-items-wrapper {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .home-content-placement-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .home-content-placement-local-rankings {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .home-content-information-card:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .home-content-information-card:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .home-content-information-card:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .home-content-information-card:nth-child(4) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .home-content-cooperation-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .home-content-cooperation-founder {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .home-content-cooperation-sponsorship {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }

  .home-content-cooperation-sponsors {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .home-content-cooperation-partners {
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .show-tooltip .hover-tooltip {
    display: flex;
    opacity: 1;
    transform: translate(0, 0);
    pointer-events: auto;
  }

  .show-tooltip .hover-tooltip.default {
    transform: translateX(-75%);
  }

  .card-item-rank.show-tooltip .hover-tooltip {
    transform: translateY(200%);
  }
}

@media (max-width: 400px) {
  .photo-gallery-items img {
    max-height: 140px;
    /* object-fit: cover; */
  }
}
@media (max-width: 768px) {
  .header-content-ticker {
    display: none !important;
  }
  .company-info-title {
    font-size: 20px;
  }
  .feedback-footer-text p {
    -webkit-line-clamp: 2;
  }
  .home-nationalRanking-slider-photo img,
  .home-nationalRanking-slider-photo picture {
    height: 441px;
  }
  .header-content-logo img {
    width: 127px;
    height: 45px;
    min-width: 127px;
    min-height: 45px;
  }
  .home-content-localRankings-dropdown {
    position: static;
    box-shadow: none;
    padding: 16px 0 0 0;
  }
  /* .header-modal-search {
    height: 90vh;
  } */
  .header-modal-search-list hr {
    height: 2px;
    width: 100%;
  }
  .header-modal-search-list {
    flex-direction: column;
    height: 550px;
    overflow-y: auto;
  }
  .localRankings-dropdown-items {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .home-content-localRankings-dropdown h3 {
    display: none;
  }

  .shopperReport-score {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }

  .feedback-body {
    display: flex;
    flex-direction: column;
  }

  .home-nationalRanking {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
      "ranking-title"
      "ranking-slider"
      "ranking-awards"
      "ranking-rating";
  }

  .home-content-information-card:nth-child(1) {
    height: 252px;
  }

  .howSelect-description-image img {
    height: 310px;
  }

  .home-content-placement-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    overflow: hidden;
    height: 428px;
    transition: 0.3s ease;
    position: relative;
    gap: 0;
  }

  .home-content-placement-items > * {
    margin-bottom: 20px;
  }

  .home-content-placement-items > *:last-child {
    margin-bottom: 0;
  }

  .home-content-placement-local-rankings p {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
  }

  .placement-local-rankings-text {
    padding: 24px;
    padding-right: 48px;
  }

  .home-content-placement-local-rankings {
    --pillar-size: 18px;
    --big-circle-r: 18px;
    --circle-r: 12px;
  }

  .home-content-localRankings-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    overflow: hidden;
    /*height: 428px;*/
    transition: 0.3s ease;
    position: relative;
    margin-bottom: 20px;
  }

  .home-content-localRankings-items.hideCard {
    margin-bottom: 0;
  }

  .home-content-cooperation-founder {
    flex-direction: column;
  }

  .home-content-cooperation-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .home-content-cooperation-founder i {
    width: 100%;
  }

  .home-content-benefits-header img {
    height: 208px;
  }

  .home-content-placement-opening {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .home-content-placement-more {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }

  .home-content-placement-more p {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
    margin-right: 4px;
  }

  .home-content-placement-more svg {
    width: 15px;
    height: 7px;
    transition: 0.1s;
  }

  .home-content-placement-overlay {
    display: block;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      #fff 75%
    );
    transition: opacity 0.3s ease;
    opacity: 1;
    pointer-events: none;
  }

  .home-content-placement-items.expanded .home-content-placement-overlay {
    opacity: 0;
  }

  .home-content-localRankings-opening {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .home-content-localRankings-more {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }

  .home-content-localRankings-more p {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
    margin-right: 4px;
  }

  .home-content-localRankings-more svg {
    width: 15px;
    height: 7px;
    transition: 0.1s;
  }

  .home-content-localRankings-overlay {
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      #fff 75%
    );
    transition: opacity 0.3s ease;
    opacity: 1;
    pointer-events: none;
  }

  .home-content-localRankings-items.expanded
    .home-content-localRankings-overlay {
    opacity: 0;
  }

  .home-content-localRankings {
    position: relative;
  }

  .company-aside img,
  .company-aside picture {
    height: 104px;
  }

  .company-aside .photo-item:nth-child(1) img,
  .company-aside .photo-item:nth-child(2) img {
    height: 158px;
  }
}

@media (max-width: 500px) {
  .home-nationalRanking-slider-photo img {
    height: 100%;
    max-height: 345px;
  }
  .home-content-information-us {
    background-size: 75%;
  }

  .company-feedback-social {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .company-contacts-social-items {
    display: flex;
    flex-direction: column;
  }

  .home-nationalRanking-slider-comment {
    right: 16px;
  }

  .home-content-information-right {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 20px auto 20px auto 20px auto;
    grid-template-areas:
      "info-card-1"
      "info-card-3"
      "info-card-2"
      "info-card-4";
    row-gap: 20px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }

  .home-content-cooperation-card-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .home-content-cooperation-card-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .home-content-cooperation-sponsorship .home-content-cooperation-card {
    width: 100%;
  }

  .home-content-information-card:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .home-content-information-card:nth-child(2) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .home-content-information-card:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .home-content-information-card:nth-child(4) {
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}

@media (max-width: 389px) {
  .modal-contacts-socials {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .header-modal-search-list {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .shopperReport-score {
    -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    white-space: normal;
  }

  .search-mobile,
  .filter-mobile,
  .sort-mobile {
    padding: 14px 18px;
  }

  .company-report-items {
    display: flex;
    flex-direction: column;
  }

  .company-freeEstimate-social {
    padding: 4px 4px;
  }

  .company-freeEstimate-socials > * {
    margin-right: 4px;
  }

  .header-content-logo p br {
    display: none;
  }
}

@media (min-width: 2560px) {
  .photo-gallery-slider-prev,
  .photo-gallery-slider-next {
    height: 7rem;
    width: 7rem;
  }

  .photo-gallery-slider-count {
    width: 6.25rem;
    height: 5rem;
  }

  .photo-gallery-slider-count p {
    font-size: 1.25rem;
  }

  .photo-gallery-slider-prev svg,
  .photo-gallery-slider-next svg {
    width: 16px;
    height: 32px;
  }

  .photo-gallery-slider-close {
    width: 5rem;
    height: 5rem;
  }

  .photo-gallery-close {
    width: 5rem;
    height: 5rem;
  }

  .photo-gallery-close svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .photo-gallery-slider-close svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.is-hidden {
  position: absolute;
  top: -1000px;
}

.header-content-ticker {
  background: #1e3839;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  position: relative;
}

.header-content-ticker > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hello-bar-content > *,
.style-for-hello-bar-dark_large > div > .hello-bar-content > * {
  color: #fff !important;
}

.hello-bar-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.style-for-hello-bar-light_short > .hello-bar-content > *,
.style-for-hello-bar-light_large > .hello-bar-content > *,
.style-for-hello-bar-light_large > div > .hello-bar-content > * {
  color: #282727 !important;
}

.style-for-hello-bar-light_short > .hello-bar-img,
.style-for-hello-bar-dark_short > .hello-bar-img {
  width: 16px;
  height: 16px;
}

.style-for-hello-bar-light_large > div > .hello-bar-img,
.style-for-hello-bar-dark_large > div > .hello-bar-img {
  width: 260px;
  height: 142px;
  border-radius: 10px;
}

.style-for-hello-bar-light_short > .hello-bar-btn,
.style-for-hello-bar-dark_short > .hello-bar-btn {
  padding: 4px 8px;
  font-weight: 600;
  font-size: 12px;
  background: #e8b24e;
  border-radius: 4px;
}

.style-for-hello-bar-dark_large .hello-bar-btn,
.style-for-hello-bar-light_large .hello-bar-btn {
  padding: 14px 8px;
  font-weight: 600;
  width: 100%;
  font-size: 14px;
  background: #e8b24e;
  border-radius: 8px;
  text-align: center;
  max-width: 365px;
}

.style-for-hello-bar-light_short,
.style-for-hello-bar-light_large {
  background: #f4f4f6;
  border-bottom: 1px solid #aba9a8;
}

.hello-bar-close {
  position: absolute;
  right: 9px;
  top: 9px;
}

.style-for-hello-bar-dark_large,
.style-for-hello-bar-light_large {
  padding: 16px;
}

.style-for-hello-bar-dark_short,
.style-for-hello-bar-light_short {
  padding: 10px;
}

@media screen and (max-width: 950px) {
  .style-for-hello-bar-dark_large > div,
  .style-for-hello-bar-light_large > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .style-for-hello-bar-dark_large .hello-bar-btn,
  .style-for-hello-bar-light_large .hello-bar-btn {
    width: 100%;
  }
}

.dn {
  display: none !important;
}

.show-flow {
  margin-top: -53px;
  position: relative;
  z-index: 9;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  padding: 10px;
}

.mg-top-menu-section-title {
  text-indent: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.mb-0 {
  margin-bottom: 0;
}

.sort-option.active span {
  font-weight: 700;
}

.mb {
  margin-bottom: 20px;
}

.company-faq {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
}

.company-faq-title {
  font-size: 28px;
  line-height: normal;
  margin-bottom: 32px;
  color: #282727;
}

.company-faq-note {
  margin-top: 32px;
}

.company-faq-note-title {
  margin-bottom: 8px;
  font-size: 20px;
  color: #282727 !important;
}

.company-faq-note-title > * {
  color: #4a5757;
}

@media screen and (max-width: 768px) {
  .company-faq-title {
    font-size: 22px;
  }
  .company-faq-note {
    display: none;
  }
}

/* @media screen and (max-width: 390px) {
  .company-faq-title {
    font-size: 22px;
  }
  .company-faq-note {
    display: none;
  }
} */

.feedback-body-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.company-info-description-contractor-page > p {
  margin-bottom: 5px;
}

.company-info-description-contractor-page {
  overflow: hidden;
  transition: 0.6s all;
}

.company-info-description-contractor-page > * {
  color: #4a5757;
}

.company-info-description-contractor-page h3 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.company-info-description-contractor-page h2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.home-nationalRanking-slider,
.home-nationalRanking-slider-items {
  touch-action: pan-y;
}

h2.business-title.title-v3 {
  line-height: normal;
}

button.btn-tertiary.btn-v3 {
  padding: 1rem;
  height: 100%;
}

.modal-close.no-margin {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

ol.breadcrumb__list {
  text-indent: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 2px;
}

.breadcrumb__sep {
  margin: 0 4px 0 4px;
}

.breadcrumb__current {
  text-decoration: none;
  color: #aba9a8;
}

.breadcrumbs__listing {
  padding-bottom: 18px;
}

@media (max-width: 992px) {
  nav.breadcrumb {
    padding: 0 16px;
    margin-bottom: 10px;
  }
  .breadcrumbs__listing {
    padding-bottom: 0;
  }
}

a.breadcrumb__link {
  font-size: inherit;
}


.breadcrumb__dropdown {
  position: relative;
  border: 1px solid #c1bdbd;
  border-radius: 5px;
  padding-left: 5px;
}


.breadcrumb__summary {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer;
  list-style: none;             /* убрать маркер details в Firefox */
  outline-offset: 2px;
  border-radius: .5rem;
  padding: .125rem .25rem;      /* небольшой клик-таргет */
}


.breadcrumb__summary::-webkit-details-marker { display: none; }


.breadcrumb__summary::after {
  content: "▾";
  font-size: 1.75em;
  line-height: 1;
  transition: transform .18s ease;
  transform-origin: 50% 45%;
  opacity: .7;
}
.breadcrumb__dropdown[open] .breadcrumb__summary::after {
  transform: rotate(180deg);
  opacity: 1;
}


.breadcrumb__menu {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: max(14rem, 100%);  /* не уже самого summary */
  margin: 0;
  /*padding: .25rem;*/
  padding: 14px 0;
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: .75rem;
  box-shadow:
          0 10px 18px rgba(0,0,0,.06),
          0 3px 6px rgba(0,0,0,.04);
  z-index: 30;


  opacity: 0;
  transform: translateY(-4px) scale(.98);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;

  max-height: 16rem;
  overflow: auto;


  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to bottom, transparent 0, #000 10px, #000 calc(100% - 10px), transparent 100%);
}


.breadcrumb__dropdown[open] > .breadcrumb__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}


.breadcrumb__menu::before {
  content: "";
  position: absolute;
  top: -6px; left: 14px;
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid #e8e8ef;
  border-top: 1px solid #e8e8ef;
  transform: rotate(45deg);
}


.breadcrumb__menu [role="option"] { list-style: none; }
.breadcrumb__option {
  display: block;
  padding: .5rem .625rem;
  border-radius: .5rem;
  text-decoration: none;
  color: #111;
  line-height: 1.25;
  font-size: .9375rem;
  white-space: nowrap;
}
.breadcrumb__option:hover,
.breadcrumb__option:focus {
  background: #f5f6fa;
  outline: none;
}
.breadcrumb__option[aria-selected="true"] {
  font-weight: 600;
}


.breadcrumb__summary:focus-visible,
.breadcrumb__option:focus-visible {
  outline: 2px solid #365cf5;
}


@media (max-width: 480px) {
  .breadcrumb__menu {
    left: auto;
    right: 0;
    min-width: 14rem;
  }
  .breadcrumb__menu::before {
    left: auto; right: 14px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .breadcrumb__menu {
    transition: none;
  }
  .breadcrumb__summary::after {
    transition: none;
  }
}

.company-report.awards-section {
  height: 394px;
  display: flex;
  flex-direction: row;
}

.award__icon {
  width: 187px;
  height: auto;
  display: block;
  transition: transform 0.2s
  ease-out;
  transform-origin: center center;
  padding: 9px;
  background-color: white;
  border-radius: 6px;
}
.award__icon:hover {
  transform: scale(1.3);
  box-shadow: 1px 2px 10px black;
}
.company-title-rating > img.award__icon {
  padding: 0;
  transform: scale(1.35);
  margin-top: 12px;
}

/*New blocks - archive*/


.search-wrap-left-block {
  display: flex;
  width: 50%;
}
.text-field-icon {
  width: 50%;
}
.archive-select-wrapper {
  width: 176px;
  margin-left: 8px;
}
.dropdown-menu.dropdown-archive {
  width: 176px;
}

.top-page-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

ul.breadcrumb__menu.contractor-archive-menu {
  right: 0;
  position: absolute;
  left: unset;
  box-shadow: 3px 3px 2px 0px rgb(128 121 121 / 20%);
  mask-image: unset;
}

/**************************BEGIN-TMP********************/

.company-report.awards-section {
  height: auto;
  display: flex;
  flex-direction: column;
}

.awards-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
}

.award-info-item-tmp {
  padding: 5px;
  height: 100px;
  overflow: scroll;
  margin: 3px;
  border: solid 1px gray;
  border-radius: 5px;
}


.award-item {
  width: 168px;
  padding: 5px;
  border: solid 2px;
  border-radius: 10px;
}

.award-title-tmp {
  font-weight: bold;
  height: 57px;
  padding: 0 5px;
}

.award-field-tmp {
  font-size: 12px;
}

.regions-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
}

.region-item {
  padding: 3px 10px;
  border: solid 1px;
  border-radius: 10px;
}

.archive-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.title-archive-dropdown {
  margin-right: 5px;
}

ul.breadcrumb__menu.contractor-archive-menu {
  padding-left: 14px;
}

/**************************END-TMP********************/



@media (max-width: 992px) {
  .top-page-section {
    flex-direction: column;
  }
  .archive-dropdown {
    padding: 0 16px;
  }
  ul.breadcrumb__menu.contractor-archive-menu {
    left: 0;
    padding-left: 1px;
  }
}

.contractor-portal {
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  #large-photo {
    max-width: 1920px;
    height: 100%;
    width: unset;
    margin: auto;
  }
}


