

/* Start:/local/html/components-template/contacts/style.css?17593412481036*/
.route {
  margin-top: 4rem; }
  .route-text {
    color: #3B3B3B;
    margin-top: 2.4rem;
    font-size: 2rem; }
    @media (max-width: 979px) {
      .route-text {
        font-size: 16px; } }
    @media (max-width: 574px) {
      .route-text {
        font-size: 14px; } }
  .route-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 2rem;
    margin-top: 1.6rem; }
    @media (max-width: 767px) {
      .route-grid {
        gap: 16px;
        grid-template-columns: 1fr; } }
    .route-grid__item {
      border-radius: 2.4rem;
      overflow: hidden;
      height: 40rem; }
      @media (max-width: 767px) {
        .route-grid__item {
          height: auto;
          aspect-ratio: 2;
          border-radius: 12px; } }
      .route-grid__item img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.req-inner {
  background-color: #fff;
  padding: 4rem;
  border-radius: 2.4rem; }
  @media (max-width: 979px) {
    .req-inner {
      padding: 20px;
      border-radius: 12px; } }

/* End */


/* Start:/local/html/components-template/map/style.css?17593412484870*/
@media (min-width: 980px) {
  .map {
    height: 55rem;
    border-radius: 2.4rem;
    overflow: hidden;
    position: relative; } }

.map-container {
  background-color: #D7D7D7; }
  @media (min-width: 980px) {
    .map-container {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      height: 100%; } }
  @media (max-width: 979px) {
    .map-container {
      width: 100%;
      aspect-ratio: 1.8;
      border-radius: 12px;
      overflow: hidden;
      margin-top: 16px; } }

.map-info {
  position: relative; }
  @media (min-width: 980px) {
    .map-info {
      border-radius: 2rem;
      background-color: #222223;
      color: #ffffff;
      padding: 2.4rem;
      position: absolute;
      left: 2rem;
      top: 2rem;
      bottom: 2rem;
      width: 40rem;
      z-index: 2; } }

.map-info {
  display: flex;
  flex-direction: column; }
  .map-info__links {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem; }
    @media (max-width: 979px) {
      .map-info__links {
        margin-top: 16px; } }
  .map-info__link {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    fill: #ffffff;
    color: #ffffff; }
    @media (max-width: 979px) {
      .map-info__link {
        color: #020202;
        fill: #020202; } }
  .map-info a {
    transition: all ease .3s; }
    @media (hover: hover) {
      .map-info a:hover {
        cursor: pointer;
        color: #F5491F; } }
  .map-info__metro {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start; }
    @media (max-width: 979px) {
      .map-info__metro {
        margin-top: 16px; } }

.metro-item {
  display: inline-flex;
  gap: 1.2rem;
  align-items: center; }
  .metro-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .8rem;
    background-color: #fff;
    color: #F5491F;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: Arial, Verdana, sans-serif; }
    @media (max-width: 979px) {
      .metro-item__icon {
        color: #ffffff;
        background-color: #020202;
        width: 20px;
        height: 20px;
        border-radius: 4px;
        font-size: 11px; } }
  .metro-item__dist {
    color: #F5491F;
    font-weight: 700; }

.dropdown {
  margin-left: auto;
  margin-bottom: 2.4rem; }
  @media (max-width: 979px) {
    .dropdown {
      position: absolute;
      right: 0; } }
  @media (max-width: 979px) {
    .dropdown.active .dropdown-head .toggle-icon {
      transform: rotate(180deg); } }
  @media (min-width: 980px) {
    .dropdown.active .dropdown-head .close-icon {
      display: flex; }
    .dropdown.active .dropdown-head .toggle-icon {
      display: none; } }
  .dropdown .close-icon {
    display: none; }
  .dropdown-head {
    width: 20rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    border-radius: 1000px;
    padding: 0 1rem;
    color: #ffffff;
    gap: .6rem;
    fill: #ffffff;
    background-color: #6D6D6E;
    cursor: pointer;
    padding-right: 3rem;
    position: relative; }
    @media (max-width: 979px) {
      .dropdown-head {
        background-color: #020202;
        padding: 0 12px;
        width: auto;
        padding-right: 24px; } }
    .dropdown-head .icon {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 1rem;
      margin: auto 0; }
    .dropdown-head svg {
      transition: all ease .3s; }
  .dropdown-body {
    position: absolute;
    top: 0;
    left: calc(100% + 2.4rem);
    padding: 2.4rem;
    width: 32rem;
    background-color: #222223;
    border-radius: 2.4rem;
    color: #ffffff;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all ease .3s; }
    @media (max-width: 979px) {
      .dropdown-body {
        width: 240px;
        left: auto;
        right: 0;
        top: calc(100% + 2px); } }
    .dropdown-body.active {
      opacity: 1;
      visibility: visible; }
      @media (min-width: 980px) {
        .dropdown-body.active .close-icon {
          display: flex; } }
    .dropdown-body__title {
      position: relative; }
      .dropdown-body__title .icon {
        fill: #ffffff;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;
        transition: all ease .3s; }
        @media (hover: hover) {
          .dropdown-body__title .icon:hover {
            cursor: pointer;
            transform: rotate(180deg); } }
    .dropdown-body__list {
      margin-top: 4rem;
      display: flex;
      flex-direction: column;
      gap: 1.6rem; }
  .dropdown-item {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    white-space: nowrap; }

/* End */
/* /local/html/components-template/contacts/style.css?17593412481036 */
/* /local/html/components-template/map/style.css?17593412484870 */
