.rhead h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
}
.rhead .breadcrumbs {
  margin-bottom: 20px;
}
.rhead nav {
  position: relative;
  margin-bottom: 50px;
}
.rhead nav:after {
  content: '';
  position: absolute;
  left: -50vw;
  right: -50vw;
  bottom: 0;
  height: 1px;
  background: #e5e5e5;
}
.rhead nav:before{
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  bottom: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.rhead .nav {
  position: relative;
  display: flex;
  gap: 40px;
  padding-right: 80px;
  overflow: auto;
}
.rhead .nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.rhead .nav-item {
  flex-shrink: 0;
}
.rhead .nav-link {
  white-space: nowrap;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0 30px;
  transition: color .2s;
}
.rhead .nav-link.active,
.rhead .nav-link:hover {
  color: var(--c1);
}
.rhead .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: transparent;
  z-index: 1;
}
.rhead .nav-link.active:after {
  background: var(--c1);
}
@media (max-width: 1530px) {
  .rhead .nav {
    gap: 30px;
  }
}
@media (max-width: 1060px) {
  .rhead .breadcrumbs {
    margin-bottom: 10px;
  }
  .rhead h1{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .rhead nav {
    margin-bottom: 20px;
    margin-right: -15px;
    margin-left: -15px;
  }
  .rhead nav:before{
    display: none;
  }
  .rhead .nav {
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .rhead .nav-link {
    padding: 0 0 15px;
  }
}.pcontact {
  display: grid;
  grid-template-columns: calc(100% - 700px) 640px;
  gap: 60px;
}
.pcontact-map {
  border-radius: 8px;
  background: rgba(17, 20, 28, .4);
  height: 540px;
  overflow: hidden;
}
.pcontact-map [class$="-ground-pane"]{
  filter: grayscale(1) invert(1) contrast(0.8);
}
.pcontact-info {
  align-self: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.pcontact-info .link-phone {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  transition: opacity .2s;
}
.pcontact-info .link-phone:hover{
  opacity: .7;
}
.pcontact-info .s-h3{
  margin-bottom: 20px;
}
.pcontact-info .requisites {
  margin-top: 30px;
  line-height: 1.5;
}
.pcontact-info .social{
  margin-top: 30px;
}
@media (max-width: 1530px) {
  .pcontact {
    grid-template-columns: calc(100% - 500px) 440px;
  }
}
@media (max-width: 1060px) {
  .pcontact {
    grid-template-columns: 100%;
    gap: 25px;
  }
  .pcontact-map {
    height: 440px;
  }
  .pcontact-info .link-phone {
    font-size: 21px;
  }
  .pcontact-info .s-h3 {
    margin-bottom: 12px;
  }
  .pcontact-info .requisites {
    margin-top: 15px;
  }
  .pcontact-info .social {
    margin-top: 15px;
  }
}