/**********************************************************************/
.page-contacts {
  background-color: #181818;
}
.page-contacts .contacts__content {
  width: 1460px;
  padding: 80px 0 130px;
}
.page-contacts .container__col:first-child {
  flex-direction: row;
}

/**********************************************************************/
.page-contacts .contacts__map {
  position: relative;
  width: 450px;
  margin-right: 70px;
}
/*.page-contacts .contacts__map:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	background-color: rgba(0,0,0,0.6);
	pointer-events: none;
	z-index: 100;
}*/

/**********************************************************************/
.page-contacts .contacts__info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 520px);
}
.page-contacts .breadcrumbs {
  margin-bottom: 20px;
}
.page-contacts .contacts__back {
  margin-right: auto;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  transition: opacity 0.3s;
}
.page-contacts .contacts__back:hover {
  opacity: 0.6;
}
.page-contacts .contacts__h1 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #ffffff;
}
.page-contacts .contacts__title {
  width: 400px;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 45px;
  color: #ffffff;
}
.page-contacts .contacts__address {
  width: 400px;
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 43px;
  color: #ffffff;
}
.page-contacts .contacts__tel {
  margin-right: auto;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  transition: opacity 0.3s;
  cursor: pointer;
}
.page-contacts .contacts__tel:hover {
  opacity: 0.6;
}
.page-contacts .contacts__email {
  position: relative;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #ffffff;
  transition: opacity 0.3s;
  cursor: pointer;
}
.page-contacts .contacts__email:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background-color: #ffffff;
}
.page-contacts .contacts__email:hover {
  opacity: 0.6;
}
.page-contacts .contacts__descr {
  margin-top: 10px;
  margin-bottom: 30px;
  width: 300px;
  max-width: 100%;
  color: #ffffff;
}
.page-contacts .offices {
  margin-top: auto;
}
.page-contacts .offices__title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #f7f7f7;
}
.page-contacts .offices__items {
  display: flex;
  flex-direction: column;
}
.page-contacts .offices__item {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
  line-height: 33px;
  color: #ffffff;
  text-transform: uppercase;
}
.page-contacts .offices__item:last-child {
  margin-bottom: 0;
}
.page-contacts a.offices__item {
  margin-right: auto;
  transition: opacity 0.3s;
}
.page-contacts a.offices__item:hover {
  opacity: 0.6;
}

/**********************************************************************/
.page-contacts .contacts__socials {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-left: -50px;
}
.page-contacts .contacts__socials a {
  margin-right: auto;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: #ffffff;
  transition: opacity 0.3s;
}
.page-contacts .contacts__socials a:hover {
  opacity: 0.6;
}

/**********************************************************************/
.page-contacts .accordions {
  margin-top: 130px;
  padding-bottom: 0;
}
.page-contacts .accordions:after {
  top: 0;
  bottom: initial;
  width: 100%;
}

/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1200px) {
  /**********************************************************************/
  .page-contacts .contacts__title,
  .page-contacts .contacts__address {
    width: 100%;
  }

  /**********************************************************************/
  .page-contacts .contacts__socials {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  /**********************************************************************/
  .page-contacts .contacts__content {
    padding: 80px 0 130px;
  }
  .page-contacts .container__col {
    width: auto;
  }
  .page-contacts .container__col:first-child {
    width: 50%;
    flex-direction: column;
  }

  /**********************************************************************/
  .page-contacts .contacts__map {
    order: 2;
    width: 100%;
    margin-right: 0;
  }
  .page-contacts .contacts__map iframe {
    height: 380px;
  }

  /**********************************************************************/
  .page-contacts .contacts__info {
    order: 1;
    width: 100%;
    margin-top: 0;
    margin-bottom: 130px;
  }
  .page-contacts .contacts__descr {
    margin-bottom: 0;
  }
  .page-contacts .offices {
    display: none;
  }

  /**********************************************************************/
  .page-contacts .contacts__socials {
    margin-top: 0;
  }

  /**********************************************************************/
  .page-contacts .accordions {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 130px;
  }
}

@media screen and (max-width: 767px) {
  /**********************************************************************/
  .page-contacts .contacts__content {
    padding: 20px 0 60px;
  }
  .page-contacts .container__col {
    width: 100% !important;
  }
  .page-contacts .container__col:nth-child(1) {
    order: 2;
  }
  .page-contacts .container__col:nth-child(2) {
    order: 1;
  }

  /**********************************************************************/
  .page-contacts .contacts__map {
    display: none;
  }

  /**********************************************************************/
  .page-contacts .contacts__info {
    margin-bottom: 0;
  }
  .page-contacts .contacts__back {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 16px;
  }
  .page-contacts .contacts__h1 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .page-contacts .contacts__title {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 30px;
  }
  .page-contacts .contacts__address {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 21px;
  }
  .page-contacts .contacts__tel {
    font-size: 17px;
    line-height: 23px;
  }
  .page-contacts .contacts__email {
    font-weight: normal;
    font-size: 17px;
    line-height: 23px;
  }
  .page-contacts .contacts__email:after {
    height: 1px;
  }
  .page-contacts .contacts__descr {
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 21px;
  }
  .page-contacts .offices {
    display: block;
    margin-top: 0;
  }
  .page-contacts .offices__title {
    padding-top: 20px;
    border-top: 1px solid #ffffff;
    margin-bottom: 30px;
    font-size: 14px;
  }
  .page-contacts .offices__item {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 20px;
  }

  /**********************************************************************/
  .page-contacts .contacts__socials {
    order: 1;
    margin-bottom: 40px;
  }
  .page-contacts .contacts__socials a {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 20px;
  }

  /**********************************************************************/
  .page-contacts .accordions {
    padding: 60px 0 0;
  }
}
