@import "index.css";
:root {
  --font-family: "Roboto", sans-serif;
  --font-dark-color: #000;
  --font-color: #232332;
  --font-light-color: #838395;
  --font-lighter-color: #525261;
  --font-ultra-light-color: #e5e7eb;
  --primary-color: #271e87;
  --primary-color-hover: #274A6B;
  --secondary-color: #ff6200;
  --primary-bg-color: white;
  --gray-color: #F6F6F8;
  --gray-hover-color: #EFEFF1;
  --gray-dark-color: #e5e7eb;
  --section-border-color: #eeeeee;
  --gold-color: #f1c21b;
  --footer-bg-color: var(--primary-color);
  --footer-color: white;
  --green-color: #24a147;
  --card-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.04) 0px 2px 5px -1px, rgba(0, 0, 0, 0.02) 0px 2px 0px 0px;
  --card-footer-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  --link_color: #271e87;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

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

body {
  color: var(--font-color);
  background-color: var(--primary-bg-color);
  line-height: 1.5;
  font-size: 14px;
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.flex-1 {
  flex: 1;
  min-width: 0;
  min-height: 0;
}

html {
  scroll-behavior: smooth;
}

i {
  color: var(--font-color);
}

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

input, button, textarea, select {
  font: inherit;
}

button:focus {
  outline: 0 !important;
}

input {
  border: none;
  outline: none;
}

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

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

a {
  text-decoration: none;
  font-weight: bold;
  transition: 0.15s all;
  color: var(--link_color);
}

ul, ol {
  list-style-type: none;
}

p {
  font-size: 14px;
  margin-bottom: 14px;
}

.gray-section {
  background: var(--gray-color);
}

.section-padding {
  padding: 48px 80px;
}
@media only screen and (max-width: 1199px) {
  .section-padding {
    padding: 24px 0;
  }
}

.section-border-bottom {
  border-bottom: 2px solid var(--section-border-color);
}

.title-small-bolded {
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--primary-color);
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .title-small-bolded {
    text-align: center;
  }
}

.flex {
  display: flex;
}

.flex-align-center {
  align-items: center;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.flex-column-center-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 1199px) {
  .flex-column-center-mobile {
    align-items: center;
  }
}

.bolded {
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-row-gap: 16px;
}

.col-1 {
  grid-column: auto/span 1;
  min-width: 0;
  padding: 0 16px;
}

.col-2 {
  grid-column: auto/span 2;
  min-width: 0;
  padding: 0 16px;
}

.col-3 {
  grid-column: auto/span 3;
  min-width: 0;
  padding: 0 16px;
}

.col-4 {
  grid-column: auto/span 4;
  min-width: 0;
  padding: 0 16px;
}

.col-5 {
  grid-column: auto/span 5;
  min-width: 0;
  padding: 0 16px;
}

.col-6 {
  grid-column: auto/span 6;
  min-width: 0;
  padding: 0 16px;
}

.col-7 {
  grid-column: auto/span 7;
  min-width: 0;
  padding: 0 16px;
}

.col-8 {
  grid-column: auto/span 8;
  min-width: 0;
  padding: 0 16px;
}

.col-9 {
  grid-column: auto/span 9;
  min-width: 0;
  padding: 0 16px;
}

.col-10 {
  grid-column: auto/span 10;
  min-width: 0;
  padding: 0 16px;
}

.col-11 {
  grid-column: auto/span 11;
  min-width: 0;
  padding: 0 16px;
}

.col-12 {
  grid-column: auto/span 12;
  min-width: 0;
  padding: 0 16px;
}

@media only screen and (min-width: 1200px) {
  .col-d-1 {
    grid-column: auto/span 1;
    min-width: 0;
    padding: 16px;
  }
  .col-d-2 {
    grid-column: auto/span 2;
    min-width: 0;
    padding: 16px;
  }
  .col-d-3 {
    grid-column: auto/span 3;
    min-width: 0;
    padding: 16px;
  }
  .col-d-4 {
    grid-column: auto/span 4;
    min-width: 0;
    padding: 16px;
  }
  .col-d-5 {
    grid-column: auto/span 5;
    min-width: 0;
    padding: 16px;
  }
  .col-d-6 {
    grid-column: auto/span 6;
    min-width: 0;
    padding: 16px;
  }
  .col-d-7 {
    grid-column: auto/span 7;
    min-width: 0;
    padding: 16px;
  }
  .col-d-8 {
    grid-column: auto/span 8;
    min-width: 0;
    padding: 16px;
  }
  .col-d-9 {
    grid-column: auto/span 9;
    min-width: 0;
    padding: 16px;
  }
  .col-d-10 {
    grid-column: auto/span 10;
    min-width: 0;
    padding: 16px;
  }
  .col-d-11 {
    grid-column: auto/span 11;
    min-width: 0;
    padding: 16px;
  }
  .col-d-12 {
    grid-column: auto/span 12;
    min-width: 0;
    padding: 16px;
  }
}
.link-default {
  color: var(--font-color);
  transition: 0.3s color;
}
.link-default:hover {
  color: var(--primary-color);
}

.link-default-secondary {
  color: var(--font-color);
  transition: 0.3s color;
}
.link-default-secondary:hover {
  color: var(--secondary-color);
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-36 {
  margin-bottom: 36px;
}

.h1-small {
  font-size: 18px;
  line-height: 20px;
}

.h2-small {
  color: var(--font-light-color);
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 16px;
}

.hidden {
  display: none !important;
}

@media only screen and (min-width: 1200px) {
  .nombile-hide {
    display: none;
  }
}
.dot-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.dot-list li {
  display: inline-flex;
  align-items: center;
}
.dot-list > li:not(:last-of-type)::after {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  font-weight: 900;
  font-size: 3px;
  color: var(--font-light-color);
  padding: 0 8px;
}

.comma-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.comma-list li {
  display: inline-flex;
  align-items: center;
}
.comma-list > li:not(:last-of-type)::after {
  content: ", ";
}

.line-list {
  line-height: 20px;
}
.line-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px 0;
  border-bottom: 2px solid var(--section-border-color);
}
.line-list li > div:first-of-type {
  color: var(--font-light-color);
  font-size: 15px;
}
.line-list li > div:nth-of-type(2) {
  font-size: 14px;
}
@media only screen and (max-width: 1199px) {
  .line-list li {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
}

.menu {
  --menu-height: 56px;
  --menu-link-color: var(--font-color);
  --menu-link-hover-color: var(--primary-color);
  --menu-link-hover-border-color: transparent;
  --menu-links-fs: 15px;
  --menu-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  z-index: 1000;
  background: var(--primary-bg-color);
}
.menu-sticky .menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: var(--menu-box-shadow);
}
.menu-grid {
  height: var(--menu-height);
  display: grid;
  grid-auto-flow: column;
  grid-template-areas: "logo links buttons";
  grid-template-columns: auto 1fr auto;
  padding: 8px 64px;
  align-items: center;
}
.menu-logo {
  grid-area: logo;
  height: 100%;
  display: flex;
  align-items: center;
}
.menu-logo img {
  max-height: 30px;
  height: 100%;
}
.menu-buttons {
  grid-area: buttons;
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
}
.menu-links {
  grid-area: links;
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
.menu-links ul {
  display: flex;
  margin: 0 auto;
  gap: 25px;
}
.menu-links a {
  display: inline-block;
  color: var(--font-color);
  position: relative;
  font-size: var(--menu-links-fs);
  line-height: 1.8;
}
.menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  background-color: var(--menu-link-hover-border-color);
  height: 2px;
  transition: 0.15s width;
}
.menu-links a:hover {
  color: var(--menu-link-hover-color);
}
.menu-links a:hover::after {
  width: 100%;
}
.menu-links a.button {
  height: auto !important;
}
@media only screen and (min-width: 1025px) {
  .menu-hamburger {
    display: none;
  }
  .menu-search {
    display: none;
  }
}
@media only screen and (max-width: 1300px) {
  .menu {
    --menu-links-fs: 12px;
  }
  .menu-links ul {
    gap: 20px;
  }
  .menu-grid {
    padding: 0 15px;
  }
  .menu-logo img {
    max-height: 22px;
  }
}
@media only screen and (max-width: 1024px) {
  .menu {
    --menu-height: 38px;
  }
  .menu-grid {
    grid-template-areas: "logo search hamburger";
    grid-template-columns: 1fr auto auto;
    gap: 15px;
  }
  .menu-links {
    position: absolute;
    top: var(--menu-height);
    left: 0;
    right: 0;
    background: var(--primary-bg-color);
    padding: 0;
    box-shadow: var(--menu-box-shadow);
  }
  .menu-links:not(.active) {
    display: none;
  }
  .menu-links ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    padding: 12px 24px;
  }
  .menu-links ul li {
    margin-bottom: 10px;
  }
  .menu-links a {
    display: flex;
    align-items: center;
    height: 52px;
    font-size: 15px;
  }
  .menu-buttons {
    display: none;
  }
  .menu-hamburger {
    grid-area: hamburger;
  }
  .menu-search {
    grid-area: search;
  }
  .menu-search i {
    color: var(--secondary-color);
  }
  .menu-hamburger, .menu-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .menu-hamburger i, .menu-search i {
    font-size: 22px;
  }
}

.button {
  --bg-color: var(--primary-color);
  --bg-hover-color: var(--bg-color);
  --border-color: var(--bg-color);
  --color: white;
  --fs: 14px;
  --height: 36px;
  --border-radius: 6px;
  --font-weight: 400;
  height: var(--height);
  line-height: var(--height);
  color: var(--color) !important;
  border: 0.2px solid var(--border-color);
  font-size: var(--fs);
  cursor: pointer;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight);
  display: inline-flex;
  padding: 0 15px;
  transition: 0.25s all;
}
.button:hover {
  --bg-color: var(--bg-hover-color);
}
.button-secondary {
  --bg-color: var(--secondary-color);
  --bg-hover-color: var(--secondary-color);
  --border-color: var(--secondary-color);
}
.button-primary {
  --bg-color: var(--primary-color);
  --bg-hover-color: var(--primary-color);
  --border-color: var(--primary-color);
}
.button-gray {
  --bg-color: var(--gray-color);
  --bg-hover-color: var(--gray-color);
  --border-color: var(--gray-color);
  --color: var(--font-color);
}
.button-gray-outline-hover {
  --bg-color: var(--gray-color);
  --bg-hover-color: var(--gray-color);
  --border-color: var(--gray-color);
  --color: var(--font-color);
}
.button-gray-outline-hover:hover {
  --border-color: var(--primary-color);
}
.button-disabled, .button[disabled] {
  opacity: 0.5;
  cursor: auto;
}
.button-outline {
  --bg-color: var(--primary-bg-color);
  --color: var(--border-color);
}
.button-outline:hover {
  --bg-color: var(--primary-bg-color);
}
.button-large {
  --fs: 18px;
  --height: 40px;
  --border-radius: 6px;
  --font-weight: 500;
  padding: 0 12px;
}
@media only screen and (max-width: 1300px) {
  .button-large {
    --fs: 12px;
    --font-weight: 400;
    --height: 30px;
  }
}
.button-x-large {
  --fs: 16px;
  --height: 50px;
  --border-radius: 4px;
  --font-weight: 500;
  padding: 0 20px;
}

.link {
  --fs: null;
  --color: null;
  --hover-color: null;
  --height: null;
  --font-weight: null;
  cursor: pointer;
  color: var(--color);
  line-height: var(--height);
  font-weight: var(--font-weight);
  font-size: var(--fs);
}
.link:hover {
  color: var(--hover-color);
}
.link-primary {
  --color: var(--primary-color);
  --hover-color: var(--primary-color);
}
.link-large {
  --fs: 18px;
  --height: 40px;
  --font-weight: 500;
}
@media only screen and (max-width: 1300px) {
  .link-large {
    --fs: 12px;
    --font-weight: 400;
    --height: 30px;
  }
}

.header-image {
  --header-image-height: 360px;
  --header-image-height-mobile: 400px;
  --header-font-color: white;
  --lr-padding: 96px;
  --icon-size: 40px;
  height: var(--header-image-height);
  background-image: url("../img/header.png");
  background-size: cover;
  background-position: center center;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  color: var(--header-font-color);
}
.header-image .h1 {
  font-size: 24px;
  line-height: 2.7rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--header-font-color);
}
.header-image .header-image-search {
  display: flex;
  flex-direction: column;
  grid-row: 2;
  min-height: 0;
  padding: 0 var(--lr-padding) 0 var(--lr-padding);
}
.header-image .header-image-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row: 3;
  min-height: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 0 var(--lr-padding) 32px var(--lr-padding);
  align-items: flex-end;
  gap: 15px;
}
.header-image .header-image-icons li {
  display: flex;
  font-size: 18px;
  line-height: 1.1;
  min-width: 0;
}
.header-image .header-image-icons li i {
  font-size: var(--icon-size);
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--header-font-color);
  margin-right: 10px;
  text-align: center;
}
.header-image .header-image-icons li .bolded {
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (max-width: 1199px) {
  .header-image {
    --lr-padding: 16px;
    --icon-size: 30px;
    --header-image-height: var(--header-image-height-mobile);
    grid-template-rows: auto auto;
  }
  .header-image .header-image-search {
    grid-row: 1;
    padding-top: 50px;
  }
  .header-image .header-image-icons {
    grid-row: 2;
    grid-template-columns: 1fr;
  }
}

.search-input {
  --search-input-height: 43px;
  --radius: 8px;
  --fs: 18px;
  --input-fs: 14px;
  --border-width: 2px;
  display: flex;
  border: var(--border-width) solid var(--primary-color);
  max-width: 1000px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  height: var(--search-input-height);
}
.search-input input {
  border-radius: 0;
  width: 100%;
  font-size: var(--input-fs);
  flex: 1;
  min-width: 0;
  padding: 8px 16px;
}
.search-input .button {
  border-radius: 0;
  flex: 0 0 200px;
  font-weight: 700;
  font-size: var(--fs);
  height: var(--search-input-height);
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .search-input .button {
    flex: 0 0 120px;
  }
}

.call-action {
  --color: #51499E;
  color: var(--color);
}
.call-action-box {
  display: flex;
  flex-direction: column;
  padding: 18px;
  align-items: flex-start;
}
@media only screen and (max-width: 1199px) {
  .call-action-box {
    align-items: center;
    padding: 16px 0;
  }
}
.call-action .title {
  font-size: 32px;
  line-height: 48px;
  font-weight: 500;
  padding-bottom: 10px;
}
.call-action .subtitle {
  padding-bottom: 45px;
  font-size: 16px;
  line-height: 24px;
}

.gallery-picker {
  padding: 18px 36px;
}
.gallery-picker-images li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.gallery-picker-images img {
  border-radius: 6px;
  transition: 0.3s all;
}
.gallery-picker-images img:hover {
  transform: scale(1.05);
}
.gallery-picker-images li:not(.active) {
  display: none;
}
.gallery-picker-images-footer {
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
}
.gallery-picker-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: var(--font-lighter-color);
  margin-bottom: 16px;
}
.gallery-picker-item-title {
  font-size: 18px;
  color: var(--font-dark-color);
  max-width: 45rem;
}
.active .gallery-picker-item-title {
  color: var(--secondary-color);
  font-weight: 700;
}
.gallery-picker-item-desc {
  font-size: 15px;
  line-height: 20px;
  max-width: 45rem;
}
.gallery-picker-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: var(--primary-color);
  grid-row: 1/3;
  grid-column: 1;
}
.active .gallery-picker-item-icon {
  color: var(--secondary-color);
}
.gallery-picker-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gallery-picker-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-picker-list li {
  cursor: pointer;
  padding: 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: auto fit-content(450px);
  column-gap: 24px;
  row-gap: 5px;
  width: fit-content;
  transition: 0.3s all;
}
.gallery-picker-list li:hover {
  background-color: var(--gray-hover-color);
}
.gallery-picker .brand {
  color: var(--primary-color);
}
@media only screen and (max-width: 1199px) {
  .gallery-picker {
    padding: 32px 0;
  }
  .gallery-picker-list {
    grid-row: 1;
    align-items: center;
  }
  .gallery-picker-images li {
    padding: 0;
  }
}

.register-section:hover img {
  transform: scale(1.05);
}
.register-section-p {
  max-width: 440px;
}
@media only screen and (max-width: 1199px) {
  .register-section-p {
    text-align: center;
  }
}
.register-section img {
  border-radius: 6px;
  transition: 0.4s all;
}

.card {
  display: grid;
  grid-template-columns: 56px auto;
  column-gap: 10px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 6px;
  transition: 0.3s all;
  padding: 16px 8px;
}
.card:hover {
  background: var(--gray-color);
}
.card-title {
  font-size: 14px;
  line-height: 20px;
}
.card-logo {
  grid-column: 1;
  grid-row: 1/6;
  border-radius: 50%;
  box-shadow: 0 8px 14px -6px rgba(15, 15, 31, 0.1058823529);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
}
.card-logo img {
  border-radius: 50%;
}

.card-list-header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  height: 72px;
  align-items: center;
  border-bottom: 1px solid var(--section-border-color);
}
.card-list-header-sort {
  font-size: 14px;
}
@media only screen and (max-width: 1199px) {
  .card-list-header {
    flex-direction: column;
    gap: 16px;
    height: auto;
  }
}

.card-list-footer {
  display: flex;
  padding: 0 16px;
  height: 72px;
  align-items: center;
  background-color: var(--gray-color);
}
.card-list-footer-page-show {
  padding-right: 32px;
}
.card-list-footer-page-total {
  padding-left: 56px;
  border-left: 1px solid var(--font-ultra-light-color);
  border-right: 1px solid var(--font-ultra-light-color);
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 32px;
}
.card-list-footer .card-list-pager-list span.active, .card-list-footer .card-list-pager-list a.active {
  background-color: var(--primary-color);
  color: white;
}
.card-list-footer-text {
  font-size: 14px;
}
@media only screen and (max-width: 1199px) {
  .card-list-footer {
    flex-direction: column;
    height: unset;
    padding: 16px;
    gap: 16px;
  }
  .card-list-footer-page-show {
    padding: 0;
  }
  .card-list-footer-page-total {
    padding: 0;
    margin: 0;
  }
}

.card-list-pager {
  display: flex;
}
.card-list-pager-list {
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 2px;
}
.card-list-pager-list a, .card-list-pager-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 9px;
  border-radius: 4px;
}
.card-list-pager-list span.active, .card-list-pager-list a.active, .card-list-pager-list a:hover {
  background: var(--gray-dark-color);
}
.card-list-pager-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  transition: 0.3s background-color;
  border-radius: 8px;
}
.card-list-pager-button:hover {
  background: var(--gray-hover-color);
}

.opinion-card-title {
  grid-row: 2;
  grid-column: 2;
  color: var(--font-dark-color);
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}
.opinion-card-stars {
  grid-row: 3;
  grid-column: 2;
  display: flex;
  gap: 10px;
}
.opinion-card-category {
  grid-row: 4;
  grid-column: 2;
  color: var(--font-lighter-color);
  margin: 4px 0 9px;
}
.opinion-card-text {
  grid-row: 5;
  grid-column: 2;
  margin-bottom: 10px;
}
.opinion-card-author {
  grid-row: 6;
  grid-column: 2;
  color: var(--font-lighter-color);
  margin-bottom: 10px;
}

.stars {
  display: flex;
  gap: 2px;
}
.stars > div {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gray-dark-color);
}
.stars > div::before {
  content: "\f005";
}
.stars[data-score="1"] > div:nth-of-type(1) {
  color: var(--gold-color);
}
.stars[data-score="2"] > div:nth-of-type(1) {
  color: var(--gold-color);
}
.stars[data-score="2"] > div:nth-of-type(2) {
  color: var(--gold-color);
}
.stars[data-score="3"] > div:nth-of-type(1) {
  color: var(--gold-color);
}
.stars[data-score="3"] > div:nth-of-type(2) {
  color: var(--gold-color);
}
.stars[data-score="3"] > div:nth-of-type(3) {
  color: var(--gold-color);
}
.stars[data-score="4"] > div:nth-of-type(1) {
  color: var(--gold-color);
}
.stars[data-score="4"] > div:nth-of-type(2) {
  color: var(--gold-color);
}
.stars[data-score="4"] > div:nth-of-type(3) {
  color: var(--gold-color);
}
.stars[data-score="4"] > div:nth-of-type(4) {
  color: var(--gold-color);
}
.stars[data-score="5"] > div:nth-of-type(1) {
  color: var(--gold-color);
}
.stars[data-score="5"] > div:nth-of-type(2) {
  color: var(--gold-color);
}
.stars[data-score="5"] > div:nth-of-type(3) {
  color: var(--gold-color);
}
.stars[data-score="5"] > div:nth-of-type(4) {
  color: var(--gold-color);
}
.stars[data-score="5"] > div:nth-of-type(5) {
  color: var(--gold-color);
}

.stars-box {
  display: inline-flex;
  gap: 4px;
  --hover-bg: var(--gray-dark-color);
}
.stars-box.can-score > div {
  cursor: pointer;
}
.stars-box > div {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  height: 32px;
  width: 32px;
  background-color: var(--gray-dark-color);
  color: var(--primary-bg-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s background-color;
  border-radius: 4px;
}
.stars-box > div::before {
  content: "\f005";
}
.stars-box[data-score="1"] > div:nth-of-type(1) {
  background-color: var(--primary-color);
}
.stars-box[data-score="2"] > div:nth-of-type(1) {
  background-color: var(--primary-color);
}
.stars-box[data-score="2"] > div:nth-of-type(2) {
  background-color: var(--primary-color);
}
.stars-box[data-score="3"] > div:nth-of-type(1) {
  background-color: var(--primary-color);
}
.stars-box[data-score="3"] > div:nth-of-type(2) {
  background-color: var(--primary-color);
}
.stars-box[data-score="3"] > div:nth-of-type(3) {
  background-color: var(--primary-color);
}
.stars-box[data-score="4"] > div:nth-of-type(1) {
  background-color: var(--primary-color);
}
.stars-box[data-score="4"] > div:nth-of-type(2) {
  background-color: var(--primary-color);
}
.stars-box[data-score="4"] > div:nth-of-type(3) {
  background-color: var(--primary-color);
}
.stars-box[data-score="4"] > div:nth-of-type(4) {
  background-color: var(--primary-color);
}
.stars-box[data-score="5"] > div:nth-of-type(1) {
  background-color: var(--primary-color);
}
.stars-box[data-score="5"] > div:nth-of-type(2) {
  background-color: var(--primary-color);
}
.stars-box[data-score="5"] > div:nth-of-type(3) {
  background-color: var(--primary-color);
}
.stars-box[data-score="5"] > div:nth-of-type(4) {
  background-color: var(--primary-color);
}
.stars-box[data-score="5"] > div:nth-of-type(5) {
  background-color: var(--primary-color);
}

.tabs-white .tabs-header {
  display: flex;
  overflow-x: auto;
}
.tabs-white .tabs-header > li {
  flex: 1 0 auto;
  padding: 18px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  border-radius: 8px 8px 0 0;
  border-top: 3px solid transparent;
  border-bottom: 1px solid var(--section-border-color);
  border-right: 1px solid var(--section-border-color);
  border-left: 1px solid var(--section-border-color);
  background: var(--primary-bg-color);
  cursor: pointer;
  transition: all 0.3s;
}
.tabs-white .tabs-header > li:first-of-type {
  border-left-color: transparent;
}
.tabs-white .tabs-header > li:last-of-type {
  border-right-color: transparent;
}
.tabs-white .tabs-header > li.active {
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-bg-color);
}
.tabs-white .tabs-header > li:not(.active) {
  opacity: 0.7;
}
.tabs-white .tabs-header > li:not(.active):hover {
  opacity: 1;
  border-top-color: var(--section-border-color);
  border-bottom-color: var(--primary-bg-color);
}
.tabs-white .tabs-body {
  background: var(--primary-bg-color);
  padding: 16px;
}
.tabs-white .tabs-body > li:not(.active) {
  display: none;
}

.tabs-vertical-list-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  margin: 5px 0;
  color: var(--font-light-color);
}
.tabs-vertical-list-title {
  font-size: 15px;
  margin: 5px 0;
}
.tabs-vertical-list > li > div:first-of-type {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
}
.tabs-vertical-list > li > div {
  padding: 12px;
  border-radius: 12px;
}
.tabs-vertical-list > li > div:nth-of-type(2):not(.active) {
  display: none;
}
.tabs-vertical-list > li > div:nth-of-type(1) {
  transition: background-color 0.2s;
  cursor: pointer;
}
.tabs-vertical-list > li > div:nth-of-type(1).active-target {
  background-color: var(--gray-dark-color);
}
.tabs-vertical-list > li > div:nth-of-type(1):hover:not(.active-target) {
  background-color: var(--gray-hover-color);
}

.footer {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  font-size: 15px;
  line-height: 21px;
}
.footer-section {
  background: var(--footer-bg-color);
}
.footer-section, .footer-section a, .footer-section i {
  color: var(--footer-color);
}
.footer-links {
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
}
.footer-links a {
  display: block;
}
@media only screen and (max-width: 1199px) {
  .footer {
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
  }
}

.scroll-up {
  position: fixed;
  height: 40px;
  width: 40px;
  bottom: 20px;
  right: 20px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1333333333), 0 4px 5px rgba(0, 0, 0, 0.137254902), 0 1px 10px rgba(0, 0, 0, 0.1176470588);
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s;
}
.scroll-up:not(.active) {
  transform: translateY(60px);
}
.scroll-up:hover {
  background: var(--primary-bg-color);
}
.scroll-up:hover i {
  color: var(--secondary-color);
}
.scroll-up i {
  color: var(--primary-bg-color);
  font-size: 20px;
  transition: all 0.3s;
}

.scroll-up-line {
  position: absolute;
  top: 300px;
}

.tag {
  background: var(--primary-color);
  font-weight: 600;
  line-height: 20px;
  font-size: 11px;
  color: white;
  display: inline-flex;
  padding: 0 4px;
  align-items: center;
  border-radius: 4px;
}
.tag.tag-gray {
  background: var(--gray-hover-color);
  color: var(--primary-color);
}
.tag.tag-green {
  background: var(--green-color);
}
.tag.font-weight-400 {
  font-weight: 400;
}
.tag.tag-medium {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
}

.breadcrumb {
  margin-bottom: 16px;
  margin-top: 5px;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumb ul > li:not(:last-of-type)::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}
.breadcrumb li a, .breadcrumb li span {
  color: var(--font-color);
  display: block;
  padding: 4px;
  border-radius: 4px;
}
.breadcrumb li a:hover {
  background: var(--gray-dark-color);
}
.breadcrumb li span {
  color: var(--font-light-color);
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.modal-bg {
  position: absolute;
  background: var(--primary-color-hover);
  width: 100%;
  height: 100%;
}
.modal-container {
  border-radius: 10px;
  background: #fff;
  position: relative;
  padding: 30px;
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  appearance: none;
  color: red;
  background: none;
  border: 0;
  font-weight: bold;
  cursor: pointer;
}
.modal.vote textarea {
  min-width: 300px;
  min-height: 250px;
  padding: 2rem;
}
.modal input {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid grey;
}

.checkbox {
  --size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.checkbox label {
  cursor: pointer;
}
.checkbox-check {
  position: relative;
  width: var(--size);
  height: var(--size);
  border: 2px solid var(--font-ultra-light-color);
  display: inline-block;
  border-radius: 4px;
}
.checked .checkbox-check {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.checked .checkbox-check::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 13px;
}
.checkbox input {
  display: none;
}

.dropdown {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}
.dropdown.active .dropdown-select::after {
  transform: rotate(180deg);
}
.dropdown.active .dropdown-item {
  display: block;
}
.dropdown-select {
  display: inline-flex;
  gap: 4px;
  font-weight: 500;
}
.dropdown-select::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transition: 0.2s transform;
}
.dropdown-select2 {
  display: inline-flex;
  gap: 4px;
  background-color: var(--gray-color);
  padding: 7px 10px;
  font-size: 12px;
  border-radius: 4px;
  min-width: 180px;
  justify-content: space-between;
  font-weight: 300;
}
.dropdown-select2:hover {
  background-color: var(--gray-hover-color);
}
.dropdown-select2::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transition: 0.2s transform;
}
.dropdown-item {
  position: absolute;
  top: 100%;
  right: 0;
  width: auto;
  background-color: var(--primary-bg-color);
  display: none;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
}
.dropdown-list {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 2px;
  padding: 8px;
}
.dropdown-list.small {
  padding: 4px;
}
.dropdown-list.small li a {
  height: 28px;
  padding: 0 8px;
  min-width: 50px;
  text-align: center;
  justify-content: center;
}
.dropdown-list li a {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  white-space: nowrap;
  border-radius: 4px;
  min-width: 180px;
}
.dropdown-list li.active a, .dropdown-list li:hover a {
  background-color: var(--gray-dark-color);
}

.message.alert {
  color: red;
}

.company-card-large {
  padding: 40px 32px;
  border-bottom: 1px solid var(--section-border-color);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  grid-template-areas: "logo header score" "text text text" "tags tags tags" "date date date";
}
@media only screen and (max-width: 1199px) {
  .company-card-large {
    padding: 40px 16px;
    grid-template-areas: "logo header header" "score score score" "text text text" "tags tags tags" "date date date";
  }
}
.company-card-large-text {
  grid-area: text;
}
.company-card-large-list {
  background: var(--primary-bg-color);
  border-radius: 8px;
  box-shadow: var(--card-box-shadow);
}
.company-card-large-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  width: 64px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}
.company-card-large-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-area: header;
}
.company-card-large-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}
.company-card-large-title a {
  font-size: 18px;
  line-height: 20px;
}
.company-card-large-title a:hover {
  text-decoration: underline;
}
.company-card-large-subtitle {
  font-size: 11px;
  line-height: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--font-light-color);
}
.company-card-large-tags {
  grid-area: tags;
}
.company-card-large-tags > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-card-large-tags > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.company-card-large-tags > ul > li > ul > li {
  display: flex;
  align-items: center;
}
.company-card-large-tags > ul > li > ul > li:not(:last-of-type)::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  font-size: 8px;
  color: var(--font-light-color);
  padding: 0 8px;
}
.company-card-large-date {
  grid-area: date;
  padding-top: 16px;
  border-top: 1px solid var(--section-border-color);
}
.company-card-large-score {
  grid-area: score;
  display: flex;
  align-items: center;
  gap: 8px;
}
.company-card-large-score .company-card-large-subtitle {
  margin: 0;
}

.category-menu {
  border-radius: 8px;
  font-size: 13px;
  line-height: 20px;
  box-shadow: var(--card-box-shadow);
  background: var(--primary-bg-color);
}
.category-menu.with-footer {
  box-shadow: var(--card-footer-box-shadow);
}
.category-menu-body {
  padding: 16px;
}
.category-menu-footer {
  display: flex;
  justify-content: space-between;
  background: var(--gray-color);
  padding: 16px;
}
.category-menu-footer button {
  min-width: 92px;
  justify-content: center;
  --fs: 13px;
  --height: 34px;
}
.category-menu .span-category {
  font-size: 14px;
}
@media only screen and (max-width: 1199px) {
  .category-menu .span-category {
    font-size: 16px;
  }
}
.category-menu li a, .category-menu li .span-category {
  padding: 6px 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-menu li a:hover {
  background: var(--gray-hover-color);
  border-radius: 8px;
}
.category-menu li i {
  text-align: center;
  min-width: 20px;
}
.category-menu li a.prev-link {
  gap: 5px;
}
.category-menu li a.prev-link i {
  text-align: unset;
  min-width: auto;
  color: var(--font-light-color);
  font-size: 10px;
}
.category-menu li .count {
  font-size: 11px;
  display: inline-block;
  color: var(--font-light-color);
}
.category-menu input {
  height: 40px;
  border: 1px solid var(--font-ultra-light-color);
  border-radius: 4px;
  width: 100%;
  padding: 4px 10px;
}
.category-menu input::placeholder {
  color: var(--font-light-color);
}
.category-menu-subtitle {
  display: flex;
  font-weight: 600;
  font-size: 14px;
  color: var(--font-lighter-color);
}
.category-menu-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.category-menu-filters li {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-menu ul ul a, .category-menu ul ul .span-category {
  padding: 6px 12px;
}
.category-menu-close {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 25px;
  width: 25px;
}
.category-menu-close:hover {
  background: var(--gray-color);
}
@media only screen and (min-width: 1200px) {
  .category-menu-close {
    display: none;
  }
}
.category-menu-hamburger {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) {
  .category-menu-hamburger {
    display: none;
  }
}
.category-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 1199px) {
  .category-menu {
    font-size: 16px;
    position: relative;
    z-index: 5;
    transition: 0.3s;
    height: 100%;
    padding: 0;
  }
  .category-menu, .category-menu.with-footer {
    box-shadow: none;
  }
  .category-menu-body {
    padding: 15px 0;
  }
  .category-menu-filters {
    padding: 0 24px;
  }
  .category-menu-footer {
    padding: 16px 24px;
  }
  .category-menu .h2-small {
    text-align: center;
    font-size: 14px;
  }
  .category-menu li a, .category-menu li .span-category {
    padding: 12px 20px;
    border-bottom: 1px solid var(--section-border-color);
  }
  .category-menu ul ul a {
    padding: 12px 24px;
  }
  .category-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
    transition: opacity 0.3s;
    background-color: var(--primary-bg-color);
    overflow: auto;
  }
  .category-menu-wrapper:not(.active) {
    pointer-events: none;
    opacity: 0;
  }
}

.category-card {
  padding: 24px;
  background: var(--primary-bg-color);
  border-radius: 8px;
  box-shadow: var(--card-box-shadow);
}
.category-card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.category-card-title {
  font-size: 18px;
  line-height: 20px;
  color: var(--font-color);
}
.category-card-title:hover {
  text-decoration: underline;
}
.category-card-header {
  margin-bottom: 24px;
}
.category-card-header i {
  font-size: 18px;
  min-width: 23px;
  text-align: center;
  display: inline-block;
  margin-right: 5px;
}
.category-card-header .tag {
  font-size: 12px;
  margin-left: 8px;
}
.category-card-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  font-size: 13px;
}
.category-card-links li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.category-card-links a:hover {
  text-decoration: underline;
}
.category-card-links .count {
  font-size: 11px;
  color: var(--font-light-color);
  flex: 0 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1350px) {
  .category-card-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .category-card-links {
    grid-template-columns: 1fr;
  }
}

.category-list {
  padding: 10px 0 40px;
  min-height: calc(100vh - var(--menu-height));
}

.category-list-grid {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 16px;
}
.category-list-grid > div {
  min-width: 0;
}
@media only screen and (max-width: 1199px) {
  .category-list-grid {
    grid-template-columns: 1fr;
  }
}

.popular-companies {
  overflow-x: auto;
}
.popular-companies ul {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.popular-companies a {
  display: flex;
  align-items: center;
  padding: 5px;
  width: 98px;
  height: 98px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px -1px, rgba(0, 0, 0, 0.02) 0px 2px 0px 0px;
  background: var(--primary-bg-color);
  border: 1px solid var(--font-ultra-light-color);
  transition: 0.3s;
}
.popular-companies a:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px -1px, rgba(0, 0, 0, 0.05) 0px 2px 0px 0px;
}
.popular-companies a, .popular-companies a img {
  border-radius: 6px;
  margin: 0 auto;
  max-height: 100%;
}

.company-header {
  display: grid;
  grid-template-areas: "search search search" "logo info score";
  padding: 16px 0;
  grid-template-columns: 32px 1fr min-content;
  gap: 16px;
}
@media only screen and (max-width: 1199px) {
  .company-header {
    grid-template-columns: 32px 1fr;
    grid-template-areas: "search search" "logo info" "score score";
  }
}
.company-header-search {
  display: flex;
  justify-content: center;
  grid-area: search;
}
.company-header-logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  height: 100%;
}
.company-header-logo img {
  height: 32px;
  width: 32px;
}
.company-header-info {
  font-size: 13px;
  line-height: 20px;
  grid-area: info;
}
.company-header-info-location {
  display: flex;
  gap: 25px;
}
@media only screen and (max-width: 1199px) {
  .company-header-info-location {
    flex-direction: column;
    gap: 2px;
  }
}
.company-header-stars {
  white-space: nowrap;
  display: flex;
  gap: 8px;
  align-items: center;
  grid-area: score;
}

.company-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
}
@media only screen and (max-width: 1199px) {
  .company-grid {
    grid-template-columns: 1fr;
  }
}

.company-menu-wrapper {
  position: sticky;
  position: -webkit-sticky;
  top: 70px;
}
@media only screen and (max-width: 1199px) {
  .company-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
    transition: opacity 0.3s;
    overflow: auto;
    background-color: var(--primary-bg-color);
  }
  .company-menu-wrapper:not(.active) {
    pointer-events: none;
    opacity: 0;
  }
}
.company-menu-title {
  font-size: 13px;
  line-height: 16px;
  padding: 6px 0;
  color: var(--font-light-color);
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .company-menu-title {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
  }
}
.company-menu ul a {
  padding: 6px 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  transition: 0.2s background-color;
  line-height: 16px;
}
.company-menu ul a:hover, li.active .company-menu ul a {
  background-color: var(--gray-hover-color);
}
.company-menu ul a:hover i, li.active .company-menu ul a i {
  color: var(--primary-color);
}
.company-menu ul a i {
  width: 1.25em;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .company-menu ul a {
    padding: 12px 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--section-border-color);
  }
}

.company-info {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-areas: "header header" "logo title" "info info" "score score" "address address" "contact contact" "categories categories" "about about" "offer offer" "type type";
  column-gap: 16px;
  row-gap: 0;
}
.company-info-header {
  grid-area: header;
  display: flex;
}
.company-info-logo {
  grid-area: logo;
}
.company-info-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.company-info-title {
  grid-area: title;
  font-size: 22px;
  line-height: 35px;
}
.company-info-info {
  grid-area: info;
  margin-bottom: 5px;
}
.company-info-score {
  grid-area: score;
  display: flex;
  gap: 8px;
}
.company-info-address {
  grid-area: address;
}
.company-info-contact {
  grid-area: contact;
}
.company-info-categories {
  grid-area: categories;
}
.company-info-about {
  grid-area: about;
}
.company-info-offer {
  grid-area: offer;
}
.company-info-type {
  grid-area: type;
}

.company-card {
  box-shadow: var(--card-box-shadow);
  padding: 26px;
  background-color: var(--primary-bg-color);
  border-radius: 4px;
}
.company-card-title {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 32px;
}
.company-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.company-registry-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  min-height: 40px;
}
.company-registry-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--section-border-color);
  padding: 8px 0;
}
.company-registry-list-header {
  margin-bottom: 10px;
}
.company-registry-list li:not(.company-registry-list-header) > div:first-of-type {
  color: var(--font-light-color);
}
@media only screen and (max-width: 1199px) {
  .company-registry-list li {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .company-registry-list li.company-registry-list-header {
    row-gap: 15px;
  }
}

.company-finance-rank-list {
  font-size: 15px;
  margin-top: 50px;
}
@media only screen and (max-width: 1199px) {
  .company-finance-rank-list {
    margin-top: 0;
  }
}
.company-finance-rank-list li {
  display: grid;
  grid-template-columns: 190px 290px 290px;
  padding: 20px 0;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .company-finance-rank-list li {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}
.company-finance-rank-list > li:not(:last-of-type) {
  border-bottom: 2px solid var(--section-border-color);
}
.company-finance-rank-list .large-number span {
  font-size: 48px;
  line-height: 40px;
}

.company-stars-star-box li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.company-stars-star-box .stars {
  width: 90px;
  justify-content: flex-end;
}
.company-stars-star-box .bar {
  position: relative;
  width: 170px;
  height: 4px;
  background-color: var(--gray-dark-color);
  border-radius: 2px;
}
.company-stars-star-box .bar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  border-radius: 2px;
  background-color: var(--primary-color);
  width: var(--percent);
}

.company-stars-score-box {
  padding: 16px;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--gray-color);
  border-radius: 5px;
}
.company-stars-score-box .stars-box {
  margin-top: 15px;
}

.company-stars {
  display: grid;
  grid-template-columns: 128px 1fr;
  grid-template-areas: "number star-box" "count star-box" "score-box score-box";
}
.company-stars-number {
  grid-area: number;
  margin-bottom: 5px;
}
.company-stars-number span {
  font-size: 40px;
  line-height: 20px;
}
.company-stars-count {
  grid-area: count;
  color: var(--font-light-color);
  font-size: 15px;
}
.company-stars-star-box {
  grid-area: star-box;
}
.company-stars-score-box {
  grid-area: score-box;
  margin: 20px 0;
}
@media only screen and (max-width: 1199px) {
  .company-stars {
    grid-template-columns: 1fr;
    row-gap: 8px;
    grid-template-areas: "number" "count" "star-box" "score-box";
  }
  .company-stars-number, .company-stars-count {
    text-align: center;
  }
  .company-stars-star-box {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

.company-opinions-list {
  font-size: 15px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.company-opinions-list li {
  display: grid;
  grid-column-gap: 15px;
  grid-row-gap: 2px;
  grid-template-columns: 1fr min-content;
  grid-template-rows: 25px 25px 1fr;
  grid-template-areas: "user date" "score ." "text text";
}
.company-opinions-list-logo {
  grid-area: logo;
}
.company-opinions-list-logo img {
  border: 1px solid var(--font-ultra-light-color);
  border-radius: 50%;
}
.company-opinions-list-score {
  grid-area: score;
}
.company-opinions-list-user {
  grid-area: user;
  font-weight: 700;
}
.company-opinions-list-date {
  grid-area: date;
  white-space: nowrap;
  color: var(--font-light-color);
  font-size: 13px;
}
.company-opinions-list-text {
  grid-area: text;
}

.company-others-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.company-others-list li a {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-areas: "logo title" "logo subtitle";
  padding: 14px 10px;
  column-gap: 20px;
  transition: background-color 0.2s;
  border-radius: 8px;
}
.company-others-list li a:hover {
  background-color: var(--gray-color);
}
.company-others-list-logo {
  grid-area: logo;
}
.company-others-list-logo img {
  box-shadow: 0 8px 14px -6px rgba(15, 15, 31, 0.1058823529);
  border-radius: 50%;
}
.company-others-list-title {
  grid-area: title;
  font-size: 15px;
}
.company-others-list-subtitle {
  grid-area: subtitle;
  font-size: 13px;
  color: var(--font-light-color);
}
@media only screen and (max-width: 1199px) {
  .company-others-list {
    grid-template-columns: 1fr;
  }
}

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