

/* Start:/contacts/styles.css?169839455811730*/
* {
  margin: 0;
  padding: 0;
  font-style: normal;
}

body {
  font-family: 'NotoSansRegular', sans-serif;
}

.page {
  max-width: 1640px;
}

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

.red {
  color: var(--red-main);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  font-size: 0.875rem;
  list-style-type: none;
  margin-top: 24px;
  margin-bottom: 0;
}

.breadcrumbs__divider {
  margin-left: 8px;
  margin-right: 8px;
  color: var(--gray-4);
}

.breadcrumbs__active {
  color: var(--gray-assign);
}

/* Address section */

.address-section {
  margin-top: 48px;
}

h1,
h2 {
  margin: 0;
  padding: 0 0 12px 0;
  color: var(--head);
  font-family: 'RobotoRegular', sans-serif;
  position: relative;
  font-size: 2.125rem;
  text-align: left;
}

h1::after,
h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  height: 4px;
  width: 48px;
  background-color: var(--red-main);
}

.address-container {
  display: flex;
  justify-content: space-between;
  max-width: 1640px;
  margin-top: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-1);
}

.address-container>* {
  width: 50%;
}

.address {
  min-width: 724px;
  max-width: 724px;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 100px;
  padding-right: 32px;
}

.address h4 {
  color: var(--gray-assign);
  font-family: 'RobotoRegular', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.address>*:not(:last-child) {
  margin-bottom: 33px;
}

.address>*> :last-child {
  font-family: 'RobotoRegular', sans-serif;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--head);
}

.address__item {
  color: var(--head);
}

.social-network-container {
  opacity: 0.5;
}

.social-network-container>*:not(:last-child) {
  display: inline-block;
  margin-right: 17px;
  margin-bottom: 10px;
}

.social-network-container img {
  width: 48px;
  filter: invert(76%) sepia(8%) saturate(8%) hue-rotate(4deg) brightness(94%) contrast(86%);
}

.address__selectors-list {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 31px;
}

.address__selectors-item {
  list-style-type: none;
  height: 52px;
}

.address__selectors-item+.address__selectors-item {
  margin-left: 13px;
}

.address__selector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  background-color: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 100px;
  width: 100%;
  padding: 0 20px;
  height: 100%;
  cursor: pointer;
  transition: .3s ease;
  line-height: 1;
}

.address__selector:hover {
  background-color: #F5F5F5;
}

.address__selector.active {
  color: var(--head);
  background-color: #F5F5F5;
  border: 1px solid var(--head);
}

.address__maps-wrap {
  flex-shrink: 1;
  position: relative;
  z-index: 2;
  margin-top: -83px;
}

.address__maps-wrap .map-container {
  display: none;
}

.address__maps-wrap .map-container.active {
  display: block;
  height: 100%;
  max-height: 600px;
}

.map {
  width: 100%;
  height: 100%;
}

/* detail-section */

.detail-container {
  font-family: 'RobotoMedium', sans-serif;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-sizing: border-box;
}

/* Service items general styles */

.detail-item {
  padding-top: 36px;
  padding-left: 30px;
  border: 1px solid var(--border-gray);
  display: inline-flex;
  height: 180px;
  position: relative;
  text-decoration: none;
  transition: background-size .4s, color .1s;

  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
}

.detail-item:not(:first-child) {
  border-left: none;
}

.detail-item:hover>.detail-item__title {
  transition: .5s;
}

.detail-item__title {
  color: var(--head);
}

/* Service items odd elements style */

.detail-item:nth-child(2n + 1) {
  color: var(--red-elem-icon);
  background-image: linear-gradient(var(--red-elem-icon), var(--red-elem-icon));
}

.detail-item:nth-child(2n + 1):hover>.detail-item__title {
  color: var(--white);
}

/* Service items even elements style */

.detail-item:nth-child(2n) {
  color: var(--bg-service-gray);
  background-image: linear-gradient(var(--bg-service-gray), var(--bg-service-gray));
}

/* Service items hover styles */

.detail-item:hover {
  background-size: 100% 100%;
}

.detail-item:nth-child(2n + 1):hover {
  border: 1px solid var(--red-elem-icon);
}

.detail-item:nth-child(2n):hover {
  border: 1px solid var(--bg-service-gray);
}

/* --------------------------- */

.detail-item__title {
  font-weight: 500;
  font-size: 1.5rem;
}

.detail-item__button {
  width: 135px;
  height: 75px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: none;
  background-color: var(--red-elem-icon);
  cursor: pointer;
}

.detail-item:nth-child(2n)>.detail-item__button {
  background-color: var(--bg-service-gray);
}

.detail-item:nth-child(2n)>.detail-item__button>svg>path {
  fill: #27241D;
}

.detail-title__tablet {
  display: none;
}

/* Our departments */

.departments-container {
  margin-top: 12px;
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
  margin-bottom: 100px;
}

.departments-container.departments-container__table td {
  padding: 24px 8px 16px 0;
  border-top: none;
  border-bottom: 1px solid var(--gray-1);
}

.departments-container td:first-child {
  font-family: 'RobotoMedium', sans-serif;
}

.departments-container__table-mobile {
  display: none;
}

@media screen and (max-width: 1720px) {
  .page {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 1570px) {
  .address {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 1500px) {
  .address {
    min-width: 600px;
    max-width: 600px;
  }

  .address__maps-wrap .map-container.active {
    max-height: 672px;
  }
}

@media screen and (max-width: 1300px) {
  .address {
    min-width: 550px;
    max-width: 550px;
  }

  .address__maps-wrap .map-container.active {
    max-height: 703px;
  }
}

@media screen and (max-width: 1280px) {
  .page {
    max-width: 1160px;
  }

  .address {
    min-width: 500px;
    max-width: 500px;
  }
}

@media screen and (max-width: 1100px) {
  .address {
    min-width: 450px;
    max-width: 450px;
  }

  .address__maps-wrap .map-container.active {
    max-height: 787px;
  }
}

@media screen and (max-width: 1024px) {

  /* detail-section */
  .page {
    padding-left: 50px;
    padding-right: 50px;
  }

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

  h1,
  h2 {
    font-size: 1.25rem;
  }

  .breadcrumbs {
    margin-top: 16px;
    margin-bottom: 0;
  }

  .new-line {
    display: block;
  }

  /* Address Section onboarding */

  .address {
    min-width: 100%;
    max-width: 100%;
    padding-bottom: 16px;
    padding-right: 0;
  }

  .address-container {
    flex-wrap: wrap;
    margin-top: 24px;
    padding-bottom: 36px;
  }

  .address-container>* {
    width: 100%;
  }

  .address h4 {
    font-weight: 400;
    font-family: 'RobotoRegular', sans-serif;
    font-size: 0.875rem;
  }

  .address> :not(:last-child) h4 {
    margin-bottom: 4px;
  }

  .address>*:not(:last-child) {
    margin-bottom: 16px;
  }

  .address>*> :last-child {
    font-size: 1rem;
  }

  .social-network-container img {
    width: 35px;
    height: 35px;
  }

  .social-network-container>*:not(:last-child) {
    margin-right: 20px;
  }

  .address__maps-wrap {
    position: relative;
    z-index: 2;
    margin-top: 20px;
  }

  .address__maps-wrap .map-container.active {
    height: 400px;
  }

  .map-container {
    height: 400px;
  }

  /* detail-section */

  .detail-title {
    display: none;
  }

  .detail-title__tablet {
    display: block;
    order: -1;
    margin-top: 24px;
  }

  .detail-title__tablet::after {
    top: 36px;
  }

  .detail-container {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .detail-item {
    padding-top: 24px;
    padding-left: 20px;
    height: 120px;
  }

  .detail-item:first-child {
    border-bottom: none;
  }

  .detail-item:not(:first-child) {
    border-left: 1px solid var(--border-gray);
  }

  .detail-item:nth-child(2) {
    order: 4;
  }

  .detail-item__title {
    font-size: 1rem;
  }

  .detail-item__button {
    width: 100px;
    height: 48px;
  }

  .detail-item__button>svg {
    width: 18px;
    height: 16px;
  }

  /* departments */
  .departments-container {
    margin-top: 0;
    font-size: 1rem;
    margin-bottom: 60px;
  }

  .departments-container td:first-child {
    max-width: 292px;
  }

  .departments-container.table td {
    padding: 24px 8px 8px 0;
  }

  .departments-container td:last-child {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .page {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 576px) {
  .map-container {
    height: 300px;
  }

  .address__selectors-list {
    margin-bottom: 24px;
  }

  .address__selector {
    font-size: 14px;
  }

  .address__maps-wrap .map-container.active {
    height: 300px;
  }
}


@media screen and (max-width: 512px) {
  .page {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  /* address section */

  .address-section {
    margin-top: 24px;
  }

  .address {
    padding-bottom: 0;
  }

  .address-container {
    padding-bottom: 24px;
  }

  /* detail section */
  .detail-title {
    display: block;
  }

  .detail-title__tablet {
    display: none;
  }

  .detail-container {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .detail-item:nth-child(2) {
    order: unset;
    border-bottom: none;
  }

  .detail-item:nth-child(3) {
    border-right: 1px solid var(--border-gray);
  }

  /* Service items third element style */
  .detail-item:nth-child(3) {
    color: var(--red-elem-icon);
    background-image: linear-gradient(var(--red-elem-icon), var(--red-elem-icon));
  }

  .detail-item:nth-child(3):hover>.detail-item__title {
    color: var(--white);
  }

  .detail-item:nth-child(3)>.detail-item__button {
    background-color: var(--red-elem-icon);
  }

  .detail-item:nth-child(3)>.detail-item__button>svg>path {
    fill: white;
  }

  .detail-item:nth-child(3):hover {
    border: 1px solid var(--red-elem-icon);
  }

  /* Service items fourth element style */

  .detail-item:nth-child(4) {
    color: var(--bg-service-gray);
    background-image: linear-gradient(var(--bg-service-gray), var(--bg-service-gray));
  }

  .detail-item:nth-child(4):hover {
    border-color: var(--bg-service-gray);
  }

  .detail-item:nth-child(4):hover>.detail-item__title {
    color: var(--head);
  }

  .detail-item:nth-child(4)>.detail-item__button {
    background-color: var(--bg-service-gray);
  }

  .detail-item:nth-child(4)>.detail-item__button>svg>path {
    fill: #27241D;
  }

  /* --------------------------- */

  /* departments section */
  .departments-container {
    margin-top: 24px;
  }

  .departments-container__table {
    display: none;
  }

  .departments-container__table-mobile {
    display: block;
    text-align: left;
    list-style-type: none;
  }

  .departments-container__table-mobile li {
    border-bottom: 1px solid var(--gray-1);
    padding-right: 8px;
    padding-bottom: 12px;
  }

  .departments-container__table-mobile li:not(:last-child) {
    margin-bottom: 16px;
  }

  .departments-container__table-mobile h4 {
    color: var(--head);
    font-family: 'RobotoMedium', sans-serif;
  }

  .table-mobile__title {
    margin-bottom: 8px;
  }

  .table-mobile__description {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 370px) {
  .table-mobile__description {
    flex-direction: column;
    justify-content: flex-start;
  }
}
/* End */
/* /contacts/styles.css?169839455811730 */
