@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  color: #474a4d;
  font-family: "Inter", serif;
  scroll-behavior: smooth;
  box-sizing: content-box;
  outline: none;
  border: 0;
}

body {
  scroll-behavior: smooth;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #2b2f33;
  padding: 0 1px;
}
.header__container {
  color: #fff;
  width: 1200px;
  margin: 0 auto;
}
.header__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__navigation-logo {
  color: #fff;
}
.header__navigation-list {
  display: flex;
  gap: 20px;
}
.header__navigation-list a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding-bottom: 3px;
  font-size: 16px;
}
.header__navigation-list a:hover {
  color: #e7e7e7;
  border-bottom: solid 2px #0d677f;
}
.header__navigation-list-item {
  color: #fff;
  cursor: pointer;
}
.header__navigation-tel {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.header__navigation-tel-number {
  color: #fff;
  cursor: pointer;
}

.welcome {
  margin: 0 auto;
  margin-top: 10px;
  display: flex;
  width: 1200px;
}
.welcome__block {
  box-sizing: border-box;
  height: 510px;
  padding: 30px;
  border-radius: 15px 0 0 15px;
  width: 40%;
  background: #474a4d;
}
.welcome__block-header {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 10px;
}
.welcome__block-header-image {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background: url(./assets/elevator.png);
  background-size: cover;
  background-position: center;
  border: solid 3px #ffffff;
}
.welcome__block-header-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.welcome__block-header-name {
  font-size: 26px;
  color: #fff;
}
.welcome__block-header-position {
  color: #fff;
}
.welcome__block-text {
  margin-top: 30px;
}
.welcome__block-text-indent {
  font-style: italic;
  line-height: 130%;
  text-indent: 20px;
  color: #b4bcc5;
}
.welcome__image {
  display: block;
  border-radius: 0px 15px 15px 0px;
  width: 60%;
  height: 510px;
  background: url(./assets/elevator.png);
  background-size: cover;
  background-position: center;
}

.about {
  width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}
.about__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about__text-line {
  justify-content: space-between;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.about__text-line-block {
  width: 450px;
}
.about__text-line-block-title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
}
.about__text-line-block-list {
  list-style: inside;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about__text-line-block-list-item {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 10px;
}
.about__text-line-block-list-item::before {
  content: "•";
  font-size: 1.5em;
  color: #474a4d;
}

.portfolio {
  margin: 0 auto;
  width: 1200px;
  overflow: hidden;
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: relative;
}
.portfolio__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.portfolio__image-slider {
  position: relative;
}
.portfolio__image-line {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.portfolio__image-line-image {
  width: 192px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.portfolio__left-arrow {
  position: absolute;
  display: block;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
}
.portfolio__right-arrow {
  position: absolute;
  display: block;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
}
.portfolio:hover .portfolio__left-arrow {
  opacity: 1;
}
.portfolio:hover .portfolio__right-arrow {
  opacity: 1;
}

.feedback {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 1200px;
}
.feedback__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.feedback__comment-slider {
  position: relative;
}
.feedback__comment-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.feedback__comment-line-block {
  padding: 15px;
  width: 320px;
  height: 195px;
  background: #474a4d;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feedback__comment-line-block-header-name {
  color: #fff;
}
.feedback__comment-line-block-header-date {
  color: #8a8a8a;
}
.feedback__comment-line-block-text {
  color: #fff;
  overflow: hidden;
  overflow-y: auto;
}
.feedback__comment-line-block-text::-webkit-scrollbar {
  width: 5px;
  background: #474a4d;
}
.feedback__comment-line-block-text::-webkit-scrollbar-thumb {
  background: #424242;
  border-radius: 10px;
}
.feedback__left-arrow {
  position: absolute;
  display: block;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
}
.feedback__right-arrow {
  position: absolute;
  display: block;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
}
.feedback:hover .feedback__left-arrow {
  opacity: 1;
}
.feedback:hover .feedback__right-arrow {
  opacity: 1;
}

.form {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 1200px;
}
.form__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.form__container {
  display: flex;
  justify-content: space-between;
}
.form__text {
  width: 350px;
  font-size: 22px;
}
.form__form {
  display: flex;
  gap: 10px;
  margin-bottom: 100px;
}
.form__form-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__form-input {
  font-size: 16px;
  box-sizing: border-box;
  display: block;
  width: 350px;
  border-radius: 10px;
  border: solid 1px #a5a5a5;
  padding: 11px 10px;
}
.form__form-input-file {
  display: none;
}
.form__form-input-file-label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  width: 350px;
  border-radius: 10px;
  border: solid 1px #a5a5a5;
  text-align: center;
  cursor: pointer;
}
.form__form-textarea {
  font-size: 16px;
  box-sizing: border-box;
  display: block;
  width: 350px;
  height: 205px;
  border-radius: 10px;
  border: solid 1px #a5a5a5;
  margin-bottom: 10px;
  padding: 10px;
  resize: none;
}
.form__form-button {
  display: block;
  width: 350px;
  height: 44px;
  border-radius: 10px;
  background: #474a4d;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.footer {
  font-size: 14px;
  padding: 30px;
  background: #2b2f33;
}
.footer__container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer__title {
  color: #fff;
  align-self: center;
}
.footer__nav {
  gap: 20px;
}
.footer__nav a {
  color: #fff;
}
.footer__nav-subtitle {
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__nav-list-item {
  color: #fff;
  cursor: pointer;
}
.footer__contact {
  width: 280px;
}
.footer__contact-subtitle {
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__contact-list a {
  color: #bdbdbd;
}
.footer__contact-list a:hover {
  color: #fff;
}
.footer__contact-list-item {
  color: #fff;
}
.footer__contact-list-item-div {
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__contact-list-item-span {
  color: #bdbdbd;
}
.footer__contact-list-item-span-address {
  display: block;
  margin-top: 3px;
  color: #bdbdbd;
}
.footer__details {
  width: 280px;
}
.footer__details-subtitle {
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.footer__details-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__details-list-item {
  color: #fff;
}
.footer__details-list-item-span {
  color: #bdbdbd;
}

.login {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login__title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.login__form {
  width: 350px;
  margin: 0 auto;
}
.login__form-input {
  display: block;
  width: 350px;
  height: 40px;
  border-radius: 15px;
  border: solid 1px #e7e7e7;
  margin-bottom: 10px;
  padding-left: 10px;
}
.login__form-button {
  display: block;
  width: 350px;
  height: 40px;
  border-radius: 15px;
  border: none;
  font-weight: bold;
  font-size: 20px;
  background: #0d677f;
  color: #fff;
  cursor: pointer;
}

.admin {
  padding-bottom: 100px;
}
.admin__container {
  width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}
.admin__add-images-container {
  display: flex;
  justify-content: space-between;
}
.admin__add-images-title {
  margin-bottom: 20px;
}
.admin__add-images-form {
  width: 230px;
}
.admin__add-images-form-label {
  position: relative;
  cursor: pointer;
  display: block;
  width: 230px;
  height: 360px;
  border-radius: 15px;
  border: 1px solid #474a4d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin__add-images-form-image {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.admin__add-images-form-input {
  display: none;
}
.admin__add-images-form-icon {
  position: relative;
  z-index: 999;
  width: 55px;
  height: 55px;
  cursor: pointer;
}
.admin__add-images-form-button {
  margin-top: 20px;
  display: block;
  width: 100%;
  height: 40px;
  border-radius: 15px;
  border: none;
  font-weight: bold;
  font-size: 20px;
  background: #0d677f;
  color: #fff;
  cursor: pointer;
}
.admin__add-images-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 10px;
  overflow: scroll;
  overflow-x: hidden;
  width: 730px;
  height: 360px;
  background: #f2f2f2;
  border-radius: 15px;
}
.admin__add-images-list-item {
  margin-bottom: 10px;
}
.admin__add-images-list-item img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  width: 100%;
  display: block;
  width: 95px;
  height: 145px;
  margin-bottom: 5px;
}
.admin__add-images-list-item-delete {
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  background: #ff7575;
  color: #fff;
}
.admin__add-comments-container {
  display: flex;
  justify-content: space-between;
}
.admin__add-comments-title {
  margin-top: 30px;
  margin-bottom: 20px;
}
.admin__add-comments-form {
  width: 385px;
  height: 45px;
}
.admin__add-comments-form-input {
  display: block;
  width: 385px;
  border-radius: 15px;
  border: solid 1px #e7e7e7;
  margin-bottom: 10px;
  padding: 10px;
}
.admin__add-comments-form-textarea {
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 15px;
  border: solid 1px #e7e7e7;
  margin-bottom: 10px;
  padding: 10px;
  resize: none;
}
.admin__add-comments-form-button {
  margin-top: 20px;
  display: block;
  width: 100%;
  height: 40px;
  border-radius: 15px;
  border: none;
  font-weight: bold;
  font-size: 20px;
  background: #0d677f;
  color: #fff;
  cursor: pointer;
}
.admin__add-comments-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 10px;
  overflow: scroll;
  overflow-x: hidden;
  width: 730px;
  height: 360px;
  background: #f2f2f2;
  border-radius: 15px;
}
.admin__add-comments-list-item {
  padding: 15px;
  width: 320px;
  height: 195px;
  background: #474a4d;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.admin__add-comments-list-item-wrapper {
  margin-top: 10px;
}
.admin__add-comments-list-item-name {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-bottom: 3px;
}
.admin__add-comments-list-item-date {
  color: #8a8a8a;
  margin-bottom: 10px;
}
.admin__add-comments-list-item-text {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin__add-comments-list-item-delete {
  margin-top: 5px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  background: #ff7575;
  color: #fff;
}/*# sourceMappingURL=styles.css.map */